/* =========================================================
   ZENAVICA WELLNESS
   PREMIUM WELLNESS MARKETPLACE CSS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f3ece0;
    color:#243421;
    overflow-x:hidden;
    line-height:1.6;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================================================
   HEADER
========================================================= */

header{
    width:100%;
    padding:20px 0;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(65,88,52,0.08);
    box-shadow:0 20px 60px rgba(56,70,49,0.08);
    transition:padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

header.header-shrink{
    padding:10px 0;
    background:rgba(255,255,255,0.98);
    box-shadow:0 18px 42px rgba(0,0,0,0.08);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

header.header-shrink .logo{
    padding:0;
}

header.header-shrink .logo img{
    height:52px;
    max-height:52px;
}

header.header-shrink nav ul li a{
    font-size:14px;
}

header.header-shrink .btn{
    padding:12px 24px;
}

nav{
    flex:1;
}

nav ul{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:32px;
}

nav ul li a{
    color:#243421;
    font-size:15px;
    font-weight:600;
    letter-spacing:0.03em;
    transition:0.25s ease;
    position:relative;
}

nav ul li a:hover{
    color:#7b8a53;
}

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#7b8a53;
    transition:0.25s ease;
}

nav ul li a:hover::after{
    width:100%;
}

header .btn{
    min-width:210px;
    padding:14px 28px;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    max-height:70px;
    width:auto;
    object-fit:contain;
    display:block;
}

/* NAVIGATION */

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
}

nav ul li a{
    color:#243421;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

nav ul li a:hover{
    color:#7b8a53;
}

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#7b8a53;
    transition:0.3s;
}

nav ul li a:hover::after{
    width:100%;
}

/* MOBILE MENU */

.mobile-menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#243421;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
    padding:14px 30px;
    border-radius:50px;
    background:linear-gradient(135deg, #6a7a4f 0%, #c4b585 100%);
    color:#fff;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    white-space:nowrap;
    box-shadow:0 14px 30px rgba(92,104,72,0.18);
}

.btn:hover{
    background:linear-gradient(135deg, #c4b585 0%, #6a7a4f 100%);
    transform:translateY(-2px);
}

.outline-btn{
    border:1px solid #fff;
    padding:14px 30px;
    border-radius:50px;
    color:#fff;
    transition:0.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:500;
}

.outline-btn:hover{
    background:#fff;
    color:#243421;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
    color:#fff;
    overflow:hidden;
}

.hero-slideshow{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease;
    transform:translateZ(0);
}

.hero-slide.active{
    opacity:1;
}

.hero-slide:nth-child(1),
.hero-slide:nth-child(2),
.hero-slide:nth-child(3),
.hero-slide:nth-child(4){
    z-index:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(rgba(26, 44, 26, 0.35),rgba(26, 44, 26, 0.35));
}

.hero-dots{
    position:absolute;
    left:50%;
    bottom:40px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:3;
}

.hero-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.55);
    cursor:pointer;
    transition:transform 0.2s ease, background 0.2s ease;
}

.hero-dot.active,
.hero-dot:hover{
    background:rgba(255,255,255,0.95);
    transform:scale(1.15);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
}

.subheading{
    letter-spacing:3px;
    text-transform:uppercase;
    color:#7b8a53;
    margin-bottom:15px;
    font-size:14px;
    font-weight:600;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#f3f3f3;
}

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================================================
   COMMON SECTION
========================================================= */

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:52px;
    font-family:'Cormorant Garamond',serif;
    color:#1f3528;
    margin-bottom:15px;
    font-weight:700;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:16px;
}

/* =========================================================
   SERVICES
========================================================= */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    background:linear-gradient(180deg, rgba(251,247,236,0.98), rgba(242,232,212,0.96));
    border-radius:28px;
    overflow:hidden;
    transition:transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow:0 25px 45px rgba(71,84,58,0.08);
    border:1px solid rgba(123,141,81,0.14);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 85px rgba(31,53,40,0.15);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.service-card h3{
    margin:20px 24px 10px;
    font-size:26px;
    font-family:'Cormorant Garamond',serif;
    color:#1f3528;
}

.service-card p{
    color:#5b5b5b;
    line-height:1.9;
    font-size:15px;
    margin:0 24px 24px;
}

.service-card .service-label{
    display:inline-block;
    margin:0 24px 20px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(184,150,82,0.1);
    color:#5f5f40;
    font-size:13px;
    font-weight:600;
}

.why-choose{
    background:linear-gradient(180deg, rgba(243,236,224,0.95), rgba(255,250,244,1));
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.choose-card{
    background:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow:0 25px 50px rgba(94,107,76,0.08);
    border:1px solid rgba(123,141,81,0.14);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 70px rgba(94,107,76,0.14);
}

.choose-icon{
    width:60px;
    height:60px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:#eef3e5;
    color:#425833;
    font-size:28px;
    margin-bottom:18px;
}

.choose-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#243421;
    line-height:1.2;
}

.choose-card p{
    color:#5e5e5e;
    line-height:1.8;
    font-size:15px;
}

/* =========================================================
   ABOUT
========================================================= */

.about{
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:60px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
}

.about-content h2{
    font-size:55px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
    line-height:1.2;
}

.about-content p{
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
    font-size:15px;
}

/* =========================================================
   PARTNER SECTION
========================================================= */

.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.partner-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s;
}

.partner-card:hover{
    transform:translateY(-10px);
}

.partner-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.partner-content{
    padding:25px;
}

.partner-content h3{
    font-size:24px;
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;
}

.partner-content p{
    color:#666;
    font-size:14px;
    margin-bottom:15px;
}

/* =========================================================
   BOOKING FORM
========================================================= */

.booking-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    max-width:700px;
    margin:auto;
}

.form-group{
    margin-bottom:20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    outline:none;
    transition:0.3s;
    background:#fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    border-color:#7b8a53;
    box-shadow:0 0 0 3px rgba(123,141,81,0.12);
}

.booking-form textarea{
    min-height:120px;
    resize:none;
}

.partner-register-section{
    background:linear-gradient(180deg, rgba(248,247,243,1) 0%, rgba(255,255,255,0.96) 38%, rgba(244,237,225,1) 100%);
    padding:130px 0 80px;
}

.partner-register-section .page-header{
    max-width:760px;
    margin:0 auto 45px;
}

.partner-register-section .page-header .eyebrow{
    display:inline-block;
    margin-bottom:18px;
    color:#7b8a53;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
}

.partner-register-section .page-header h2{
    font-size:44px;
    line-height:1.1;
    font-family:'Cormorant Garamond',serif;
    color:#1f3528;
    margin-bottom:20px;
}

.partner-register-section .page-header p{
    color:#5f5f5f;
    font-size:17px;
    line-height:1.8;
}

.register-card{
    position:relative;
    background:rgba(255,255,255,0.97);
    border-radius:32px;
    box-shadow:0 35px 90px rgba(31,53,40,0.12);
    border:1px solid rgba(184,150,82,0.14);
    overflow:hidden;
    padding:45px;
}

.register-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(184,150,82,0.12);
    top:-80px;
    right:-90px;
    pointer-events:none;
}

.register-card::after{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(223,210,179,0.2);
    bottom:-60px;
    left:-60px;
    pointer-events:none;
}

.register-grid{
    display:grid;
    grid-template-columns:360px minmax(0,1fr);
    gap:35px;
    align-items:start;
}

.register-summary{
    padding:35px 0 0;
}

.image-card{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    margin-bottom:32px;
    box-shadow:0 25px 50px rgba(31,53,40,0.12);
}

.image-card img{
    width:100%;
    display:block;
    object-fit:cover;
    min-height:320px;
}

.image-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:24px;
    background:linear-gradient(180deg, transparent 0%, rgba(31,53,40,0.8) 100%);
}

.image-overlay span{
    color:#fff;
    font-size:16px;
    font-weight:700;
    letter-spacing:0.8px;
}

.register-summary h3{
    font-size:32px;
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
    color:#1f3528;
}

.register-summary p{
    color:#5e5e5e;
    line-height:1.9;
    margin-bottom:30px;
    font-size:16px;
}

.benefits-list{
    display:grid;
    gap:14px;
}

.benefits-list li{
    position:relative;
    padding-left:28px;
    color:#555;
    line-height:1.8;
    font-size:15px;
}

.benefits-list li::before{
    content:'•';
    position:absolute;
    left:0;
    top:0;
    color:#7b8a53;
    font-size:24px;
    line-height:1;
}

.register-form{
    display:flex;
    flex-direction:column;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group-full{
    grid-column:span 2;
}

.form-group label{
    margin-bottom:10px;
    font-size:14px;
    color:#4c4c4c;
    font-weight:600;
}

.register-form input,
.register-form textarea{
    width:100%;
    padding:18px 22px;
    border:1px solid rgba(146,132,113,0.22);
    border-radius:18px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    background:rgba(255,255,255,0.92);
    color:#1f3528;
    outline:none;
    transition:0.3s ease;
    backdrop-filter:blur(8px);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,0.6);
}

.register-form input:focus,
.register-form textarea:focus{
    border-color:#7b8a53;
    box-shadow:0 0 0 4px rgba(123,141,81,0.12);
}

.register-form textarea{
    min-height:180px;
    resize:none;
}

.register-submit{
    margin-top:15px;
    align-self:flex-start;
    min-width:220px;
}

.form-note{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-top:22px;
    color:#5b5b5b;
    font-size:14px;
    line-height:1.8;
}

.form-note span{
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#7b8a53;
    color:#fff;
    font-weight:700;
}

.alert-note{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin:0 0 24px;
    padding:18px 22px;
    border-radius:18px;
    background:#ffe8e5;
    color:#8b1c24;
    font-size:14px;
    line-height:1.7;
    border:1px solid #f5c4b7;
}

.alert-note span{
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#d97363;
    color:#fff;
    font-weight:700;
}

.alert-note a{
    color:#8b1c24;
    text-decoration:underline;
}

@media(max-width:992px){
    .register-grid{
        grid-template-columns:1fr;
    }

    .form-group-full{
        grid-column:span 1;
    }
}

@media(max-width:768px){
    .partner-register-section{
        padding:100px 0 60px;
    }

    .register-card{
        padding:30px 25px;
    }

    .page-header h2{
        font-size:34px;
    }
}

@media(max-width:576px){
    .form-grid{
        grid-template-columns:1fr;
    }

    .register-summary{
        display:none;
    }
}

/* =========================================================
   CTA
========================================================= */

.cta{
    background:#425833;
    color:#fff;
    text-align:center;
    border-radius:30px;
    padding:80px 30px;
}

.cta h2{
    font-size:55px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    line-height:1.8;
    color:#ddd;
}

/* =========================================================
   DASHBOARD
========================================================= */

.dashboard{
    display:grid;
    grid-template-columns:260px 1fr;
    min-height:100vh;
}

.sidebar{
    background:#425833;
    padding:30px;
    color:#fff;
}

.sidebar h2{
    margin-bottom:40px;
}

.sidebar ul li{
    margin-bottom:20px;
}

.sidebar ul li a{
    color:#fff;
    transition:0.3s;
}

.sidebar ul li a:hover{
    color:#c4b585;
}

.dashboard-content{
    padding:40px;
    background:#f3ece0;
}

.dashboard-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.dashboard-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.dashboard-card h3{
    font-size:16px;
    color:#666;
    margin-bottom:10px;
}

.dashboard-card h2{
    font-size:32px;
    color:#1f3528;
}

/* =========================================================
   TABLE
========================================================= */

.table-wrapper{
    overflow-x:auto;
    background:#fff;
    border-radius:20px;
    padding:20px;
    margin-top:30px;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th{
    background:#425833;
    color:#fff;
    padding:16px;
    text-align:left;
    font-size:14px;
}

table td{
    padding:16px;
    border-bottom:1px solid #eee;
    font-size:14px;
}

.status{
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    display:inline-block;
}

.pending{
    background:#fff3cd;
    color:#856404;
}

.completed{
    background:#d4edda;
    color:#155724;
}

.cancelled{
    background:#f8d7da;
    color:#721c24;
}

/* =========================================================
   FOOTER
========================================================= */

footer{
    padding:40px 0;
    text-align:center;
    background:#f1efe8;
}

footer p{
    color:#666;
    font-size:14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    nav ul{
        gap:20px;
    }

    .hero h1{
        font-size:58px;
    }

    .dashboard{
        grid-template-columns:1fr;
    }

    .sidebar{
        display:none;
    }
}

@media(max-width:768px){

    header{
        padding:10px 0;
    }

    .navbar{
        flex-wrap:wrap;
        gap:15px;
    }

    .logo img{
        height:50px;
    }

    .mobile-menu-btn{
        display:block;
    }

    nav{
        display:none;
        width:100%;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        background:#fff;
        padding:20px;
        border-radius:20px;
        margin-top:15px;
        gap:15px;
    }

    nav ul li a{
        font-size:14px;
    }

    .btn{
        padding:12px 20px;
        font-size:13px;
    }

    .hero{
        text-align:center;
        padding-top:160px;
    }

    .hero-content{
        margin:auto;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-btns{
        justify-content:center;
    }

    .section{
        padding:80px 0;
    }

    .section-title h2,
    .about-content h2,
    .cta h2{
        font-size:38px;
    }

    .about-wrapper{
        gap:40px;
    }

    .booking-form{
        padding:30px 20px;
    }

    .dashboard-content{
        padding:20px;
    }
}

@media(max-width:480px){

    .container{
        width:92%;
    }

    .hero h1{
        font-size:38px;
    }

    .section-title h2,
    .about-content h2,
    .cta h2{
        font-size:32px;
    }

    .hero-btns{
        flex-direction:column;
    }

    .btn,
    .outline-btn{
        width:100%;
    }

    .service-card{
        padding:30px 20px;
    }

    .cta{
        padding:60px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
    margin-top:40px;
}

.gallery-grid img{
    border-radius:28px;
    width:100%;
    height:260px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(31,53,40,0.12);
}
