/* ===============================
   Google Font
================================ */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');*/

/* ===============================
   Global Styles
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.7;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    /*font-weight: 600;*/
    color: #bc9393;
}

/* ===============================
   Topbar
================================ */

.topbar {
    background-color: #bc9393;
    color: #fff;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 0;
     position: relative;
    z-index: 1100;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

.top-item {
    color: #fff;
    text-decoration: none;
    margin-right: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.topbar-right .top-item {
    margin-left: 20px;
    margin-right: 0;
}

.top-item i {
    margin-right: 6px;
    font-size: 13px;
}

/* Social Icons */
.social i {
    font-size: 14px;
}

/* Hover */
.top-item:hover {
    opacity: 0.85;
}
/* Extra spacing from screen edges */
.topbar .container {
    padding-left: 40px;
    padding-right: 40px;
}

/* If container-fluid is used anywhere */
.topbar .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}


/* Mobile Scroll Instead of Break */
@media (max-width: 768px) {
    .topbar-inner {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .topbar-inner::-webkit-scrollbar {
        display: none;
    }
}


/* NAVBAR BASE */
.navbar {
    width: 100%;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top:0;
    left: 0;
    z-index: 1000;
    /*margin-top: 20px;     */

    
}



/* DESKTOP MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 0px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 11px;
    transition: 0.3s;
    font-weight:normal;
    /* Semi-black color */
    /*color: rgba(0, 0, 0, 0.75);*/
}

.nav-links li a:hover {
    color: #dc768c;
}

.nav-links li {
    position: relative;
    padding: 0 18px;      
}

.nav-links li::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 18px;  /* equal spacing */
    color: rgba(255, 255, 255, 0.8);  /* white (adjust if needed) */
    font-size: 16px;
}

.topbar-left span.separator {   /* give your | spans a class="separator" */
      display: none !important;
  }

/* WHEN SCROLLED */
#navbar.scrolled {
     height: 72px; 
    background: #bc9393;   /* darker shade on scroll */
    /*padding: 10px 0;*/
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35); /* 👈 light white border */
    top:0;
    
}
/*.navbar.scrolled .nav-logo {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    pointer-events: none;*/
/*    width: 0;*/
}
.navbar.scrolled {
    justify-content: center;
}
.navbar.scrolled .nav-links {
    margin-left: auto;
    margin-right: auto;
}

.navbar.scrolled .hamburger {
    position: absolute;
    right: 25px;
}


/* HAMBURGER */
.hamburger {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 10001;  /* above topbar */
    margin-top:60px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10000;
}

.mobile-menu a {
    text-decoration: none;
    padding: 15px 0;
    text-align: center;
    font-size: 17px;
    color: #333;
    font-family: "Poppins", sans-serif;
    display: block;
}

.mobile-menu a:hover {
    background: #f7f7f7;
}

/* WHEN ACTIVE */
.mobile-menu.show {
    display: flex;
    animation: dropMenu 0.3s ease-out;
}

@keyframes dropMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* HAMBURGER ACTIVE STATE */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

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


/* ------------------- MEDIA QUERIES ------------------- */

/* Mobile & small screens */
@media (max-width: 900px) {
    .nav-links {
        display: none; /* hide desktop menu */
    }

    .hamburger {
        display: flex; /* show hamburger */
    }

    .nav-logo {
        width: 110px;
    }
}

/* 375px screens */
@media (max-width: 425px) {
    .nav-logo {
        width: 100px;
        margin-top:120px;
    }

    .navbar {
        padding: 10px 18px;

        background: transparent !important;   /* No color */
        backdrop-filter: none !important;     /* Remove blur */
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;          /* Remove any shadow */
    
    }
    
   
}

/* 320px screens */
@media (max-width: 320px) {
    .nav-logo {
        width: 90px;
        margin-top:120px;
    }

    .navbar {
        padding: 8px 15px;
        
    }

    .hamburger {
        width: 26px;
        height: 20px;
    }
    
}

/* HERO SECTION -------------------------------- */
/*.hero {*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    background: url('../img/herobanner.webp')*/
/*        center center/cover no-repeat;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/
 .hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
/*.hero-home {*/
/*    height: 100vh;*/
/*    background-image: url('../img/herobanner.webp')center center/cover no-repeat;*/
/*}*/
.hero-inner {
    height: 289px;   /* adjust if needed */
    background-image: url('../img/about-hero.jpg');
}




/* Glass Diamond */
.glass-diamond {
    position: absolute;
    width: 55%;
    padding: 40px 35px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    animation: float 5s ease-in-out infinite;
    z-index: 5;  /* FIX: makes text + diamond visible */
}

.inner-text {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 20; /* ensures text visible even if polygon hidden */
}

.inner-text h1 {
    font-weight: normal;
    font-size: 60px;
    font-family:'playfair Display';
    line-height: 1.2;
    color: #fff;
}

.inner-text p {
    font-size: 28px;
    margin-top: 10px;
    color: #fff;
    font-family:'Montserrat Display';
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    max-width: 350px;   /* keeps buttons within polygon */
    margin-left: auto;
    margin-right: auto;

}

.book-btn {
    padding: 15px 25px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-family:'playfair Display';
    text-decoration: none;
    width: auto;      /* important: prevents stretching */
    white-space: nowrap;
}

/* Tablets & phones under 768px */
@media (max-width: 768px) {

.hero {
        height: 90vh;
        background-size: cover !important;
        background-position: top center !important;
    }
    .hero-inner {
        height: 150px;
    }
    .glass-diamond {
        width: 480px;
        height: 280px; 
        padding: 0; 
        top: 50%; 
        right: 25%; 
        
    }

    .inner-text {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        border-radius: 12px;
    }

    .inner-text h1 {
        font-size: 26px;
    }

    .inner-text p {
        font-size: 14px;
    }

    .btn-group {
        flex-direction: column;
    }

    .book-btn {
        width: 70%;
        font-size: 14px;
        padding: 10px 0;
    }
}

/* --------------------- 375px and below --------------------- */
@media (max-width: 375px) {

    .glass-diamond {
        width: 120px !important;
         height: auto; 
        padding: 15px 12px;
        
        top: 25%;
        right: 25%;
        transform: translate(-50%, -50%);
       
    }

    .inner-text h1 {
        font-size: 18px !important;
        line-height: 1.3;
    }

    .inner-text p {
        font-size: 12px !important;
    }

    .btn-group {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .book-btn {
        padding: 6px 18px;
        border: 1px solid #fff;
        border-radius: 20px;
        color: #fff;
        font-size: 11px;
        text-decoration: none;
        width: auto;
        white-space: nowrap;
    }
}

 

/* --------------------- Phones 425px --------------------- */
@media (max-width: 425px) {

    .glass-diamond {
        width: 280px !important;
        padding: 18px 15px;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .inner-text h1 {
        font-size: 19px !important;
    }

    .inner-text p {
        font-size: 13px !important;
    }

    .book-btn {
        padding: 6px 18px;
        border: 1px solid #fff;
        border-radius: 20px;
        color: #fff;
        font-size: 11px;
        text-decoration: none;
        width: auto;
        white-space: nowrap;
    }
}


/* SIMPLE FEATURES SECTION */
.simple-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: nowrap;
    
}

.simple-card {
    text-align: center;
    flex: 1;
}

.simple-card img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.simple-card p {
    font-size: 15px;
    color: #333;
    margin-top: 5px;
    font-weight: 400;
     font-family: 'Montserrat', sans-serif;
}


/* ------------ MOBILE VIEW (320px & 375px) ------------ */
@media (max-width: 480px) {

    .simple-features {
        flex-direction: column;
        gap: 25px;
    }

    .simple-card {
        width: 100%;
    }

    .simple-card img {
        width: 70px;
    }

    .simple-card p {
        font-size: 15px;
    }
}

.about-section {
        width: 100%;
        background: url("../img/background-2.png") center/cover no-repeat;
        padding: 50px 5%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        min-height: 300px;
        background-position: left center; /* KEY FIX */
    }

    /* Dark transparent overlay for better readability */
    .about-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(1px);
    }

    .about-content {
        position: relative;
        width: 55%;
        max-width: 600px;
        /*margin-right: 30px; */
    }

    .about-title {
        font-family: "Playfair Display", sans-serif;
        font-size: 40px;
        color: #BC9393;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about-text {
        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        line-height: 1.7;
        color: #4c4c4c;
        margin-bottom: 25px;
    }

    .about-btn {
        background: #D3B4AB;
        color: #ffffff;
        border: none;
        padding: 15px 25px;
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        border-radius: 15px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .about-section {
            justify-content: center;
            padding: 60px 5%;
        }

        .about-content {
            width: 100%;
        }

        .about-title {
            font-size: 30px;
        }
    }

 /*enhance section*/
.enhance-section {
        width: 100%;
        padding: 70px 5%;
        background: url("../img/background1.webp") center/cover no-repeat;
        position: relative;
    }

    /* white overlay for readability */
    .enhance-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.5);
    }

    .enhance-inner {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .enhance-title {
        font-family: "Playfair Display", serif;
        font-size: 40px;
        color: #BC9393;
        margin-bottom: 40px;
        font-weight: 400;
    }

    .enhance-cards {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .enhance-card {
        width: 18%;
        /*background: rgba(255, 255, 255, 0.6);*/
        backdrop-filter: blur(3px);
        padding: 25px 10px;
        border-radius: 6px;
        text-align: center;
        font-family: "Montserrat", sans-serif;
    }

    .enhance-card img {
        width: 70px;
        margin-bottom: 12px;
    }

    .enhance-card p {
        font-size: 17px;
        color: #181719;
        margin: 0;
        font-weight: 400;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .enhance-card {
            width: 45%;
        }

        .enhance-title {
            font-size: 30px;
        }
    }

    @media (max-width: 480px) {
        .enhance-card {
            width: 100%;
        }
    }

/* ===============================
   WHAT WE DO SECTION
================================ */
.what-we-do {
    padding: 100px 0;
    background: #faf7f6;
}

.wwd-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.wwd-left {
    flex: 1;
}

.wwd-left h2 {
    font-size: 40px;
    color: #bc9393;
    margin-bottom: 30px;
    font-weight: 400;
}

.wwd-left h3 {
    font-size: 22px;
    color: #bc9393;
    margin-bottom: 10px;
    margin-top: 25px;
     font-family: 'Montserrat', sans-serif;
}

.wwd-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
     font-family: 'Montserrat', sans-serif;
}

/* BUTTON */
.read-more-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 25px;
    background: #bc9393;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.read-more-btn:hover {
    background: #a97e7e;
}

/* RIGHT IMAGE */
.wwd-right {
    flex: 1;
}

.img-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .wwd-container {
        flex-direction: column;
        gap: 40px;
    }

    .wwd-left h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .what-we-do {
        padding: 70px 0;
    }

    .wwd-left h2 {
        font-size: 30px;
    }
}

/* ===============================
   PARTNERS SECTION
================================ */
.partners-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

/* Carousel */
.carousel {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* Logo box */
.logo-box {
    min-width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: none;        
    opacity: 1;          /* ❌ no fade */
    transition: none;    /* ❌ no hover animation */
}



/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .carousel-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .logo-box {
        min-width: 140px;
        height: 80px;
    }

    .partners-title {
        font-size: 30px;
    }
}

/* ===============================
   STATS SECTION
================================ */
/*.stats-section {*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
    /*padding: 90px 0;*/
/*    position: relative;*/
/*}*/
/*.stats-container {*/
/*    max-width: 1200px;*/
/*    margin: auto;*/
/*    padding: 0 30px;*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 30px;*/
/*    text-align: center;*/
/*    padding: 90px 0;*/
/*}*/
.stats-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* FULL BLACK OVERLAY */
.stats-overlay {
    position: relative;
    inset: 0;               /* covers full width & height */
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

/* CONTENT ABOVE OVERLAY */
.stats-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    padding: 90px 0;
}

/* STAT BOX */
.stat-box {
    color: #fff;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 70px 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 13px;
    }
}


/* ABOUT INDAH SPA SECTION */
.about-indah {
    padding: 80px 0;
    background: #fff;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.about-image img {
    /*width: 100%;*/
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-left:20px;
    height:646px;
    width:667px;
}

/* CONTENT */
.about-content {
    max-width: 580px;
}

.about-title {
    color: #bf99a3;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    /*text-transform: uppercase;*/
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}


.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #a3a3a3;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }
}

/* TREATMENTS SECTION */
.treatments-section {
    padding: 90px 0;
    background: #fff;
}

/* HEADING */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #bc9393;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 500;
    color: #777;
}

/* GRID */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.treatment-card {
    text-align: center;
}

.treatment-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.treatment-card:hover img {
    transform: translateY(-6px);
}

.treatment-card h3 {
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .treatment-card img {
        height: 260px;
    }
}

/* FULL BACKGROUND SECTION */
.foco-bg-section {
    width: 100%;
    min-height: 620px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* LIGHT OVERLAY (for readability) */
/*.foco-overlay {*/
/*    width: 100%;*/
/*    background: linear-gradient(*/
/*        to right,*/
/*        rgba(255,255,255,0.95) 45%,*/
/*        rgba(255,255,255,0.6) 60%,*/
/*        rgba(255,255,255,0.1) 100%*/
/*    );*/
/*    padding: 100px 0;*/
/*}*/

/* CONTENT */
.foco-content {
    max-width: 620px;
    padding-left: 8%;
}

.foco-content h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #000;
}

.foco-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
}
@media (max-width: 768px) {
    .foco-overlay {
        background: rgba(255,255,255,0.95);
        padding: 60px 20px;
    }

    .foco-content {
        padding-left: 0;
        max-width: 100%;
    }

    .foco-bg-section {
        min-height: auto;
    }
}

/* SECTION */
.collab-section {
    width: 100%;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* OVERLAY */
.collab-overlay {
    background: rgba(0,0,0,0.45);
    padding: 90px 0;
}

/* GRID */
.collab-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */
.collab-left h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 20px;
}

.collab-left p {
    color: #f1f1f1;
    font-size: 16px;
    line-height: 1.8;
    max-width: 480px;
}

/* RIGHT FORM */
.collab-right h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 22px;
}

.collab-right form label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.collab-right form input,
.collab-right form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: none;
    outline: none;
    font-size: 14px;
}

.collab-right button {
    background: #cfd8dc;
    color: #000;
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 25px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .collab-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.locations-section {
    padding: 90px 8%;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #111;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.location-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease;
}

.location-card:hover {
    transform: translateY(-8px);
}

/* SLIDER */
.slider {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 6px;
}

.slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider img.active {
    opacity: 1;
}

/* DOTS */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 14px 0;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
}

.slider-dots span.active {
    background: #000;
}

/* TEXT */
.location-card h3 {
    font-size: 22px;
    margin: 15px 0 10px;
}

.location-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .slider {
        height: 220px;
    }
}

.contact-section {
    position: relative;
    padding: 100px 8%;
    background: url('../img/contact-bg.jpg') center/cover no-repeat;
    color: #fff;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* FORM */
.contact-form h2,
.contact-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding: 14px 5px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    background: transparent;
    border: 1px solid #fff;
    padding: 12px 40px;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.contact-form button:hover {
    background: #fff;
    color: #000;
}

/* INFO */
.contact-info p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-block h4 {
    margin-bottom: 10px;
    font-weight: 500;
}

.info-block p {
    margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-section {
        padding: 80px 6%;
    }
}


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

.zigzag-container {
    max-width: 1200px;
    margin: auto;
}

/* EACH ROW */
.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

/* REVERSE ROW */
.zigzag-row.reverse {
    grid-template-columns: 1fr 1fr;
}

/* IMAGE */
.zigzag-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* CONTENT BOX */
/*.zigzag-box {*/
/*    border: 1.5px solid #d8b47a;*/
/*    padding: 50px;*/
/*    text-align: center;*/
/*    background: #fff;*/
/*}*/

.zigzag-content {
    border: 1.5px solid #bc9393;
    padding: 40px;
    background: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */

    text-align: center;
    min-height: 320px;         /* IMPORTANT – matches image height */
    box-sizing: border-box;
}


.zigzag-icon {
    width: 56px;
    margin-bottom: 20px;
}

.zigzag-box h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    color:#0a0a0a;
}

.zigzag-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
}

/* MOBILE */
/*@media (max-width: 725px) {*/
/*    .zigzag-row {*/
/*        grid-template-columns: 1fr;*/
/*        gap: 30px;*/
/*    }*/
/*}*/





@media (max-width: 725px) {

    .zigzag-section {
        padding: 50px 0;
    }

    .zigzag-row {
        display: flex;              /* switch grid → flex */
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
    }

    /* IMPORTANT: neutralize reverse on mobile */
    .zigzag-row.reverse {
        flex-direction: column;
    }

    /* Image */
    .zigzag-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 6px;
    }

    /* Content box */
    .zigzag-content {
        padding: 22px 18px;
        min-height: auto;           /* removes forced height */
        border-width: 1.2px;
        text-align: center;
    }

    .zigzag-box h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .zigzag-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .zigzag-icon {
        width: 42px;
        margin-bottom: 10px;
    }
}

.branches-section {
    padding: 90px 8%;
    background: #fff;
}

.section-title {
    text-align: left;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 500;
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* BRANCH BOX */
.branch-box h3 {
    font-size: 20px;
    font-weight: 500;
    color: #bc9393;
    margin-bottom: 20px;
}

/* MAP */
.map-box {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* MOBILE */
@media (max-width: 992px) {
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .map-box {
        height: 320px;
    }
}

/* CTA SECTION */
.cta-section {
    background-image: url("../img/arrangement-with-spa-stones-lit-candles_23-2148268432.webp"); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    padding: 140px 20px;
    position: relative;
}

/* DARK OVERLAY */
.cta-overlay {
    background: rgba(0, 0, 0, 0.65);
    padding: 140px 20px;
    position: relative;
    inset: 0;
    /*background: rgba(0,0,0,0.5);*/
    /*z-index: 1;*/
}

/* CONTENT */
.cta-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
      font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 36px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* PRIMARY */
.cta-btn.primary {
    background: #bc9393;
    color: #fff;
}

.cta-btn.primary:hover {
    background: #a97979;
}

/* OUTLINE */
.cta-btn.outline {
    border: 1.5px solid #fff;
    color: #fff;
}

.cta-btn.outline:hover {
    background: #fff;
    color: #000;
}

/* MOBILE FIX (disable parallax for iOS) */
@media (max-width: 768px) {
    .cta-section {
        background-attachment: scroll;
        padding: 100px 15px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* ACADEMY SECTION */
.academy-section {
    padding: 100px 0;
    background: #fff;
}

.academy-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

/* LEFT CONTENT */
.academy-content {
    text-align: center;
}

.academy-logo {
    width: 80px;
    margin-bottom: 25px;
}

.academy-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.academy-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

.academy-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #d8b4aa;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.academy-btn:hover {
    background: #bc9393;
}

/* RIGHT IMAGE */
.academy-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 35px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .academy-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .academy-image img {
        height: 300px;
    }
}



 .loc-container {
        max-width: 1200px;
        margin: auto;
        padding: 40px 20px;
    }

    /* Top faded heading */
    .page-label {
        font-size: 32px;
        color: #cfcfcf;
        font-weight: 700;
        margin-bottom: 20px;
    }

    /* Main heading */
    .main-title {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .divider {
        width: 60px;
        height: 3px;
        background: #d1b1a2;
        margin-bottom: 40px;
    }

    /* Image Grid */
    .image-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }

    .image-grid img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 4px;
    }

    /* Section title */
    .section-title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    /* Paragraph */
    .content-text {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        max-width: 900px;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .main-title {
            font-size: 32px;
        }

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

        .image-grid img {
            height: 220px;
        }
    }
    
    .section-container {
        max-width: 1200px;
        margin: auto;
        padding: 60px 20px;
    }

    /* CONTACT CARDS */
    .contact-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 70px;
    }

    .contact-card {
        background: #fff;
        border-radius: 12px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        border-radius: 50%;
        background: #c8a2a0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
    }

    .contact-card h3 {
        margin: 10px 0 8px;
        font-size: 22px;
        color: #b68a86;
        font-weight: 600;
    }

    .contact-card p {
        margin: 0;
        font-size: 16px;
        color: #888;
        line-height: 1.6;
    }
.contact-card p a {
    color: inherit;      /* keeps text color same as p */
    text-decoration: none; /* removes underline */
}

    /* FAQ */
    .faq-title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .faq-answer {
        font-size: 16px;
        color: #444;
        line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .contact-cards {
            grid-template-columns: 1fr;
        }
    }
    
  
    .map-section {
        max-width: 1200px;
        margin: auto;
        padding: 40px 20px 80px;
        
    }

    .map-title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
    }

    .map-wrapper {
        width: 80%;
        height: 420px;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding-left: 20px;  /* space on left */
    padding-right: 20px; /* space on right */
    margin: 0 auto;   
    }

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
    @media (max-width: 768px) {
    .map-wrapper {
        padding-left: 10px;
        padding-right: 10px;
        height:300px;
    }
}













/* ===============================
   Footer
================================ */

.indah-footer {
    background: url("../img/footer-back.jpg") center/cover no-repeat;
    padding-top: 70px;
    padding-bottom: 0; 
}

/* Inner spacing */
.indah-footer .container {
    padding-left: 60px;
    padding-right: 60px;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 30px; /* reduced gap */
}

/* Headings */
.footer-col h4 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #777272;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    font-size: 17px;
    /*color: #555;*/
    margin-bottom: 10px;
    color: #777272;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul li a {
    
    text-decoration: none;
    color: #777272;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul li a:hover {
    color: #000;
}

/* Text */
.footer-col p {
    font-size: 16px;
    color: #777272;
    line-height: 1.6;
    margin-bottom: 13px;
}

/* Contact */
.footer-contact i {
    margin-right: 8px;
    color: #444;
}

/* Social Icons */
.footer-social {
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 8px;
    font-size: 17px;
    color: #fff;
    text-decoration:none;
}

.footer-social a:nth-child(1) { background: #3b5998; }
.footer-social a:nth-child(2) { background: #000; }
.footer-social a:nth-child(3) { background: #25D366; }
.footer-social a:nth-child(4) { background: #0077b5; }

/* Responsive */
@media (max-width: 992px) {
    .indah-footer .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}





/* ===============================
   Footer Bottom Bar
================================ */
.footer-bottom {
    background: #bc9393; /* soft dusty rose */
    padding: 18px 0;
    font-size: 13px;
    margin: 0;     
    
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
}

.footer-copy {
    color: #fff;
    font-weight: 400;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-links {
        margin-top: 10px;
    }

    .footer-links a {
        margin-left: 15px;
        margin-right: 15px;
    }
}

