/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f2efe9;
}

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* when visible */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.nav-container a.active {
    color: #c6a75e;
    /* gold color */
}


body {
    font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.75)),
        url("../image/bg_img.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* NAVBAR */
/* ================= NAVBAR FIXED ================= */
/* .navbar {
    position: absolute;
    width: 100%;
    top: 25px;
    display: flex;
    justify-content: center;
    z-index: 100;
} */

/* NAVBAR */

/* .navbar {
    position: absolute;
    top: 30px;
    width: 100%;

    display: flex;
    justify-content: center;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 20px 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-left,
.nav-right {
    display: flex;
    gap: 40px;
}



.nav-container a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-container a {
    position: relative;
    text-decoration: none;
    color: white;
}


.nav-container a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #c6a75e;

    transition: width 0.3s ease;
}


.nav-container a:hover::after {
    width: 100%;

}

.nav-container a:hover {
    color: #c6a75e;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 50%;
    padding: 18px;
    border: 4px solid #c6a75e;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    z-index: 100;
}

.logo img {
    width: 85px;
   
    display: block;
    transition: transform 0.4s ease;
}


.logo:hover img {
    transform: scale(1.1);
} */



/* ================= NAVBAR ================= */

.navbar {
    position: absolute;
    top: 35px;
    z-index: 999;

    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 20px 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT + RIGHT */
.nav-left,
.nav-right {
    display: flex;
    gap: 40px;
}

/* LINKS */
.nav-container a {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 15px;
}

/* underline */
.nav-container a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #c6a75e;
    transition: width 0.3s ease;
}

.nav-container a:hover::after {
    width: 100%;
}

.nav-container a:hover {
    color: #c6a75e;
}

.nav-container .logo a::after,
.nav-container .logo a:hover::after {
    display: none !important;
}

.nav-container .logo a:hover {
    color: inherit;
}

/* LOGO CENTER */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -12px;
    /* 
    background: rgba(255, 255, 255, 0.95); */
    border-radius: 50%;
    /* padding: 18px; */
    /* border: 4px solid #c6a75e; */
    /* 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); */
    z-index: 100;
}

.logo img {
    width: 85px;
    transition: 0.4s;
    border-radius: 50%;
}

.logo:hover img {
    transform: scale(1.1);
}

/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #b89447;
    margin: 4px 0;
    border-radius: 5px;
    transition: 0.3s;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);

    display: flex;
    flex-direction: column;
    padding: 80px 25px;
    gap: 25px;

    transition: 0.4s;
    z-index: 999;
}

.mobile-menu a {
    color: black;
    font-size: 18px;
    text-decoration: none;
}

.mobile-menu.active {
    right: 0;
}

/* ================= MOBILE (≤480px) ================= */
@media (max-width: 480px) {
    .navbar {
        position: absolute;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 1000;
    }

    .nav-container {
        width: 100%;
        border-radius: 0;
        padding: 5px 15px;
        background: rgba(255, 255, 255, 0.1);

        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .logo {
        position: static;
        transform: none;
        top: auto;
        left: 10px;
        padding: 2px;
        border-width: 1px;
        order: 1;
    }

    .logo img {
        width: 45px;
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
        z-index: 1001;
    }

    .mobile-menu {
        position: fixed;
        /* top: 70px; */

        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        padding: 100px 30px 25px;
        /* Give breathing room at the top to clear the X button */
        gap: 0;
        transition: 0.4s ease;
        z-index: 999;
    }



    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        color: #a67c2d;
        font-size: 18px;
        text-align: center;
        text-decoration: none;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        display: block;
    }

    .mobile-menu a:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Instantly hide the logo when the mobile menu is active */
    body:has(.mobile-menu.active) .logo {
        display: none;
    }
}

/* ================= HAMBURGER ANIMATION ================= */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


.hero-content h1 {
    font-size: 40px;
    font-weight: 400;

    margin-bottom: 20px;
    line-height: 1.8;
    text-transform: capitalize;
    text-align: center;

    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #c6a75e;

    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation:
        typing 4s steps(45) forwards,
        blink 0.7s 4;

}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ddd;

    opacity: 0.6;
    animation: fadeIn 2s ease forwards;

}

/* ================= DESKTOP (WITH ANIMATION) ================= */
/* .hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;

    white-space: nowrap;
    overflow: hidden;



    opacity: 0.6;
    animation: fadeIn 2s ease forwards;
    animation-delay: 3s;
} */

/* ================= TABLET ================= */
@media (max-width: 900px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .nav-container {
        width: 92%;
        padding: 8px 25px;
        gap: 10px;
    }

    .nav-left,
    .nav-right {
        gap: 10px;
    }

    .logo {
        top: -10px;
        padding: 4px;
        border-width: 2px;
    }

    .logo img {
        width: 50px;
    }
}

/* ================= MOBILE (NO ANIMATION) ================= */


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 24px;
        max-width: 240px;
        opacity: 0.6;
        animation: fadeIn 2s ease forwards;
    }

    .hero-content p {
        font-size: 12px;
        max-width: 240px;
    }

    /* .nav-container a {
        color: white;
        font-size: 8px;
        font-weight: 400;
        text-decoration: none;
        transition: 0.3s;
    } */
}

/* ================= DESKTOP ANIMATION ================= */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}


/* typing animation */
/* @keyframes typing {
    from {
        width: 0
    }

    to {
        width: 35ch
    }
}

@keyframes blink {
    0%, 100% {
        border-color: #c6a75e;
    }

    50% {
        border-color: transparent;
    }
} */



/* cursor blink */

/* subtitle fade */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero-content h1.done {
    border-right: none;
    /* REMOVE CURSOR */
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 40px;
    align-items: center;
}

.portfolio {
    color: #C6A75E;
    text-decoration: underline;
    font-size: 18px;
}

.book-btn {
    background: #C6A75E;
    color: black;
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    opacity: 0.6;
    animation: fadeIn 2s ease forwards;
}

.book-btn:hover {
    background: #b8954e;
}


/* SERVICES SECTION */
/* ===================== */
/* SERVICES SECTION */
/* ===================== */

.services-section {
    background: #f2efe9;
    padding: 40px 20px 80px;
    /* reduced gap */
    text-align: center;


}

.services-container {
    display: grid;

    max-width: 1200px;
    margin: auto;
}

.services-section h2 {
    font-size: 32px;
    color: #9c7b38;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.services-section .subtitle {
    color: #b79b63;
    font-size: 16px;
    margin-bottom: 50px;
}

/* ===== GRID FIXED ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Desktop */
    gap: 30px;
}

/* ===== CARD ===== */
.service-card {
    background: #f7f4ee;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    background: #efe6d5;
    color: #9c7b38;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 12px;
}

/* TEXT */
.service-card h3 {
    font-size: 18px;
    color: #9c7b38;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card a {
    font-size: 14px;
    color: #9c7b38;
    text-decoration: underline;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

/* TABLET */


/* MOBILE (PREMIUM LOOK 🔥) */


/* SIGNATURE WORK SECTION */

/* SECTION */
/* SIGNATURE WORK SECTION */
.signature-section {
    background: #f2efe9;
    padding: 40px 20px 80px;
    text-align: center;
}

.signature-container {
    max-width: 1100px;
    margin: auto;
}

.signature-section h2 {
    font-size: 32px;
    color: #9c7b38;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.signature-subtitle {
    color: #b79b63;
    font-size: 16px;
    margin-bottom: 60px;
}

/* GRID LAYOUT */
.signature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    text-align: left;
}

.overlay h3 {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

/* Hover Effect */
.work-card:hover img {
    transform: scale(1.08);
}

/* Different Heights */
.large {
    height: 280px;

}

.medium {
    height: 280px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .medium {
        margin-top: 0;
        /* remove stagger in mobile */
    }

    .work-card {
        height: 220px;
    }
}

/* RESPONSIVE */



/* ============================= */
/* PREMIUM TESTIMONIAL SECTION  */
/* ============================= */

.testimonial-section {
    background: #f3efe7;
    padding: 40px 20px 80px;
    text-align: center;
}

.testimonial-container {
    max-width: 1250px;
    margin: auto;
}

/* Heading */
.testimonial-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #a67c2d;
    margin-bottom: 18px;
}

.testimonial-subtitle {
    max-width: 720px;
    margin: 0 auto 90px;
    font-size: 16px;
    color: #b89447;
    line-height: 1.7;
}

/* Container to hide overflow for track */
.testimonial-carousel {
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
    padding: 30px 0;
    /* Ensures the tall card's quotes don't get clipped */
}

/* Wrapper */
.testimonial-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    width: max-content;
    transition: transform 0.5s ease-in-out;
}

/* Cards */
.testimonial-card {
    background: #f6f2ea;
    border: 1px solid #d7c5a0;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    transition: 0.4s ease;
}

/* Smaller Cards */
.testimonial-card.small {
    width: 340px;
}

/* Center Card */
.testimonial-card.large {
    width: 440px;
    height: 550px;
    transform: translateY(-35px);
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

/* Profile Image */
.profile-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 3px solid #d7c5a0;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Name */
.testimonial-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #a67c2d;
    margin-bottom: 5px;
}

/* Role */
.testimonial-card span {
    font-size: 14px;
    color: #b89447;
    display: block;
    margin-bottom: 18px;
}

/* Review Text */
.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Stars */
.stars {
    color: #a67c2d;
    font-size: 18px;
    letter-spacing: 4px;
}

/* Decorative Quotes */
.quote-top {
    position: absolute;
    top: -27px;
    right: -5px;
    font-size: 60px;
    color: #9c7b38;
    opacity: 0;
    transition: 0.4s ease;
}

.quote-bottom {
    position: absolute;
    color: #9c7b38;
    bottom: -45px;
    left: -5px;
    font-size: 60px;
    opacity: 0;
    transition: 0.4s ease;
}

.testimonial-card.large .quote-top,
.testimonial-card.large .quote-bottom {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {

    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-card.large {
        transform: none;
        height: auto;
    }

    .testimonial-card.small,
    .testimonial-card.large {
        width: 85vw;
        max-width: 340px;
    }

    .testimonial-wrapper {
        gap: 30px;
    }
}


/* ===================== */
/* PREMIUM FOOTER DESIGN */
/* ===================== */

.footer {
    background: #0c0c0c;
    color: #ddd;
    padding-top: 80px;
    font-family: 'Playfair Display', serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    padding: 0 20px 70px;
    align-items: flex-start;
}

/* Left Section */
.footer-left {
    flex: 1.5;
}

.footer-logo img {
    width: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.footer-left h2 {
    color: white;
    font-size: 26px;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    max-width: 280px;
}

/* Columns */
.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #c6a75e;
}

/* Contact Text */
.footer-column.contact p {
    font-size: 13px;
    margin-bottom: 18px;
    color: #aaa;
    line-height: 1.6;
}

.footer-column.contact strong {
    color: #c6a75e;
    font-weight: 500;
}

/* Divider */
.footer-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* Bottom Bar */
.footer-bottom {
    background: #c6a75e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    color: black;
    font-size: 14px;
}

/* Social Icons */
/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    width: 42px;
    height: 42px;
    background: black;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-icons a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    /* makes SVG white */
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #c6a75e;
    transform: translateY(-4px);
}

.social-icons a:hover img {
    filter: brightness(0);
    /* makes icon black on gold */
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        justify-content: center;
    }

    .footer-divider {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .services-grid {
        grid-row: 4;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

/* ================= FINAL MOBILE FIX (SAFE) ================= */

/* SMALL MOBILE (iPhone etc.) */
@media (max-width: 480px) {

    /* NAVBAR SIZE FIX */
    /* .nav-container {
        padding: 18px 14px;
       
        border-radius: 40px;
    }

    .nav-left,
    .nav-right {
        gap: 10px;
    }

    .nav-container a {
        font-size: 11px;
       
    }


    .logo {
        top: -10px;
        padding: 8px;
    }

    .logo img {
        width: 42px;
    } */

    /* HERO IMAGE FIX (NO CUT) */


    /* HERO TEXT FIX */





    .hero-content {
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 100%;
        /* full fit */
    }



}


@keyframes typingMobile {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@media (max-width: 700px) {

    /* 
    .hero-content h1 {
        font-size: 28px;
        font-weight: 300;
      
        margin-bottom: 20px;
        line-height: 1.8;
        text-transform: capitalize;

        overflow: hidden;
        white-space: nowrap;
        border-right: 3px solid #c6a75e;

        white-space: nowrap;
        overflow: hidden;
        width: 0;

    } */

    .hero-content {
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 100%;
        /* full fit */
    }


}

/* RESPONSIVE */
@media (max-width: 600px) {
    .logo {
        padding: 4px;
        top: -15px;

    }

    .logo img {
        width: 55px;
        border-radius: 50%;
    }

    .navbar {
        position: fixed;

        width: 100%;

        display: flex;
        justify-content: center;
        z-index: 100;

    }

    .nav-container {
        width: 100%;
        max-width: 1216px;
        /* border-radius: 60px; */
        padding: 8px 12px;
        padding-top: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }


    /* LEFT & RIGHT SIDE */
    .nav-left,
    .nav-right {
        display: flex;
        gap: 20px;
        align-items: center;
        white-space: nowrap;
        /* 🔥 Prevent line break */
    }

    .nav-container a {
        text-decoration: none;
        color: white;
        font-size: 12px;
        font-weight: 400;
        transition: 0.3s ease;
    }

    .nav-container a:hover {
        color: #c6a75e;
    }

    .hero-content h1 {
        font-size: 22px;
        line-height: 1.4;

        display: block;
        max-width: 280px;
        /* margin: auto; */
        text-align: center;

        /* 🔥 REMOVE ANIMATION */
        animation: none;
        border-right: none;

        /* 🔥 FIX TEXT */
        white-space: normal;
        width: 100%;
        overflow: visible;
    }

    .services-grid {

        grid-template-columns: repeat(1, 1fr);
        /* Desktop */
        gap: 30px;
    }

    .services-container {
        max-width: 400px;
        margin: auto;
    }

    .service-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 13px;
    }

    .signature-grid {
        grid-template-columns: 1fr;
    }

    .large,
    .medium {
        height: 220px;
    }


}