/* =========================
   RESET
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    width: 100%;
    overflow-x: hidden;
    background: #fff;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* =========================
   LOGO
========================= */
.logo {
    width: 200px;
    height: 85px;
    background: url("../images/logo.png") no-repeat center;
    background-size: contain;
}

/* =========================
   MENU TOGGLE
========================= */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
    z-index: 10001;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(180deg);
}

/* =========================
   NAV MENU (DESKTOP)
========================= */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #c9a46b;
}

/* =========================
   DROPDOWN (DESKTOP)
========================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 12px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 22px;
    font-size: 13px;
    color: #666;
}

.dropdown-menu a:hover {
    background: #f6f1ea;
    color: #c9a46b;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {

    .navbar {
        padding: 20px 40px;
    }

    .logo {
        width: 170px;
        height: 70px;
    }

    .nav-menu {
        gap: 20px;
    }
}

/* =========================
   MOBILE (FINAL – WORKING)
========================= */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
        position: relative;
    }

    /* SHOW TOGGLE */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* SLIDE DOWN MENU */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        border-top: 1px solid #eee;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.45s ease, opacity 0.3s ease;
    }

    .nav-menu.active {
        max-height: 100vh;
        opacity: 1;
    }

    /* SINGLE LINE ITEMS */
    .nav-menu > a,
    .nav-menu .dropdown > a {
        display: flex;
        align-items: center;
        height: 52px;
        padding: 0 20px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
        width: 100%;
        white-space: nowrap;
    }

    /* DROPDOWN FIX */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: #fafafa;
        box-shadow: none;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        height: 48px;
        padding: 0 30px;
        border-bottom: 1px solid #eaeaea;
        white-space: nowrap;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .logo {
        width: 130px;
        height: 55px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    .nav-menu a {
        font-size: 13px;
    }
}





/* =========================
   HERO SLIDER
========================= */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1; /* 🔥 below navbar */
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: heroSlider 18s infinite;
}

/* BACKGROUNDS */
.slide1 {
    background-image: url('../images/slide1.jpg');
    animation-delay: 0s;
}
.slide2 {
    background-image: url('../images/slide2.jpg');
    animation-delay: 6s;
}
.slide3 {
    background-image: url('../images/slide3.jpg');
    animation-delay: 12s;
}

/* SLIDE FADE */
@keyframes heroSlider {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

.hero-line {
    width: 80px;
    height: 1px;
    background: #c9a46b;
    margin: 0 auto 30px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    letter-spacing: 3px;
    color: #111;
    margin-bottom: 20px;
}

.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #777;
    max-width: 600px;
    margin: 20px auto 40px;
    line-height: 1.8;
}

/* =========================
   HERO RESPONSIVE TEXT
========================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
    margin-top: 20px;
}

.btn {
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #c9a46b;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #c9a46b;
    color: #fff;
}

.btn.primary:hover {
    background: #b8955c;
}

.btn.outline {
    color: #c9a46b;
}

.btn.outline:hover {
    background: #c9a46b;
    color: #fff;
}



/* ================= ELEGANCE SECTION ================= */
.elegance-section {
    background-image: url('../images/elegance.png'); /* ✅ correct relative path */
    background-size: cover;
    background-position: bottom center; /* ✅ IMPORTANT */
    background-repeat: no-repeat;

    min-height: 420px; /* ✅ REQUIRED so image is visible */
    padding: 140px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= CONTENT ================= */
.elegance-content {
    max-width: 900px;
    text-align: center;
    animation: fadeUp 1.2s ease forwards;
}

/* GOLD LINE */
.elegance-line {
    display: block;
    width: 70px;
    height: 1px;
    background: #c9a46b;
    margin: 0 auto 25px;
}

/* TITLE */
.elegance-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    letter-spacing: 3px;
    color: #111;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.elegance-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .elegance-section {
        min-height: 320px;
        padding: 100px 15px;
    }

    .elegance-content h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .elegance-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .elegance-section {
        min-height: 260px;
    }

    .elegance-content h2 {
        font-size: 24px;
    }
}


/* =========================
   ICON SERVICES
========================= */
/* ================= ICON SERVICES ================= */
.icon-services {
    background: #f7f7f4;
    padding: 120px 60px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

/* ICON CARD */
.icon-box {
    max-width: 300px;
    margin: 0 auto;
}

/* ICON CIRCLE */
.icon-circle {
    width: 90px;
    height: 90px;
    border: 1px solid #c9a46b;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.icon-circle img {
    width: 40px;
    transition: 0.3s ease;
}

/* HOVER */
.icon-box:hover .icon-circle {
    background: #c9a46b;
}

.icon-box:hover img {
    filter: brightness(0) invert(1);
}

/* TITLE */
.icon-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #111;
}

/* DESCRIPTION */
.icon-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

/* ================= RESPONSIVE ================= */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
    .icon-services {
        grid-template-columns: repeat(2, 1fr);
        padding: 100px 40px;
        gap: 50px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .icon-services {
        padding: 80px 30px;
        gap: 40px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle img {
        width: 36px;
    }

    .icon-box h4 {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .icon-services {
        grid-template-columns: 1fr;
        padding: 70px 20px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle img {
        width: 32px;
    }

    .icon-box p {
        font-size: 13px;
    }
}


/* ================= ENJOY THE DIFFERENCE ================= */
.difference-section {
    padding: 140px 60px;
    background: #fff;
}

/* HEADER */
.difference-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.gold-line {
    display: block;
    width: 80px;
    height: 1px;
    background: #c9a46b;
    margin: 0 auto 30px;
}

.difference-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #111;
}

.difference-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #777;
}

/* GRID */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* CARD */
.difference-card img {
    width: 240px;
    max-width: 100%;
    margin-bottom: 40px;
}

.difference-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #111;
}

.difference-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .difference-section {
        padding: 100px 30px;
    }

    .difference-header h2 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .difference-card img {
        width: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .difference-header h2 {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .difference-card img {
        width: 180px;
    }
}


/* =========================
   DIVIDER
========================= */
/* ================= EXPERIENCE SECTION ================= */
.experience-section {
    width: 100%;
}

/* GRID */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* CARD */
.experience-card {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* BACKGROUND IMAGES */
.experience-card.d1 {
    background-image: url('../images/D1.jpg');
}
.experience-card.d2 {
    background-image: url('../images/D2.jpg');
}
.experience-card.d3 {
    background-image: url('../images/D3.jpg');
}

/* DARK OVERLAY */
.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    transition: background 0.3s ease;
}

/* CONTENT */
.overlay {
    position: relative;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.overlay .line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.7);
}

/* HOVER EFFECT */
.experience-card:hover::before {
    background: rgba(0,0,0,0.6);
}

/* ================= RESPONSIVE ================= */

/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {
    .experience-card {
        height: 380px;
    }

    .overlay h3 {
        font-size: 26px;
    }
}

/* Tablets (iPad) */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-card {
        height: 340px;
    }

    .overlay h3 {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        height: 300px;
    }

    .overlay h3 {
        font-size: 22px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .experience-card {
        height: 240px;
    }

    .overlay h3 {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .overlay .line {
        width: 45px;
    }
}



/* =========================
   BOOKING
========================= */
.booking {
    display: flex;
    padding: 80px;
    gap: 60px;
    align-items: center;
}

.booking-form {
    width: 50%;
}

.booking-form input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}

.booking-image img {
    width: 100%;
    max-width: 500px;
}

/* =========================
   TEAM
========================= */
.team {
    text-align: center;
    padding: 80px 0;
}

/* =========================
   CONTACT
========================= */
/* ================= CONTACT SECTION ================= */
/* ================= CONTACT SECTION ================= */
.contact-section {
    background-color: #faf9f5;
    background-image: url('../images/elegance.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    padding: 120px 20px;
    text-align: center;
    position: relative;
}


.contact-container {
    max-width: 920px;
    margin: auto;
    width: 100%;
}

/* ICON + LINE */
.contact-icon {
    display: block;
    color: #d6b67c;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-line {
    display: block;
    width: 90px;
    height: 1px;
    background: #d6b67c;
    margin: 0 auto 30px;
}

/* TITLE */
.contact-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: #111;
}

/* FORM */
.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    background: #fff;
    outline: none;
}

.contact-form textarea {
    min-height: 180px;
    resize: none;
    margin-bottom: 30px;
}

/* BUTTON */
.contact-form button {
    padding: 14px 42px;
    background: #d6b67c;
    border: 1px solid #d6b67c;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: transparent;
    color: #d6b67c;
}

/* ================= RESPONSIVE ================= */

/* Large screens (4K safe) */
@media (min-width: 1600px) {
    .contact-section {
        padding: 160px 20px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form button {
        width: 100%;
        max-width: 260px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .contact-section {
        padding: 80px 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
    }

    .contact-form button {
        width: 100%;
        padding: 14px;
    }
}


/* =========================
   REVIEWS
========================= */
/* ================= REVIEWS SECTION ================= */
.reviews-section {
    background: #fff;
    padding: 140px 20px;
    text-align: center;
}

.reviews-container {
    max-width: 800px;
    margin: auto;
}

/* QUOTE */
.reviews-quote {
    display: block;
    font-size: 60px;
    color: #d6b67c;
    margin-bottom: 10px;
}

/* LINE */
.reviews-line {
    display: block;
    width: 80px;
    height: 1px;
    background: #d6b67c;
    margin: 0 auto 30px;
}

/* TITLE */
.reviews-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* SLIDER */
.reviews-slider {
    position: relative;
    min-height: 220px;
}

.review {
    display: none;
}

.review.active {
    display: block;
    animation: fadeUp 0.8s ease;
}

/* TEXT */
.reviews-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #777;
    margin-bottom: 35px;
}

/* NAME */
.reviewer-name {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.reviewer-role {
    font-size: 13px;
    color: #aaa;
}

/* DOTS */
.review-dots {
    margin-top: 30px;
}

.review-dots .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #d6b67c;
    margin: 0 6px;
    cursor: pointer;
}

.review-dots .dot.active {
    background: #d6b67c;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .reviews-container h2 {
        font-size: 28px;
    }

    .reviews-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 90px 15px;
    }

    .reviews-container h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .reviews-text {
        font-size: 13px;
    }
}



/* =========================
   FOOTER
========================= */
/* ================= FOOTER ================= */
.spa-footer {
    background: #f4f5f1;
    padding: clamp(60px, 6vw, 90px) 20px 30px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 4vw, 50px);
}

/* ================= COLUMNS ================= */
.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #111;
}

/* ================= CONTACT FORM ================= */
.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.footer-form textarea {
    resize: none;
    height: 100px;
}

.footer-form button {
    background: #d6b67c;
    border: none;
    padding: 14px 32px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: #c5a463;
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border: 1px solid #d6b67c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6b67c;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #d6b67c;
    color: #fff;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* ================= RESPONSIVE ================= */

/* Large screens */
@media (min-width: 1400px) {
    .footer-container {
        max-width: 1350px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col h4 {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-form button {
        width: 100%;
    }
}

/* Small phones */
@media (max-width: 360px) {
    .footer-col p {
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }
}

/* ================= ABOUT SECTION ================= */

.about-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 20px;

    background-image: url("/assets/images/about.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK / LIGHT OVERLAY FOR READABILITY */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 249, 245, 0.88);
    z-index: 1;
}

/* CONTENT */
.about-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* DECOR LINE */
.about-line {
    display: block;
    width: 60px;
    height: 2px;
    background: #d6b67c;
    margin: 0 auto 20px;
}

/* TITLE */
.about-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

/* TEXT */
.about-container p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .about-container h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 90px 20px;
    }

    .about-container h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 70px 15px;
    }

    .about-container h2 {
        font-size: 24px;
    }
}

/* ================= SERVICES SECTION ================= */

.services-section {
    position: relative;
    background: url("../images/services-bg.png") center / cover no-repeat;
    background-attachment: fixed;
}

/* OPTIONAL OVERLAY */
.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
   background: rgba(255, 255, 255, 0.4);

    z-index: 0;
}

/* ================= CONTAINER ================= */

.services-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

/* ================= CATEGORY ================= */

.service-category {
    margin-bottom: 90px;
}

/* HEADER */
.service-category-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.service-category-header img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
    color: #111;
    position: relative;
    padding-bottom: 10px;
}

.service-category-header h3::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #c7a15a;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* ================= SERVICE ITEM ================= */

.service-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px dashed #ddd;
}

.service-item:last-child {
    border-bottom: none;
}

/* IMAGE */
.service-item-img img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

/* CONTENT */
.service-item-content h4,
.service-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.service-item-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* TIME & PRICE */
.service-item span {
    font-size: 13px;
    color: #777;
    white-space: nowrap;
}

.service-item strong {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
}

/* ================= GST NOTE ================= */

.gst-note {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* ================= SERVICES HERO ================= */

.services-hero {
    width: 100vw;
    height: 420px;
    background: url("../images/services.jpg") center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding-left: 120px;

    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.services-hero::before {
    display: none;
}

.services-hero-content {
    position: relative;
    top: -40px;
}

.services-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px;
}

.services-hero-content p {
    font-size: 15px;
    color: #888;
    max-width: 520px;
    margin: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 768px) {

    .services-hero {
        height: 320px;
        padding-left: 20px;
    }

    .services-hero-content h1 {
        font-size: 40px;
    }

    .service-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .service-category-header img {
        width: 100%;
        height: 220px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-item-img img {
        width: 100%;
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .services-container {
        padding: 60px 15px;
    }

    .service-category-header h3 {
        font-size: 22px;
    }

    .service-item-content h4,
    .service-item h4 {
        font-size: 15px;
    }

    .service-item-content p {
        font-size: 13px;
    }

    .gst-note {
        font-size: 13px;
    }
}



/* REMOVE GAP BETWEEN NAVBAR & HERO */
header,
.site-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ===== BOOK NOW POPUP OVERLAY ===== */
.book-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== POPUP BOX ===== */
.book-popup {
    background: #ffffff;
    width: 95%;
    max-width: 420px;
    border-radius: 18px;
    padding: 28px 26px 26px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    animation: popupFadeUp 0.35s ease;
    font-family: 'Montserrat', sans-serif;
}

/* ===== ANIMATION ===== */
@keyframes popupFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== SERVICE TITLE ===== */
#popupServiceName {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    text-align: center;
    margin-bottom: 18px;
    color: #2b2b2b;
}

/* ===== OPTIONS LIST ===== */
#popupOptions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

/* ===== RADIO OPTION ===== */
.popup-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
    color: #444;
}

.popup-radio input {
    accent-color: #c7a15a;
    cursor: pointer;
}

.popup-radio:hover {
    border-color: #c7a15a;
    background: rgba(199, 161, 90, 0.08);
}

/* ===== ACTION BUTTONS ===== */
.popup-actions {
    display: flex;
    gap: 14px;
}

/* COMMON BUTTON STYLE */
.popup-btn {
    flex: 1;
    height: 46px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* WHATSAPP BUTTON */
.popup-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.popup-btn.whatsapp:hover {
    background: #1ebe5d;
}

/* CALL BUTTON */
.popup-btn.call {
    background: #2b2b2b;
    color: #fff;
}

.popup-btn.call:hover {
    background: #000;
}

/* ===== CLOSE BUTTON ===== */
.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f3f3f3;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.popup-close:hover {
    background: #e0e0e0;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
    .book-popup {
        padding: 24px 20px;
    }

    #popupServiceName {
        font-size: 20px;
    }

    .popup-btn {
        font-size: 13px;
        height: 44px;
    }
}

/* ===== BOOK NOW BUTTON ===== */
.book-now-btn {
    margin-top: 14px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #c7a15a, #b08d47);
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(199, 161, 90, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

/* Hover Effect */
.book-now-btn:hover {
    background: linear-gradient(135deg, #b08d47, #9e7c3c);
    box-shadow: 0 10px 26px rgba(199, 161, 90, 0.45);
    transform: translateY(-1px);
}

/* Active (Click) */
.book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(199, 161, 90, 0.3);
}

/* Focus */
.book-now-btn:focus {
    outline: none;
}

/* ===== ALIGNMENT INSIDE SERVICE ITEM ===== */
.service-item .book-now-btn {
    margin-left: auto;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
    .book-now-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 0;
        border-radius: 26px;
    }
}

