/*==================================================
Luxury Yacht
style.css
==================================================*/


/*========================

GOOGLE FONT

========================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');



/*========================

RESET

========================*/

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

html{

    scroll-behavior:smooth;

}

body{

    background:#0f0f0f;
    color:#fff;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;
    color:white;

}

button{

    cursor:pointer;
    border:none;

}

section{

    padding:100px 0;

}



/*========================

COLORS

========================*/

:root{

--gold:#C8A24D;

--gold-hover:#ddb75e;

--black:#111111;

--dark:#1b1b1b;

--gray:#2b2b2b;

--white:#ffffff;

--text:#d5d5d5;

--radius:14px;

--transition:.35s;

}



/*========================

CONTAINER

========================*/

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}



/*========================

SECTION TITLE

========================*/

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

}

.section-title h2{

    margin-top:10px;

    font-size:46px;

    font-family:'Playfair Display',serif;

}

.section-title p{

    max-width:700px;

    margin:20px auto 0;

    color:#c7c7c7;

    line-height:1.8;

}



/*========================

BUTTONS

========================*/

.btn-gold{

    background:var(--gold);

    color:#111;

    padding:15px 35px;

    border-radius:40px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    transition:.35s;

}

.btn-gold:hover{

    background:var(--gold-hover);

    transform:translateY(-4px);

}

.btn-dark{

    border:1px solid var(--gold);

    color:white;

    padding:15px 35px;

    border-radius:40px;

    margin-left:15px;

    transition:.35s;

}

.btn-dark:hover{

    background:var(--gold);

    color:#111;

}



/*========================

NAVBAR

========================*/

header{

    position:absolute;

    width:100%;

    z-index:999;

}

.navbar{

    padding:25px 0;

    transition:.4s;

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:32px;

    font-family:'Playfair Display',serif;

    font-weight:700;

}

.logo .gold{

    color:var(--gold);

}

.nav-menu{

    display:flex;

    gap:40px;

}

.nav-menu a{

    transition:.3s;

    font-size:15px;

}

.nav-menu a:hover{

    color:var(--gold);

}

.nav-menu .active{

    color:var(--gold);

}

.menu-btn{

    display:none;

    font-size:34px;

    cursor:pointer;

}



/*========================

HERO

========================*/

.hero{

    min-height:100vh;

    background:url("../images/hero/hero.jpg") center center/cover;

    position:relative;

    display:flex;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

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

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

}

.hero-subtitle{

    color:var(--gold);

    letter-spacing:4px;

    text-transform:uppercase;

}

.hero h1{

    font-size:70px;

    margin:25px 0;

    line-height:1.15;

    font-family:'Playfair Display',serif;

}

.hero p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:45px;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    align-items:center;

}



/*========================

SEARCH

========================*/

.search-box{

    margin-top:-70px;

    position:relative;

    z-index:5;

}

.search-box form{

    background:#181818;

    border-radius:20px;

    padding:35px;

    display:grid;

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

    gap:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.search-item{

    display:flex;

    flex-direction:column;

}

.search-item label{

    margin-bottom:12px;

    color:var(--gold);

    font-size:14px;

}

.search-item input,

.search-item select{

    height:55px;

    background:#111;

    color:white;

    border:1px solid #333;

    border-radius:12px;

    padding:0 15px;

    outline:none;

}

.search-item input:focus,

.search-item select:focus{

    border-color:var(--gold);

}

.search-btn{

    background:var(--gold);

    color:#111;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.search-btn:hover{

    background:var(--gold-hover);

}

/*==================================================
WHY US
==================================================*/

.why-us{

    background:#141414;

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:4px;

    background:var(--gold);

    transition:.4s;

}

.why-card:hover::before{

    left:0;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

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

}

.why-card .icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:rgba(200,162,77,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:25px;

}

.why-card i{

    color:var(--gold);

    font-size:38px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.why-card p{

    color:#cfcfcf;

    line-height:1.8;

}



/*==================================================
FEATURED YACHTS
==================================================*/

.featured-yachts{

    background:#101010;

}

.yacht-grid{

    display:grid;

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

    gap:30px;

}

.yacht-card{

    background:#1a1a1a;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

}

.yacht-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 25px 50px rgba(0,0,0,.45);

}

.yacht-card .image{

    position:relative;

    overflow:hidden;

}

.yacht-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.yacht-card:hover img{

    transform:scale(1.08);

}

.yacht-card .image span{

    position:absolute;

    top:20px;

    left:20px;

    background:var(--gold);

    color:#111;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.yacht-card .content{

    padding:28px;

}

.yacht-card h3{

    font-size:26px;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.price{

    color:var(--gold);

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}

.price small{

    color:#aaa;

    font-size:15px;

}

.yacht-card ul{

    margin-bottom:30px;

}

.yacht-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px 0;

    color:#d7d7d7;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.yacht-card ul li:last-child{

    border:none;

}

.yacht-card ul i{

    color:var(--gold);

}

.btn-card{

    display:block;

    background:var(--gold);

    color:#111;

    text-align:center;

    padding:15px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}

.btn-card:hover{

    background:var(--gold-hover);

}

.center-button{

    margin-top:60px;

    text-align:center;

}



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

.services{

    background:#161616;

}

.services-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:#1d1d1d;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.service-card i{

    font-size:48px;

    color:var(--gold);

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:#cfcfcf;

    line-height:1.8;

}



/*==================================================
DESTINATIONS
==================================================*/

.destinations{

    background:#111;

}

.destination-grid{

    display:grid;

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

    gap:30px;

}

.destination-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    display:block;

}

.destination-card img{

    width:100%;

    height:340px;

    object-fit:cover;

    transition:.6s;

}

.destination-card:hover img{

    transform:scale(1.12);

}

.destination-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.9),transparent);

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

}

.destination-overlay h3{

    font-size:32px;

    font-family:'Playfair Display',serif;

}

.destination-overlay span{

    color:var(--gold);

    margin-top:10px;

}



/*==================================================
COUNTER
==================================================*/

.counter{

    background:linear-gradient(135deg,#0f0f0f,#181818);

}

.counter-grid{

    display:grid;

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

    gap:30px;

}

.counter-box{

    text-align:center;

    padding:50px 20px;

    border-radius:20px;

    background:#1a1a1a;

    border:1px solid rgba(255,255,255,.05);

}

.counter-box h2{

    font-size:56px;

    color:var(--gold);

    margin-bottom:10px;

    font-family:'Playfair Display',serif;

}

.counter-box span{

    color:#d2d2d2;

    font-size:18px;

    letter-spacing:1px;

}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{
    background:#151515;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#1d1d1d;
    border-radius:20px;
    padding:40px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.06);
}

.testimonial-card:hover{
    transform:translateY(-12px);
    border-color:var(--gold);
    box-shadow:0 20px 40px rgba(0,0,0,.45);
}

.stars{
    color:#FFD700;
    font-size:22px;
    margin-bottom:20px;
    letter-spacing:3px;
}

.testimonial-card p{
    color:#d4d4d4;
    line-height:1.9;
    margin-bottom:30px;
}

.customer{
    display:flex;
    align-items:center;
    gap:18px;
}

.customer img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--gold);
}

.customer h4{
    font-size:18px;
    margin-bottom:5px;
}

.customer span{
    color:#aaa;
    font-size:14px;
}



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

.gallery{

    background:#111;

}

.gallery-grid{

    display:grid;

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

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    transition:.5s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.06);

    filter:brightness(1.15);

}



/*==================================================
FAQ
==================================================*/

.faq{

    background:#161616;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    background:#1e1e1e;

    border-radius:15px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

}

.faq-question{

    width:100%;

    background:none;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 30px;

    font-size:18px;

    font-weight:600;

}

.faq-question i{

    color:var(--gold);

    font-size:22px;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-answer p{

    color:#cfcfcf;

    line-height:1.8;

}



/*==================================================
CTA
==================================================*/

.cta{

    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/hero/cta.jpg") center/cover;

    text-align:center;

}

.cta-content{

    max-width:800px;

    margin:auto;

}

.cta-content span{

    color:var(--gold);

    letter-spacing:3px;

    text-transform:uppercase;

}

.cta-content h2{

    font-size:58px;

    margin:25px 0;

    font-family:'Playfair Display',serif;

}

.cta-content p{

    color:#ddd;

    line-height:1.9;

    margin-bottom:45px;

}



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

footer{

    background:#0b0b0b;

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:45px;

}

.footer-grid h3{

    margin-bottom:25px;

    color:var(--gold);

}

.footer-grid p{

    color:#bdbdbd;

    line-height:1.9;

}

.footer-grid ul li{

    margin-bottom:14px;

}

.footer-grid ul li a{

    color:#bfbfbf;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:var(--gold);

    padding-left:6px;

}

.footer-grid ul li i{

    color:var(--gold);

    margin-right:8px;

}

.social{

    display:flex;

    gap:15px;

}

.social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#1c1c1c;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    font-size:20px;

}

.social a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    margin-top:70px;

    padding:30px 0;

    color:#9e9e9e;

}



/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ddb75e;

}



/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--gold);

    color:#111;

}



/*==================================================
IMAGE HOVER
==================================================*/

img{

    transition:.5s;

}



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

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.float{

    animation:float 4s ease-in-out infinite;

}



/*==================================================
SHADOW UTILITIES
==================================================*/

.shadow-gold{

    box-shadow:0 0 35px rgba(200,162,77,.25);

}

.radius{

    border-radius:20px;

}

/*==================================================
CONTACT PAGE HERO
==================================================*/

.page-hero.contact-hero{
    position:relative;
    min-height:55vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/contact/contact-banner.jpg") center center/cover;
}

.page-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.page-content span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:15px;
}

.page-content h1{
    margin:20px 0;
    font-size:64px;
    font-family:'Playfair Display',serif;
}

.page-content p{
    max-width:700px;
    margin:auto;
    color:#ddd;
    line-height:1.8;
}



/*==================================================
CONTACT INFO
==================================================*/

.contact-info{
    margin-top:-70px;
    position:relative;
    z-index:5;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.contact-card{
    background:#1b1b1b;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.contact-card i{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    background:rgba(200,162,77,.12);
    color:var(--gold);
    font-size:34px;
    margin-bottom:20px;
}

.contact-card h3{
    margin-bottom:12px;
    font-size:22px;
}

.contact-card p{
    color:#cfcfcf;
    line-height:1.8;
}



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

.contact-section{
    background:#151515;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
}

.contact-form-area{
    background:#1b1b1b;
    padding:45px;
    border-radius:20px;
}

.section-mini{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
}

.contact-form-area h2{
    margin:15px 0;
    font-size:42px;
    font-family:'Playfair Display',serif;
}

.contact-form-area p{
    color:#cfcfcf;
    margin-bottom:35px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:10px;
    color:var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:16px 18px;
    background:#111;
    color:#fff;
    border:1px solid #333;
    border-radius:12px;
    outline:none;
    transition:.3s;
    font-family:inherit;
}

.form-group textarea{
    resize:vertical;
    min-height:180px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--gold);
}

.contact-form button{
    margin-top:20px;
}

.contact-form button i{
    margin-right:10px;
}



/*==================================================
MAP
==================================================*/

.contact-right{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.contact-map{
    overflow:hidden;
    border-radius:20px;
}

.contact-map iframe{
    width:100%;
    height:360px;
    border:0;
}



/*==================================================
OFFICE HOURS
==================================================*/

.office-hours{
    background:#1b1b1b;
    padding:35px;
    border-radius:20px;
}

.office-hours h3{
    margin-bottom:25px;
    color:var(--gold);
}

.office-hours ul{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.office-hours li{
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding-bottom:14px;
    color:#ddd;
}

.office-hours li:last-child{
    border:none;
}



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

.contact-social{
    background:#111;
}

.social-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.social-card{
    background:#1c1c1c;
    border-radius:20px;
    padding:40px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.06);
}

.social-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
}

.social-card i{
    font-size:46px;
    color:var(--gold);
    margin-bottom:20px;
}

.social-card h3{
    margin-bottom:10px;
}

.social-card p{
    color:#cfcfcf;
}



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

::placeholder{
    color:#888;
}



/*==================================================
INPUT AUTOFILL
==================================================*/

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill{
    -webkit-box-shadow:0 0 0px 1000px #111 inset;
    -webkit-text-fill-color:#fff;
}



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

@media(max-width:1200px){

.contact-grid{
grid-template-columns:repeat(2,1fr);
}

.social-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-wrapper{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.page-content h1{
font-size:42px;
}

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

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

.form-row{
grid-template-columns:1fr;
}

.contact-form-area{
padding:30px;
}

.contact-form-area h2{
font-size:32px;
}

.office-hours li{
flex-direction:column;
gap:6px;
}

}

@media(max-width:576px){

.page-content h1{
font-size:34px;
}

.contact-card{
padding:30px 20px;
}

.contact-card i{
width:65px;
height:65px;
font-size:28px;
}

.contact-form-area{
padding:25px;
}

.contact-form-area h2{
font-size:28px;
}

.contact-map iframe{
height:280px;
}

}

/*==================================================
ABOUT PAGE
==================================================*/

.page-hero.about-hero{

    position:relative;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url("../images/about/banner.jpg") center center/cover no-repeat;

}

.page-hero.about-hero::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.18),transparent 70%);
    top:-250px;
    left:-250px;

}

.page-hero.about-hero::after{

    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.10),transparent 70%);
    right:-250px;
    bottom:-250px;

}

.page-content{

    position:relative;
    z-index:2;
    max-width:850px;

}

.page-content span{

    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:5px;
    margin-bottom:20px;
    font-weight:600;

}

.page-content h1{

    font-size:72px;
    font-family:'Playfair Display',serif;
    margin-bottom:25px;
    line-height:1.2;

}

.page-content p{

    color:#d7d7d7;
    font-size:18px;
    line-height:1.9;

}

.breadcrumb{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:40px;
    color:#bdbdbd;

}

.breadcrumb a{

    color:white;
    transition:.35s;

}

.breadcrumb a:hover{

    color:var(--gold);

}

.breadcrumb i{

    color:var(--gold);

}



/*==================================================
ABOUT COMPANY
==================================================*/

.about-company{

    background:#101010;
    position:relative;
    overflow:hidden;

}

.about-company::before{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(rgba(200,162,77,.07),transparent 70%);
    right:-120px;
    top:-120px;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:24px;
    display:block;
    transition:.6s;
    box-shadow:0 35px 70px rgba(0,0,0,.45);

}

.about-image:hover img{

    transform:scale(1.04);

}

.about-image::before{

    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:3px solid var(--gold);
    top:-25px;
    left:-25px;
    border-radius:20px;
    z-index:-1;

}

.about-image::after{

    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:3px solid var(--gold);
    bottom:-25px;
    right:-25px;
    border-radius:20px;
    z-index:-1;

}

.about-content span{

    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-weight:600;

}

.about-content h2{

    margin:25px 0;
    font-size:54px;
    line-height:1.2;
    font-family:'Playfair Display',serif;

}

.about-content p{

    color:#cfcfcf;
    line-height:2;
    margin-bottom:20px;

}



/*==================================================
FEATURES
==================================================*/

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:45px 0;

}

.feature{

    display:flex;
    align-items:center;
    gap:15px;

    background:#191919;

    padding:18px 20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.feature:hover{

    transform:translateY(-6px);

    border-color:var(--gold);

    background:#1e1e1e;

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

}

.feature i{

    width:48px;
    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(200,162,77,.12);

    color:var(--gold);

    font-size:22px;

}

.feature span{

    color:white;

    letter-spacing:0;

    text-transform:none;

    margin:0;

    font-size:16px;

}



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

.about-content .btn-gold{

    margin-top:15px;

}



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

@media(max-width:1200px){

.about-grid{

grid-template-columns:1fr;

gap:70px;

}

.about-image{

max-width:700px;

margin:auto;

}

}

@media(max-width:768px){

.page-content h1{

font-size:46px;

}

.about-content h2{

font-size:38px;

}

.about-features{

grid-template-columns:1fr;

}

.about-image::before,
.about-image::after{

display:none;

}

}

@media(max-width:576px){

.page-content h1{

font-size:36px;

}

.page-content p{

font-size:16px;

}

.about-content h2{

font-size:32px;

}

}

/*==================================================
MISSION & VISION
==================================================*/

.mission-vision{

    position:relative;
    background:#141414;
    overflow:hidden;

}

.mission-vision::before{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    top:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.08),transparent 70%);

}

.mission-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.mission-card{

    position:relative;

    background:rgba(28,28,28,.85);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:60px 45px;

    overflow:hidden;

    transition:.45s;

}

.mission-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:0;

    background:var(--gold);

    transition:.45s;

}

.mission-card:hover::before{

    height:100%;

}

.mission-card:hover{

    transform:translateY(-12px);

    border-color:rgba(200,162,77,.4);

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.mission-icon{

    width:95px;

    height:95px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(200,162,77,.12);

    margin-bottom:30px;

}

.mission-icon i{

    font-size:42px;

    color:var(--gold);

}

.mission-card h3{

    font-size:34px;

    font-family:'Playfair Display',serif;

    margin-bottom:20px;

}

.mission-card p{

    color:#cfcfcf;

    line-height:2;

}



/*==================================================
WHY US
==================================================*/

.why-about{

    background:#101010;

}

.why-about-grid{

    display:grid;

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

    gap:30px;

}

.why-box{

    position:relative;

    background:#191919;

    border-radius:22px;

    padding:45px 35px;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

}

.why-box::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:4px;

    background:var(--gold);

    transition:.45s;

}

.why-box:hover::before{

    left:0;

}

.why-box:hover{

    transform:translateY(-10px);

    border-color:rgba(200,162,77,.45);

}

.why-box i{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(200,162,77,.12);

    color:var(--gold);

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.why-box:hover i{

    transform:rotate(10deg) scale(1.08);

}

.why-box h3{

    font-size:26px;

    margin-bottom:18px;

    font-family:'Playfair Display',serif;

}

.why-box p{

    color:#d0d0d0;

    line-height:1.9;

}



/*==================================================
COUNTER
==================================================*/

.about-counter{

    background:linear-gradient(135deg,#111,#1a1a1a);

}

.about-counter .counter-grid{

    display:grid;

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

    gap:30px;

}

.about-counter .counter-box{

    background:#1b1b1b;

    border-radius:22px;

    padding:55px 25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.about-counter .counter-box:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.about-counter .counter-box h2{

    font-size:62px;

    color:var(--gold);

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.about-counter .counter-box span{

    color:#ddd;

    font-size:17px;

    letter-spacing:1px;

}



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

@media(max-width:1200px){

.mission-grid{

grid-template-columns:1fr;

}

.why-about-grid{

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

}

.about-counter .counter-grid{

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

}

}

@media(max-width:768px){

.why-about-grid{

grid-template-columns:1fr;

}

.about-counter .counter-grid{

grid-template-columns:1fr;

}

.mission-card{

padding:40px 30px;

}

.mission-card h3{

font-size:28px;

}

}

/*==================================================
PROCESS
==================================================*/

.process{

    position:relative;
    background:#151515;
    overflow:hidden;

}

.process::before{

    content:"";
    position:absolute;
    top:120px;
    left:10%;
    width:80%;
    height:2px;
    background:linear-gradient(to right,
    transparent,
    rgba(200,162,77,.45),
    transparent);

}

.process-grid{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.process-card{

    position:relative;

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.05);

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

}

.process-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

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

}

.process-card span{

    width:85px;
    height:85px;

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

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#c8a24d,#f3d68a);

    color:#111;

    font-size:28px;

    font-weight:700;

}

.process-card h3{

    font-size:28px;

    font-family:'Playfair Display',serif;

    margin-bottom:15px;

}

.process-card p{

    color:#cfcfcf;

    line-height:1.9;

}



/*==================================================
TEAM
==================================================*/

.team{

    background:#101010;

}

.team-grid{

    display:grid;

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

    gap:35px;

}

.team-card{

    position:relative;

    overflow:hidden;

    background:#1a1a1a;

    border-radius:24px;

    transition:.45s;

    border:1px solid rgba(255,255,255,.05);

}

.team-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 25px 70px rgba(0,0,0,.5);

}

.team-image{

    overflow:hidden;

    height:380px;

}

.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.team-card:hover img{

    transform:scale(1.08);

}

.team-content{

    padding:35px;

    text-align:center;

}

.team-content h3{

    font-size:30px;

    margin-bottom:10px;

    font-family:'Playfair Display',serif;

}

.team-content span{

    color:var(--gold);

    font-size:15px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.team-social{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:30px;

}

.team-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#262626;

    transition:.35s;

    color:#fff;

}

.team-social a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}



/*==================================================
CTA
==================================================*/

.cta{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:

    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url("../images/about/cta.jpg") center center/cover;

}

.cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:radial-gradient(circle at center,
    rgba(200,162,77,.12),
    transparent 70%);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;

}

.cta-content span{

    color:var(--gold);

    letter-spacing:4px;

    text-transform:uppercase;

}

.cta-content h2{

    margin:20px 0;

    font-size:54px;

    font-family:'Playfair Display',serif;

}

.cta-content p{

    color:#ddd;

    line-height:2;

    margin-bottom:35px;

}



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

@media(max-width:1200px){

.process::before{

display:none;

}

.process-grid{

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

}

.team-grid{

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

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

.team-grid{

grid-template-columns:1fr;

}

.team-image{

height:340px;

}

.cta-content h2{

font-size:38px;

}

.cta{

padding:90px 0;

}

}

@media(max-width:576px){

.team-content{

padding:25px;

}

.team-content h3{

font-size:24px;

}

.team-image{

height:300px;

}

.cta-content h2{

font-size:30px;

}

.cta-content p{

font-size:15px;

}

}

/*==================================================
YACHTS PAGE HERO
==================================================*/

.page-hero.yacht-hero{

    position:relative;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url("../images/yachts/banner.jpg") center center/cover no-repeat;

}

.page-hero.yacht-hero::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    left:-250px;
    top:-250px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.18),transparent 70%);

}

.page-hero.yacht-hero::after{

    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-250px;
    bottom:-250px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.10),transparent 70%);

}

.yacht-hero .page-content{

    position:relative;
    z-index:2;
    max-width:820px;

}

.yacht-hero .page-content span{

    color:var(--gold);
    letter-spacing:5px;
    text-transform:uppercase;
    font-weight:600;

}

.yacht-hero .page-content h1{

    font-size:72px;
    margin:20px 0;
    font-family:'Playfair Display',serif;

}

.yacht-hero .page-content p{

    color:#ddd;
    font-size:18px;
    line-height:1.9;

}



/*==================================================
FILTER
==================================================*/

.yacht-filter{

    margin-top:-70px;
    position:relative;
    z-index:5;

}

.filter-box{

    background:rgba(22,22,22,.95);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:35px;

    display:grid;

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

    gap:25px;

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

}

.filter-item{

    display:flex;

    flex-direction:column;

}

.filter-item label{

    color:var(--gold);

    margin-bottom:10px;

    font-weight:600;

}

.filter-item select{

    width:100%;

    padding:16px 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    background:#111;

    color:#fff;

    outline:none;

    transition:.35s;

}

.filter-item select:focus{

    border-color:var(--gold);

}

.filter-button{

    display:flex;

    align-items:flex-end;

}

.filter-button .btn-gold{

    width:100%;

}



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

.yachts-page{

    background:#111;

}

.yachts-page .section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.yachts-page .section-title span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

}

.yachts-page .section-title h2{

    font-size:52px;

    margin:18px 0;

    font-family:'Playfair Display',serif;

}

.yachts-page .section-title p{

    color:#cfcfcf;

    line-height:1.9;

}



/*==================================================
GRID
==================================================*/

.yacht-grid{

    display:grid;

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

    gap:35px;

}



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

@media(max-width:1200px){

.filter-box{

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

}

.yacht-grid{

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

}

}

@media(max-width:768px){

.yacht-hero .page-content h1{

font-size:46px;

}

.filter-box{

grid-template-columns:1fr;

padding:25px;

}

.yachts-page .section-title h2{

font-size:36px;

}

.yacht-grid{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.yacht-hero .page-content h1{

font-size:34px;

}

.yacht-hero .page-content p{

font-size:16px;

}

.filter-box{

padding:20px;

}

}

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

.yacht-card{

    position:relative;

    background:#1a1a1a;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.06);

    transition:.45s;

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

}

.yacht-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 35px 70px rgba(0,0,0,.55);

}

.yacht-image{

    position:relative;

    overflow:hidden;

    height:280px;

}

.yacht-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.yacht-card:hover .yacht-image img{

    transform:scale(1.08);

}



/*==================================================
BADGE
==================================================*/

.yacht-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:linear-gradient(135deg,#c8a24d,#f1d384);

    color:#111;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

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

}



/*==================================================
CONTENT
==================================================*/

.yacht-content{

    padding:30px;

}

.yacht-content h3{

    font-size:30px;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.yacht-content p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:25px;

}



/*==================================================
FEATURES
==================================================*/

.yacht-features{

    display:grid;

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

    gap:12px;

    margin-bottom:30px;

}

.yacht-features span{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    background:#222;

    padding:12px;

    border-radius:12px;

    color:#ddd;

    font-size:14px;

    transition:.35s;

}

.yacht-features span:hover{

    background:rgba(200,162,77,.15);

    color:#fff;

}

.yacht-features i{

    color:var(--gold);

}



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

.yacht-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

}

.price{

    display:flex;

    align-items:flex-end;

    gap:5px;

    font-size:34px;

    color:var(--gold);

    font-family:'Playfair Display',serif;

    font-weight:700;

}

.price small{

    font-size:14px;

    color:#bbb;

    margin-bottom:6px;

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

}



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

.yacht-footer .btn-gold{

    padding:12px 24px;

    font-size:14px;

}



/*==================================================
HOVER EFFECT
==================================================*/

.yacht-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:4px;

    background:linear-gradient(90deg,#c8a24d,#f4d98d);

    transition:.45s;

}

.yacht-card:hover::after{

    width:100%;

}



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

@media(max-width:992px){

.yacht-features{

grid-template-columns:1fr;

}

.yacht-footer{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.yacht-footer .btn-gold{

width:100%;

text-align:center;

}

}

@media(max-width:768px){

.yacht-image{

height:240px;

}

.yacht-content{

padding:25px;

}

.yacht-content h3{

font-size:26px;

}

.price{

font-size:28px;

}

}

@media(max-width:576px){

.yacht-image{

height:220px;

}

.yacht-content{

padding:20px;

}

.yacht-content h3{

font-size:22px;

}

.yacht-features span{

font-size:13px;

padding:10px;

}

.price{

font-size:24px;

}

}

/*==================================================
WHY YACHTS
==================================================*/

.why-yachts{

    background:#141414;
    position:relative;
    overflow:hidden;

}

.why-yachts::before{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    top:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.08),transparent 70%);

}

.why-yachts-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}

.why-yacht-card{

    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:45px 30px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;

}

.why-yacht-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#c8a24d,#f5d98b);
    transform:scaleX(0);
    transform-origin:left;
    transition:.45s;

}

.why-yacht-card:hover::before{

    transform:scaleX(1);

}

.why-yacht-card:hover{

    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.why-yacht-card i{

    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;

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

    border-radius:50%;

    background:rgba(200,162,77,.12);

    color:var(--gold);

    font-size:38px;

    transition:.35s;

}

.why-yacht-card:hover i{

    transform:rotate(8deg) scale(1.08);

}

.why-yacht-card h3{

    font-size:28px;
    margin-bottom:18px;
    font-family:'Playfair Display',serif;

}

.why-yacht-card p{

    color:#d0d0d0;
    line-height:1.9;

}


/*==================================================
CTA
==================================================*/

.cta{

    position:relative;
    overflow:hidden;

}

.cta::after{

    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(200,162,77,.12),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(200,162,77,.08),
    transparent 40%);

    pointer-events:none;

}

.cta-content{

    position:relative;
    z-index:2;

}

.cta-content h2{

    font-size:58px;
    line-height:1.25;
    margin:20px 0;

}

.cta-content p{

    max-width:700px;
    margin:0 auto 35px;
    color:#d5d5d5;
    line-height:2;

}


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

.btn-gold{

    position:relative;
    overflow:hidden;

}

.btn-gold::before{

    content:"";
    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    transform:skewX(-30deg);

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

    transition:.6s;

}

.btn-gold:hover::before{

    left:150%;

}


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

.yacht-card,
.why-yacht-card{

    will-change:transform;

}

.yacht-card:hover{

    transform:translateY(-12px) scale(1.01);

}

.why-yacht-card:hover{

    transform:translateY(-10px);

}


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

.yachts-page,
.why-yachts{

    padding:110px 0;

}


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

@media(max-width:1200px){

.why-yachts-grid{

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

}

}

@media(max-width:768px){

.why-yachts-grid{

grid-template-columns:1fr;

}

.why-yacht-card{

padding:35px 25px;

}

.cta-content h2{

font-size:38px;

}

}

@media(max-width:576px){

.why-yacht-card i{

width:70px;
height:70px;
font-size:30px;

}

.why-yacht-card h3{

font-size:24px;

}

.cta-content h2{

font-size:30px;

}

.cta-content p{

font-size:15px;

}

}

/*==================================================
YACHT DETAIL PAGE
==================================================*/

.yacht-detail-hero{

    position:relative;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("../images/yachts/detail/banner.jpg") center center/cover no-repeat;

}

.yacht-detail-hero::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    left:-220px;
    top:-220px;

    background:
    radial-gradient(rgba(200,162,77,.18),transparent 70%);

}

.yacht-detail-hero::after{

    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    right:-220px;
    bottom:-220px;

    background:
    radial-gradient(rgba(200,162,77,.10),transparent 70%);

}

.yacht-detail{

    background:#111;
    padding:110px 0;

}

.detail-grid{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:flex-start;

}

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

.detail-gallery{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.main-image{

    overflow:hidden;
    border-radius:24px;

    background:#1b1b1b;

}

.main-image img{

    width:100%;
    display:block;
    height:560px;
    object-fit:cover;
    transition:.7s;

}

.main-image:hover img{

    transform:scale(1.05);

}

.thumb-gallery{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;

}

.thumb-gallery img{

    width:100%;
    height:130px;
    object-fit:cover;

    border-radius:16px;

    cursor:pointer;

    transition:.35s;

    border:2px solid transparent;

}

.thumb-gallery img:hover{

    border-color:var(--gold);

    transform:translateY(-6px);

}

/*====================
SIDEBAR
====================*/

.detail-sidebar{

    position:sticky;
    top:110px;

}

.booking-card{

    background:#191919;

    border-radius:24px;

    padding:35px;

    border:1px solid rgba(255,255,255,.06);

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

}

.price-box{

    text-align:center;

    margin-bottom:30px;

}

.price-box span{

    color:#bfbfbf;

    display:block;

    margin-bottom:10px;

}

.price-box h2{

    color:var(--gold);

    font-size:52px;

    font-family:'Playfair Display',serif;

}

/*====================
QUICK INFO
====================*/

.quick-info{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:30px;

}

.quick-info li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 18px;

    border-radius:14px;

    background:#232323;

}

.quick-info li i{

    color:var(--gold);

    font-size:18px;

    margin-right:10px;

}

.quick-info li span{

    flex:1;

}

/*====================
BUTTONS
====================*/

.btn-full{

    width:100%;

    margin-bottom:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

.booking-note{

    margin-top:20px;

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#cfcfcf;

    font-size:14px;

    line-height:1.8;

}

.booking-note i{

    color:var(--gold);

    margin-top:3px;

}

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

@media(max-width:1200px){

.detail-grid{

grid-template-columns:1fr;

}

.detail-sidebar{

position:relative;

top:0;

}

}

@media(max-width:768px){

.main-image img{

height:380px;

}

.thumb-gallery{

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

}

.thumb-gallery img{

height:110px;

}

.booking-card{

padding:25px;

}

.price-box h2{

font-size:42px;

}

}

@media(max-width:576px){

.main-image img{

height:280px;

}

.thumb-gallery{

gap:10px;

}

.thumb-gallery img{

height:90px;

}

.price-box h2{

font-size:34px;

}

}

/*==================================================
YACHT INFORMATION
==================================================*/

.yacht-information{

    background:#151515;
    padding:110px 0;
    position:relative;
    overflow:hidden;

}

.yacht-information::before{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    right:-180px;
    top:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.08),transparent 70%);

}

.information-grid{

    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:70px;
    align-items:center;

}

.section-subtitle{

    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;

}

.information-left h2{

    font-size:52px;
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
    line-height:1.2;

}

.information-left p{

    color:#cfcfcf;
    line-height:2;
    margin-bottom:20px;

}

/*==================================================
SPEC GRID
==================================================*/

.spec-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.spec-card{

    background:#1d1d1d;
    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;
    padding:35px;
    text-align:center;
    transition:.35s;

}

.spec-card:hover{

    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.spec-card i{

    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:20px;

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

    border-radius:50%;

    background:rgba(200,162,77,.12);

    color:var(--gold);

    font-size:32px;

}

.spec-card h4{

    font-size:18px;
    margin-bottom:12px;
    color:#fff;

}

.spec-card span{

    color:#d4d4d4;
    font-size:17px;

}

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

.included-services{

    background:#111;
    padding:110px 0;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.service-box{

    background:#1b1b1b;
    border-radius:24px;
    padding:45px;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;

}

.service-box:hover{

    transform:translateY(-8px);

}

.service-box.included:hover{

    border-color:#3fb950;

}

.service-box.excluded:hover{

    border-color:#ff5b5b;

}

.service-box h3{

    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:30px;

    font-size:28px;

    font-family:'Playfair Display',serif;

}

.service-box.included h3 i{

    color:#39d353;

}

.service-box.excluded h3 i{

    color:#ff5b5b;

}

.service-box ul{

    list-style:none;
    padding:0;
    margin:0;

}

.service-box li{

    position:relative;
    padding:14px 0 14px 28px;
    border-bottom:1px solid rgba(255,255,255,.05);
    color:#d5d5d5;

}

.service-box li:last-child{

    border-bottom:none;

}

.service-box.included li::before{

    content:"✓";
    position:absolute;
    left:0;
    color:#39d353;
    font-weight:bold;

}

.service-box.excluded li::before{

    content:"✕";
    position:absolute;
    left:0;
    color:#ff5b5b;
    font-weight:bold;

}

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

@media(max-width:1200px){

.information-grid{

grid-template-columns:1fr;
gap:50px;

}

}

@media(max-width:992px){

.spec-grid{

grid-template-columns:1fr 1fr;

}

.services-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.information-left h2{

font-size:38px;

}

.spec-grid{

grid-template-columns:1fr;

}

.spec-card{

padding:28px;

}

.service-box{

padding:30px;

}

.service-box h3{

font-size:24px;

}

}

@media(max-width:576px){

.information-left h2{

font-size:30px;

}

.spec-card{

padding:24px;

}

.spec-card i{

width:60px;
height:60px;
font-size:26px;

}

.service-box{

padding:24px;

}

.service-box li{

font-size:15px;

}

}

/*==================================================
DAILY PROGRAM
==================================================*/

.daily-program{

    padding:110px 0;
    background:#151515;
    position:relative;

}

.timeline{

    position:relative;
    max-width:950px;
    margin:70px auto 0;

}

.timeline::before{

    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:2px;
    height:100%;
    background:rgba(200,162,77,.25);

}

.timeline-item{

    width:50%;
    position:relative;
    padding:0 50px 70px;

}

.timeline-item:nth-child(odd){

    left:0;
    text-align:right;

}

.timeline-item:nth-child(even){

    left:50%;

}

.timeline-time{

    display:inline-block;
    padding:10px 22px;
    background:linear-gradient(135deg,#c8a24d,#f5d98b);
    color:#111;
    border-radius:40px;
    font-weight:700;
    margin-bottom:20px;

}

.timeline-content{

    background:#1d1d1d;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.06);

}

.timeline-content h3{

    margin-bottom:15px;
    font-size:24px;
    font-family:'Playfair Display',serif;

}

.timeline-content p{

    color:#d2d2d2;
    line-height:1.8;

}



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

.detail-gallery-section{

    padding:110px 0;
    background:#111;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;

}

.gallery-grid img{

    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:22px;
    transition:.45s;
    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);
    box-shadow:0 25px 60px rgba(0,0,0,.4);

}



/*==================================================
RESERVATION
==================================================*/

.reservation-section{

    padding:110px 0;
    background:#181818;

}

.reservation-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.reservation-content h2{

    font-size:54px;
    margin:20px 0;
    font-family:'Playfair Display',serif;

}

.reservation-content p{

    color:#d5d5d5;
    line-height:2;

}

.reservation-form{

    background:#202020;
    border-radius:24px;
    padding:40px;
    border:1px solid rgba(255,255,255,.06);

}

.form-group{

    margin-bottom:20px;

}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;
    padding:16px 18px;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    color:#fff;
    outline:none;
    transition:.3s;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:var(--gold);

}

.reservation-form button{

    width:100%;

}



/*==================================================
FAQ
==================================================*/

.yacht-faq{

    padding:110px 0;
    background:#111;

}

.faq-wrapper{

    max-width:900px;
    margin:60px auto 0;

}

.faq-item{

    background:#1b1b1b;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.06);

}

.faq-question{

    width:100%;
    background:none;
    border:none;
    color:#fff;
    padding:24px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;

}

.faq-answer{

    display:none;
    padding:0 30px 25px;
    color:#d3d3d3;
    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}



/*==================================================
SIMILAR YACHTS
==================================================*/

.similar-yachts{

    padding:110px 0;
    background:#151515;

}



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

@media(max-width:992px){

.timeline::before{

left:20px;

}

.timeline-item{

width:100%;
left:0!important;
padding-left:70px;
padding-right:0;
text-align:left!important;

}

.gallery-grid{

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

}

.reservation-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

height:240px;

}

.timeline-content{

padding:24px;

}

.reservation-content h2{

font-size:38px;

}

.reservation-form{

padding:30px;

}

}

@media(max-width:576px){

.timeline-item{

padding-left:55px;

}

.timeline-time{

font-size:13px;

}

.timeline-content h3{

font-size:20px;

}

.reservation-content h2{

font-size:30px;

}

.faq-question{

font-size:16px;
padding:20px;

}

.faq-answer{

padding:0 20px 20px;

}

}

/*==================================================
FAQ HERO
==================================================*/

.faq-hero{

    position:relative;
    min-height:55vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("../images/faq/banner.jpg") center center/cover no-repeat;

}

.faq-hero::before{

    content:"";
    position:absolute;
    width:650px;
    height:650px;
    left:-220px;
    top:-220px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.16),transparent 70%);

}

.faq-hero::after{

    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-180px;
    bottom:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(200,162,77,.10),transparent 70%);

}

.faq-hero .page-content{

    position:relative;
    z-index:2;
    max-width:760px;

}

.faq-hero .page-content span{

    color:var(--gold);
    letter-spacing:5px;
    text-transform:uppercase;
    font-weight:600;

}

.faq-hero .page-content h1{

    font-size:68px;
    margin:20px 0;
    font-family:'Playfair Display',serif;

}

.faq-hero .page-content p{

    color:#d4d4d4;
    line-height:1.9;
    font-size:18px;

}



/*==================================================
SEARCH
==================================================*/

.faq-search-section{

    margin-top:-60px;
    position:relative;
    z-index:5;

}

.faq-search{

    max-width:850px;
    margin:auto;

    display:flex;
    align-items:center;
    gap:18px;

    background:rgba(24,24,24,.95);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:24px 30px;

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

}

.faq-search i{

    color:var(--gold);
    font-size:24px;

}

.faq-search input{

    flex:1;
    background:none;
    border:none;
    color:#fff;
    outline:none;
    font-size:17px;

}

.faq-search input::placeholder{

    color:#888;

}



/*==================================================
FAQ CATEGORIES
==================================================*/

.faq-categories{

    padding:100px 0;

    background:#111;

}

.category-grid{

    display:grid;

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

    gap:30px;

}

.category-card{

    background:#1b1b1b;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.06);

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.category-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(90deg,#c8a24d,#f5d98b);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.category-card:hover::before{

    transform:scaleX(1);

}

.category-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 25px 55px rgba(0,0,0,.35);

}

.category-card i{

    width:85px;
    height:85px;

    margin:auto;
    margin-bottom:25px;

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

    border-radius:50%;

    background:rgba(200,162,77,.12);

    color:var(--gold);

    font-size:34px;

}

.category-card h3{

    font-size:26px;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.category-card p{

    color:#cfcfcf;

    line-height:1.8;

}



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

@media(max-width:1200px){

.category-grid{

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

}

}

@media(max-width:768px){

.faq-hero .page-content h1{

font-size:44px;

}

.faq-search{

padding:18px 20px;

}

.category-grid{

grid-template-columns:1fr;

}

.category-card{

padding:30px;

}

}

@media(max-width:576px){

.faq-hero{

min-height:45vh;

}

.faq-hero .page-content h1{

font-size:34px;

}

.faq-search{

gap:12px;

}

.faq-search input{

font-size:15px;

}

.category-card i{

width:70px;
height:70px;
font-size:28px;

}

.category-card h3{

font-size:22px;

}

}

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

.faq-section{

    padding:110px 0;
    background:#151515;
    position:relative;
    overflow:hidden;

}

.faq-wrapper{

    max-width:950px;
    margin:auto;

}

.faq-item{

    background:#1d1d1d;
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
    margin-bottom:22px;
    overflow:hidden;
    transition:.35s;

}

.faq-item:hover{

    border-color:rgba(200,162,77,.45);
    transform:translateY(-3px);

}

.faq-item.active{

    border-color:var(--gold);
    box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.faq-question{

    width:100%;
    background:none;
    border:none;
    outline:none;
    cursor:pointer;

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

    padding:28px 35px;

    color:#fff;
    font-size:19px;
    font-weight:600;

    transition:.35s;

}

.faq-question:hover{

    color:var(--gold);

}

.faq-question i{

    color:var(--gold);
    font-size:20px;
    transition:.35s;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

.faq-answer{

    display:none;

    padding:0 35px 30px;

}

.faq-item.active .faq-answer{

    display:block;

    animation:fadeFAQ .35s ease;

}

.faq-answer p{

    color:#d2d2d2;
    line-height:1.9;

}

@keyframes fadeFAQ{

from{

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

}

to{

opacity:1;
transform:translateY(0);

}

}

/*==================================================
CONTACT BOXES
==================================================*/

.faq-contact{

    padding:110px 0;
    background:#111;

}

.contact-box-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;

}

.contact-box{

    background:#1b1b1b;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.06);
    transition:.4s;

}

.contact-box:hover{

    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.contact-box i{

    width:90px;
    height:90px;

    margin:auto;
    margin-bottom:25px;

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

    border-radius:50%;

    background:rgba(200,162,77,.12);

    color:var(--gold);

    font-size:36px;

}

.contact-box h3{

    font-size:28px;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;

}

.contact-box p{

    color:#cfcfcf;
    margin-bottom:25px;

}

.contact-box .btn-gold{

    width:100%;

}

/*==================================================
FAQ DECORATION
==================================================*/

.faq-section::before{

    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    top:-150px;
    right:-150px;

    background:
    radial-gradient(rgba(200,162,77,.08),transparent 70%);

}

.faq-contact::after{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    left:-120px;
    bottom:-120px;
    border-radius:50%;

    background:
    radial-gradient(rgba(200,162,77,.05),transparent 70%);

}

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

@media(max-width:1200px){

.contact-box-grid{

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

}

}

@media(max-width:768px){

.faq-question{

padding:22px;
font-size:17px;

}

.faq-answer{

padding:0 22px 22px;

}

.contact-box-grid{

grid-template-columns:1fr;

}

.contact-box{

padding:35px 25px;

}

.contact-box h3{

font-size:24px;

}

}

@media(max-width:576px){

.faq-question{

font-size:16px;

}

.contact-box i{

width:70px;
height:70px;
font-size:28px;

}

.contact-box h3{

font-size:22px;

}

.contact-box{

padding:28px 20px;

}

}

/*==================================================
RESERVATION PAGE
==================================================*/

.reservation-hero{

    position:relative;
    min-height:55vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.78)),
    url("../images/reservation/banner.jpg") center center/cover no-repeat;

}

.reservation-hero::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    left:-220px;
    top:-220px;
    border-radius:50%;

    background:
    radial-gradient(rgba(200,162,77,.15),transparent 70%);

}

.reservation-hero::after{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-150px;
    bottom:-150px;
    border-radius:50%;

    background:
    radial-gradient(rgba(200,162,77,.08),transparent 70%);

}

.reservation-hero .page-content{

    position:relative;
    z-index:2;
    max-width:760px;

}

.reservation-hero h1{

    font-size:68px;
    margin:18px 0;
    font-family:'Playfair Display',serif;

}

.reservation-hero p{

    color:#d2d2d2;
    line-height:1.9;
    font-size:18px;

}

/*==================================================
INFO BOXES
==================================================*/

.reservation-info{

    padding:100px 0;
    background:#111;

}

.reservation-info-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.info-card{

    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    transition:.35s;

}

.info-card:hover{

    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.info-card i{

    width:85px;
    height:85px;
    margin:auto auto 25px;

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

    border-radius:50%;

    background:rgba(200,162,77,.12);

    color:var(--gold);

    font-size:34px;

}

.info-card h3{

    font-size:26px;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;

}

.info-card p{

    color:#cfcfcf;
    line-height:1.8;

}

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

.reservation-page{

    padding:110px 0;
    background:#151515;

}

.reservation-wrapper{

    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:flex-start;

}

.reservation-left{

    position:sticky;
    top:110px;

}

.reservation-left span{

    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;

}

.reservation-left h2{

    margin:20px 0;
    font-size:48px;
    line-height:1.2;
    font-family:'Playfair Display',serif;

}

.reservation-left p{

    color:#cfcfcf;
    line-height:2;

}

.reservation-form-page{

    background:#1b1b1b;
    padding:45px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.06);
    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.form-row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-bottom:22px;

}

.reservation-form-page .form-group{

    margin-bottom:22px;

}

.reservation-form-page label{

    display:block;
    margin-bottom:10px;
    color:#fff;
    font-weight:500;

}

.reservation-form-page input,
.reservation-form-page select,
.reservation-form-page textarea{

    width:100%;
    padding:16px 18px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    color:#fff;

    outline:none;

    transition:.3s;

}

.reservation-form-page input:focus,
.reservation-form-page select:focus,
.reservation-form-page textarea:focus{

    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(200,162,77,.12);

}

.reservation-form-page textarea{

    resize:vertical;
    min-height:170px;

}

/*==================================================
EXTRAS (CHECKBOX CARDS)
==================================================*/

.extras-title{
    margin:30px 0 18px;
    font-size:22px;
    color:#fff;
    font-family:'Playfair Display',serif;
}

.extras-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-bottom:25px;
}

.extra-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:18px;
    background:#111;
    border:1px solid rgba(255,255,255,.06);
    border-radius:16px;
    cursor:pointer;

    transition:.3s;
    text-align:center;
    position:relative;
}

.extra-card i{
    font-size:24px;
    color:var(--gold);
}

.extra-card span{
    color:#ddd;
    font-size:14px;
}

.extra-card input{
    position:absolute;
    opacity:0;
}

.extra-card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
    box-shadow:0 15px 35px rgba(0,0,0,.3);
}

/* checked state */
.extra-card input:checked ~ span,
.extra-card input:checked ~ i{
    color:#fff;
}

.extra-card input:checked + i{
    color:var(--gold);
}


/*==================================================
KVKK CHECKBOX
==================================================*/

.checkbox-area{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:25px 0;
    color:#cfcfcf;
    font-size:14px;
    line-height:1.6;
}

.checkbox-area input{
    margin-top:4px;
    accent-color:var(--gold);
}


/*==================================================
RESERVATION BENEFITS SECTION
==================================================*/

.reservation-benefits{
    padding:110px 0;
    background:#111;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
}

.reservation-summary{
    background:#1b1b1b;
    padding:40px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.06);
    transition:.3s;
}

.reservation-summary:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}

.reservation-summary span{
    color:var(--gold);
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:3px;
}

.reservation-summary h2{
    margin:15px 0 25px;
    font-size:32px;
    font-family:'Playfair Display',serif;
}

.reservation-summary ul{
    list-style:none;
    padding:0;
    margin:0;
}

.reservation-summary ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#dcdcdc;
}

.reservation-summary ul li i{
    color:var(--gold);
    font-size:18px;
}


/*==================================================
CTA (CALL TO ACTION)
==================================================*/

.cta{
    padding:100px 0;
    background:
    linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.85)),
    url("../images/cta.jpg") center center/cover no-repeat;
    text-align:center;
}

.cta-content span{
    color:var(--gold);
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;
}

.cta-content h2{
    font-size:44px;
    margin:20px 0;
    font-family:'Playfair Display',serif;
}

.cta-content p{
    color:#d0d0d0;
    max-width:600px;
    margin:0 auto 30px;
    line-height:1.8;
}


/*==================================================
BUTTON FULL WIDTH
==================================================*/

.btn-full{
    width:100%;
    display:flex;
    justify-content:center;
    gap:10px;
}


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

@media (max-width: 1024px){

    .reservation-wrapper{
        grid-template-columns:1fr;
    }

    .reservation-left{
        position:relative;
        top:0;
        margin-bottom:30px;
    }

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

    .reservation-info-grid{
        grid-template-columns:1fr;
    }

    .extras-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


@media (max-width: 768px){

    .reservation-hero h1{
        font-size:42px;
    }

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

    .form-row{
        grid-template-columns:1fr;
    }

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

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