/* ===================================================
   VARIABLES
=================================================== */

:root{

    --primary:#66785F;
    --secondary:#F8F6F2;
    --dark:#1B1B1B;

}

/* ===================================================
   RESET
=================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.7;

}

/* ===================================================
   TYPOGRAPHY
=================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cormorant Garamond',serif;
    line-height:1.2;
    margin-bottom:0;

}

p{

    color:#666;
    margin-bottom:1rem;

}

.textheader{

    color:#ffffff;
    margin-bottom:1rem;

}

span{

    color:#ffffff;
    margin-bottom:1rem;

}

a{

    text-decoration:none;
    transition:.35s;

}

img{

    max-width:100%;
    display:block;
    height:auto;

}

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

.section{

    padding:110px 0;

}

/* ===================================================
   TITLE
=================================================== */

.title{

    font-size:52px;
    text-align:center;
    margin-bottom:15px;

}

.subtitle{

    text-align:center;
    color:#777;
    margin-bottom:70px;

}

/* ===================================================
   LABEL
=================================================== */

.section-tag{

    display:inline-block;

    padding:8px 20px;

    background:#F3F6F1;

    color:#66785F;

    border-radius:50px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;

}

.section-label{

    display:inline-block;

    letter-spacing:4px;

    color:#7d8766;

    font-size:13px;

    margin-bottom:15px;

    font-weight:600;

}

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

@keyframes fadeMenu{

    from{

        opacity:0;
        transform:translateY(-20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ===================================================
   HEADER
=================================================== */

.navbar{

    padding:22px 0;
    background:transparent;
    transition:.4s;

}

.navbar.scrolled{

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(16px);
    padding:18px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/* ===================================================
   LOGO
=================================================== */

.logo{

    height:48px;
    width:auto;
    display:block;
    transition:.35s;

}

.navbar.scrolled .logo{

    height:42px;

}

.navbar-brand{

    font-size:34px;
    letter-spacing:8px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    color:#fff;
    text-decoration:none;
    transition:.35s;

}

.navbar.scrolled .navbar-brand{

    color:#111;

}

/* ===================================================
   DESKTOP MENU
=================================================== */

.desktop-menu{

    flex:1;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-left:60px;

}

.desktop-menu ul{

    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;

}

.desktop-menu ul li a{

    position:relative;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:500;
    transition:.35s;

}

.desktop-menu ul li a::after{

    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:0;
    height:2px;
    background:#fff;
    transition:.35s;

}

.desktop-menu ul li a:hover::after{

    width:28px;

}

.navbar.scrolled .desktop-menu ul li a{

    color:#222;

}

.navbar.scrolled .desktop-menu ul li a::after{

    background:#66785F;

}

/* ===================================================
   BUTTON
=================================================== */

.nav-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:170px;
    height:54px;

    padding:0 32px;

    border-radius:999px;

    background:#fff;

    color:#222 !important;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    letter-spacing:1.6px;

    text-transform:uppercase;

    transition:.35s;

}

.nav-btn:hover{

    background:#66785F;
    color:#fff !important;

}

.navbar.scrolled .nav-btn{

    background:#66785F;
    color:#fff !important;

}

/* ===================================================
   MOBILE BUTTON
=================================================== */

.menu-btn{

    display:none;

    position:relative;

    width:46px;
    height:46px;

    border:none;
    background:none;

    cursor:pointer;

    z-index:10002;

}

.menu-btn span{

    position:absolute;

    left:8px;

    width:30px;
    height:2px;

    background:#66785F;

    border-radius:5px;

    transition:.35s;

}

.menu-btn span:nth-child(1){top:13px;}
.menu-btn span:nth-child(2){top:22px;}
.menu-btn span:nth-child(3){top:31px;}

.menu-btn.active span:nth-child(1){

    transform:rotate(45deg);
    top:22px;

}

.menu-btn.active span:nth-child(2){

    opacity:0;

}

.menu-btn.active span:nth-child(3){

    transform:rotate(-45deg);
    top:22px;

}

.menu-btn.active span{

    background:#222;

}

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

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    height:100vh;

    background:#fff;

    padding:60px 45px;

    display:flex;

    flex-direction:column;

    transition:.45s;

    overflow-y:auto;

    z-index:9990;

}

.mobile-menu.active{

    right:0;

}

.mobile-top{

    margin-bottom:60px;

}

.mobile-body{

    flex:1;

}

.mobile-footer{

    margin-top:auto;

    padding-top:60px;

}

.mobile-menu nav{

    display:flex;

    flex-direction:column;

    gap:25px;

    margin-top:50px;

}

.mobile-menu nav a{

    position:relative;

    color:#222;

    text-decoration:none;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    padding:15px 0;

    border-bottom:1px solid rgba(0,0,0,.08);

    transition:.35s;

}

.mobile-menu nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:5px;

    width:0;

    height:2px;

    background:#66785F;

    transition:.35s;

}

.mobile-menu nav a:hover,
.mobile-menu nav a.active{

    color:#66785F;
    padding-left:18px;

}

.mobile-menu nav a:hover::after,
.mobile-menu nav a.active::after{

    width:45px;

}

.menu-close{

    position:absolute;

    top:35px;
    right:30px;

    width:46px;
    height:46px;

    border:none;

    background:none;

    font-size:30px;

    color:#222;

    cursor:pointer;

    transition:.3s;

}

.menu-close:hover{

    transform:rotate(90deg);
    color:#66785F;

}

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

@media(max-width:991px){

    .navbar{

        background:#fff;
        padding:18px 0;

    }

    .navbar-brand{

        color:#111;
        font-size:28px;
        letter-spacing:4px;

    }

    .logo{

       height:48px;

    }

    .desktop-menu{

        display:none;

    }

    .menu-btn{

        display:block;

    }

}

/* ===================================================
   CARD
=================================================== */

.card-feature{

    border:none;

    border-radius:28px;

    overflow:hidden;

    padding:40px;

    transition:.35s;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    height:100%;

}

.card-feature:hover{

    transform:translateY(-10px);

}

.card-feature img{

    width:100%;

    border-radius:20px;

    object-fit:cover;

    transition:.4s;

}

.card-feature:hover img{

    transform:scale(1.05);

}

.card-feature a{

    color:var(--primary);

    font-weight:600;

}

.card-feature a:hover{

    text-decoration:underline;

}

/* ===================================================
   TABLE
=================================================== */

.table{

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.table th,
.table td{

    padding:18px;

}

/* ===================================================
   FORM
=================================================== */

.form-control,
textarea{

    padding:14px;

    border:1px solid #ddd;

    border-radius:12px;

    box-shadow:none;

}

.form-control:focus{

    border-color:#66785F;

    box-shadow:0 0 0 .2rem rgba(102,120,95,.15);

}

.form-select{

    padding:14px;

    border-radius:12px;

    border:1px solid #ddd;

}

.input-group input{

    height:55px;

    border-radius:12px 0 0 12px;

}

.input-group .btn{

    border-radius:0 12px 12px 0;

    padding:0 25px;

}

/* ===================================================
   SOCIAL
=================================================== */

.social-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#66785F;

    color:#fff;

    border-radius:50%;

    font-size:28px;

    text-decoration:none;

    transition:.35s;

}

.social-icon:hover{

    background:#4E6248;

    color:#fff;

    transform:translateY(-5px);

}

/* ===================================================
   ACCORDION
=================================================== */

.accordion-item{

    border:none;

    border-radius:15px;

    margin-bottom:15px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.accordion-button{

    padding:18px;

    font-weight:600;

}

.accordion-button:not(.collapsed){

    background:#66785F;

    color:#fff;

}

.badge{

    padding:8px 12px;

    font-size:13px;

    border-radius:30px;

}

/* ===================================================
   HOME HERO
=================================================== */

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    color:#fff;

    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("/assets/img/background.webp");

    background-size:cover;

    background-position:center;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    font-weight:700;

}

.hero p{

    margin:25px 0;

    max-width:650px;

    font-size:20px;

}

/* ===================================================
   ABOUT HERO
=================================================== */

.hero-about{

    height:60vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("/assets/img/img_2.webp");

    background-size:cover;

    background-position:center;

}

.hero-about h1{

    font-size:72px;

}

.hero-about p{

    font-size:20px;

    max-width:700px;

    margin:auto;

    margin-top:20px;

}

/* ===================================================
   GALLERY
=================================================== */

.experience-gallery{

    background:#faf9f7;

}

.display-title{

    font-size:58px;

    color:#23311f;

    font-family:"Cormorant Garamond",serif;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:320px;

}

.gallery-item.large{

    grid-row:span 2;

    height:662px;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.experience-counter{

    margin-top:70px;

    display:flex;

    justify-content:center;

    gap:80px;

    text-align:center;

}

.experience-counter h3{

    font-size:48px;

    color:#556B50;

    font-family:"Cormorant Garamond",serif;

}

/* ===================================================
   FOOTER
=================================================== */

.footer{

    background:#556B50;

    color:#fff;

    padding:80px 0;

    margin-top:100px;

}

.footer h3,
.footer h5{

    color:#fff;

}

.footer p{

    color:rgba(255,255,255,.85);

}

.footer a{

    color:#fff;

    transition:.35s;

}

.footer a:hover{

    color:#D9E6D1;

    padding-left:5px;

}

.footer hr{

    border-color:rgba(255,255,255,.15);

}












.navbar{

padding:30px 0;

background:transparent;

transition:.4s;

}

.navbar-brand{

font-size:34px;

letter-spacing:8px;

font-family:'Cormorant Garamond',serif;

font-weight:700;

color:#fff;

transition:.35s;

text-decoration:none;

}

.navbar.scrolled .navbar-brand{

color:#111;

}



.card-feature{

border:none;

border-radius:25px;

padding:40px;

transition:.3s;

box-shadow:0 20px 50px rgba(0,0,0,.08);

height:100%;

}

.card-feature:hover{

transform:translateY(-10px);

}


.card-feature img{


object-fit:cover;

width:100%;

transition:.4s;

}

.card-feature:hover img{

transform:scale(1.05);

}


.form-select{

padding:14px;

border-radius:12px;

border:1px solid #ddd;

}


.card-feature a{

color:var(--primary);

font-weight:600;

text-decoration:none;

}

.card-feature a:hover{

text-decoration:underline;

}

.input-group input{

height:55px;

border-radius:12px 0 0 12px;

}

.input-group .btn{

border-radius:0 12px 12px 0;

padding:0 25px;

}



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

@media (max-width:991px){

.navbar{

padding:14px 0;

}

.navbar-brand{

font-size:28px;

letter-spacing:2px;

}



.card-feature{

padding:25px;

}

}


.card-feature{

border-radius:28px;

overflow:hidden;

}

.card-feature img{

border-radius:20px;

}


.navbar.scrolled{

background:rgba(255,255,255,.96);

backdrop-filter:blur(16px);

padding:18px 0;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}



.navbar.scrolled .navbar-nav a{

color:#222;

}




.btn-hero{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 36px;

border-radius:999px;

background:#fff;

color:#1B1B1B;

font-weight:600;

letter-spacing:1px;

text-decoration:none;

transition:.35s;

}

.btn-hero:hover{

background:#66785F;

color:#fff;

transform:translateY(-3px);

}


.desktop-menu{

display:flex;

align-items:center;

gap:45px;

margin-left:auto;

color:#fff;

}

.desktop-menu ul{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    list-style:none;

    margin:0;

    padding:0;

}

.desktop-menu ul li{

    display:flex;

    align-items:center;

}

.desktop-menu ul li a{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:90px;

    height:44px;

    text-align:center;

    color:#fff;

    font-size:11px;

    font-weight:600;

    letter-spacing:1.4px;

    text-transform:uppercase;

    position:relative;

    transition:.3s;

}

.desktop-menu ul li a::after{

content:"";

position:absolute;

left:50%;

bottom:-10px;

transform:translateX(-50%);

width:0;

height:2px;

background:#fff;

transition:.35s;

}

.desktop-menu ul li a:hover::after{

width:28px;

}

.navbar.scrolled .desktop-menu ul li a::after{

background:#66785F;

}

.navbar.scrolled .desktop-menu ul li a{

color:black;

}

.mobile-menu{


position:fixed;

top:0;

right:-100%;

width:100%;

height:100vh;

overflow-y:auto;

-webkit-overflow-scrolling:touch;

padding:40px;

background:white;

padding:60px 45px;

display:flex;

flex-direction:column;

justify-content:flex-start;

transition:.45s;

z-index:9990;

}

.mobile-menu.active{

right:0;

}

.mobile-menu nav{

display:flex;

flex-direction:column;

gap:25px;

margin-top:50px;

}

.mobile-menu nav a{

font-size:28px;

font-family:'Cormorant Garamond',serif;

text-decoration:none;

color:#222;

letter-spacing:1px;

transition:.3s;

position:relative;

padding:15px 0;

transition:.35s;

border-bottom:1px solid rgba(0,0,0,.08);

}

.mobile-menu nav a::after{

content:"";

position:absolute;

left:0;

bottom:5px;

width:0;

height:2px;

background:#66785F;

transition:.35s;

}

.mobile-menu nav a:hover,

.mobile-menu nav a.active{

color:#66785F;

padding-left:18px;

}

.mobile-menu nav a:hover::after,

.mobile-menu nav a.active::after{

width:45px;

}

.menu-btn{

display:none;

background:none;

border:none;

width:46px;

height:46px;

position:relative;

z-index:10002;

cursor:pointer;

}

.menu-btn span{

position:absolute;

left:8px;

width:30px;

height:2px;

background:#66785F;

transition:.35s;

}

.menu-btn span:nth-child(1){

top:13px;

}

.menu-btn span:nth-child(2){

top:22px;

}

.menu-btn span:nth-child(3){

top:31px;

}

.menu-btn.active span:nth-child(1){

transform:rotate(45deg);

top:22px;

}

.menu-btn.active span:nth-child(2){

opacity:0;

}

.menu-btn.active span:nth-child(3){

transform:rotate(-45deg);

top:22px;

}

.menu-btn.active span{

background:#222;

}

.menu-btn span{

border-radius:5px;

}

@media(max-width:991px){

.desktop-menu{

display:none;

}

.menu-btn{

display:block;

}

}

.mobile-top{

margin-bottom:60px;

}

.mobile-footer{

margin-top:auto;

padding-top:60px;

}

.menu-close{

position:absolute;

top:35px;

right:30px;

width:46px;

height:46px;

border:none;

background:none;

font-size:30px;

color:#222;

cursor:pointer;

transition:.3s;

}

.menu-close:hover{

transform:rotate(90deg);

color:#66785F;

}

.nav-btn{


display:flex;
align-items:center;
justify-content:center;

min-width:180px;
height:56px;

padding:0 32px;

background:#fff;

border-radius:999px;

text-decoration:none;

font-size:14px;

font-weight:600;

letter-spacing:2px;

text-transform:uppercase;

color:#222 !important;

line-height:1;

font-family:'Poppins',sans-serif;

transition:.35s;

}

.nav-btn:hover{

background:#66785F;

color:#fff !important;

}

.navbar.scrolled .nav-btn{

background:#66785F;

color:#fff !important;

}

.logo{

    height:52px;
    width:auto;

    display:block;

    transition:.35s;

}

.navbar.scrolled .logo{

    height:42px;

}


/* ===========================
   Mobile
=========================== */

@media (max-width:768px){

    .gallery-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:18px;

    }

    .gallery-item{

        height:260px;

    }

    .gallery-item.large{

        height:360px;

        grid-row:unset;

    }

    .display-title{

        font-size:42px;

    }


    .experience-counter{

        flex-direction:column;

        gap:25px;

    }

}




/* ===================================
REGISTER BUTTON
=================================== */

.btn-book{

    background: linear-gradient(135deg,#ff3b30,#d60000);
    color:#fff !important;

    border:none;

    border-radius:60px;

    padding:18px 32px;

    font-size:18px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    transition:.35s;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    box-shadow:0 15px 35px rgba(214,0,0,.30);

}

.btn-book:hover{

    background: linear-gradient(135deg,#ff4d42,#b80000);

    color:#fff !important;

    transform:translateY(-3px);

    box-shadow:0 20px 45px rgba(214,0,0,.40);

}

.btn-book:focus{

    color:#fff !important;

}

.btn-book i{

    transition:.3s;

}

.btn-book:hover i{

    transform:translateX(5px);

}

/* ==========================================
LEADERSHIP CARD
========================================== */

.leader-card{

    height:100%;

}

.leader-card img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    object-position:center;

    border-radius:20px;

    display:block;

    transition:.4s;

}

.leader-card:hover img{

    transform:scale(1.03);

}

.leader-card img{

    object-position:top center;

}

.leader-card{

    display:flex;

    flex-direction:column;

    height:100%;

}

.leader-card h5{

    margin-top:25px;

}

.leader-card p{

    flex-grow:1;

}

.leader-card img{

    width:100%;

    height:520px;

    object-fit:cover;

    object-position:center;

    border-radius:22px;

}

html,
body{
    width:100%;
    overflow-x:hidden;
}


.article-hero{

height:65vh;

overflow:hidden;

}

.article-hero img{

width:100%;

height:100%;

object-fit:cover;

}


.article-header{

padding:80px 0 50px;

}

.article-header h1{

font-size:56px;

font-weight:300;

max-width:900px;

line-height:1.2;

margin:25px 0;

}

.article-meta{

display:flex;

gap:30px;

color:#777;

flex-wrap:wrap;

}

.article-body{

padding-bottom:100px;

}

.article-body p{

font-size:20px;

line-height:2;

color:#444;

margin-bottom:30px;

}

.article-body h2{

margin-top:60px;

margin-bottom:25px;

}

blockquote{

font-size:42px;

font-style:italic;

text-align:center;

padding:80px 40px;

color:#66785F;

}


.article-cta{

background:#F8F6F2;

padding:80px;

text-align:center;

border-radius:30px;

margin-top:80px;

}


.floating {
    position: fixed;
    width: 55px;
    height: 55px;

    right: 20px;
    bottom: 125px; /* dinaikkan agar tidak menimpa booking bar */

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;
}

.floating:hover {
    transform: scale(1.08);
}

.fab-icon {
    font-size: 27px;
}

@media (max-width: 768px) {
    .floating {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 120px;
    }

    .fab-icon {
        font-size: 25px;
    }
}

.floating {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================================
   VIDEO TEASER — 9:16
=================================================== */

.teaser-section {
    padding: 90px 0;
    background: #F8F6F2;
}

.teaser-heading {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}


/* VIDEO CONTAINER */

.teaser-video-wrapper {
    position: relative;

    width: min(100%, 420px);

    /* RASIO VIDEO 9:16 */
    aspect-ratio: 9 / 16;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 28px;

    background: #111;

    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}


/* VIDEO */

.teaser-video {
    position: absolute;

    inset: 0;

    width: 100% !important;
    height: 100% !important;

    display: block;

    /* Video memenuhi area 9:16 */
    object-fit: cover;

    object-position: center center;

    aspect-ratio: auto !important;
}


/* OVERLAY */

.teaser-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: rgba(0,0,0,.08);

    color: #fff;

    pointer-events: none;

    transition: .4s ease;
}


/* PLAY BUTTON */

.teaser-play {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.9);

    color: #66785F;

    font-size: 20px;

    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}


/* TEXT */

.teaser-overlay span {
    margin-top: 14px;

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 500;
}


/* HOVER */

.teaser-video-wrapper:hover .teaser-overlay {
    background: rgba(0,0,0,.15);
}


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

@media (max-width: 576px) {

    .teaser-section {
        padding: 70px 20px;
    }

    .teaser-video-wrapper {
        width: min(100%, 380px);

        aspect-ratio: 9 / 16;

        border-radius: 22px;
    }

    .teaser-play {
        width: 58px;
        height: 58px;

        font-size: 17px;
    }

    .teaser-overlay span {
        font-size: 8px;
        letter-spacing: 2px;
    }

}

.experience-list {
    max-width: 900px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 10px;
    border-bottom: 1px solid rgba(102, 120, 95, 0.15);
}

.experience-item:first-child {
    border-top: 1px solid rgba(102, 120, 95, 0.15);
}

.experience-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: #f1f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.experience-content h4 {
    margin: 0 0 7px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
}

.experience-content p {
    margin: 0;
    max-width: 700px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 576px) {

    .experience-item {
        gap: 16px;
        padding: 22px 0;
        align-items: flex-start;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
    }

    .experience-content h4 {
        font-size: 21px;
    }

    .experience-content p {
        font-size: 13px;
    }
}

.ticket-includes-section {
    background: #fff;
}

.ticket-includes-list {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ticket-include-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid rgba(102, 120, 95, 0.12);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(27, 27, 27, 0.055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ticket-include-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(27, 27, 27, 0.09);
    border-color: rgba(102, 120, 95, 0.28);
}

.ticket-include-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #f1f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ticket-include-content {
    flex: 1;
}

.ticket-include-content h4 {
    margin: 0 0 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    color: #1b1b1b;
}

.ticket-include-content p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #6b6b6b;
}

.ticket-include-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #eef3eb;
    color: #66785f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .ticket-includes-list {
        gap: 10px;
    }

    .ticket-include-card {
        gap: 14px;
        padding: 17px 15px;
        border-radius: 15px;
    }

    .ticket-include-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
    }

    .ticket-include-content h4 {
        font-size: 20px;
        line-height: 1.2;
    }

    .ticket-include-content p {
        font-size: 12px;
        line-height: 1.55;
    }

    .ticket-include-check {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 13px;
    }
}