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

body{

font-family:Poppins,sans-serif;
background:#0f0f0f;
color:white;

}


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

header{

position:fixed;

top:0;
left:0;

width:100%;

display:flex;

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

padding:18px 60px;

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

backdrop-filter:blur(10px);

-webkit-backdrop-filter:blur(10px);

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

z-index:1000;
transition:.3s;
}

.logo-area{

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

}

.logo{

width:42px;
height:42px;
border-radius:8px;

}

.logo-area h2{

font-family:"Cormorant Garamond",serif;

font-size:28px;

font-weight:600;

letter-spacing:1px;

}

nav a{

color:white;

text-decoration:none;

font-size:15px;

letter-spacing:1px;

text-transform:uppercase;

transition:.3s;

}

nav a:hover{

color:#D4AF37;

}


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

.join-hero{

min-height:72vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:120px 30px 40px;

max-width:900px;

margin:auto;

}

.join-tag{

color:#D4AF37;

font-size:18px;

letter-spacing:5px;

margin-bottom:20px;

text-transform:uppercase;

}

.join-hero h1{

font-family:"Cormorant Garamond",serif;

font-size:72px;

font-weight:600;

line-height:1.05;

margin-bottom:25px;

}

.join-hero h3{

font-family:"Cormorant Garamond",serif;

font-size:34px;

font-style:italic;

font-weight:300;

color:#D4AF37;

margin-bottom:30px;

}

.join-description{

font-size:20px;

line-height:1.8;

color:#d6d6d6;

margin-bottom:50px;

}


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

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border:1px solid #D4AF37;

border-radius:4px;

text-decoration:none;

font-size:17px;

letter-spacing:1px;

transition:.35s;

}

.btn.gold{

background:#D4AF37;

color:#111;

font-weight:600;

border:none;

}

.btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(212,175,55,.25);

}


/*=====================
   HIGHLIGHTS
======================*/

.highlights{

    max-width:1200px;

    margin:0 auto;

    padding:90px 40px;

}

.highlights h2{

    text-align:center;

    font-family:"Cormorant Garamond",serif;

    font-size:42px;

    margin-bottom:55px;

}

.highlight-grid{

    display:grid;

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

    gap:28px;

}

.highlight-card{

    background:#171717;

    border:1px solid rgba(212,175,55,.12);

    border-radius:20px;

    padding:40px 28px;

    text-align:center;

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;

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

}

.icon{

    font-size:42px;

    margin-bottom:18px;

}

.highlight-card h3{

    font-family:"Cormorant Garamond",serif;

    font-size:28px;

    margin-bottom:16px;

}

.highlight-card p{

    color:#cfcfcf;

    line-height:1.8;

}
/*======================
      RESERVE
=======================*/

.reserve{

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-15px);

transition:
max-height 0.9s cubic-bezier(.22,1,.36,1),
opacity .45s ease,
transform .7s cubic-bezier(.22,1,.36,1);

}

.reserve-card{
   width:100%;
   max-width:540px;
   margin:0 auto;
   padding:30px 32px;
   background:#171717;
   border-radius:20px;
   border:1px solid rgba(212,175,55,.12);
   box-shadow:0 18px 45px rgba(0,0,0,.45);
}

.reserve-tag{

    color:#D4AF37;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.reserve h2{

    font-family:"Cormorant Garamond",serif;

    font-size:48px;

    margin-bottom:18px;

}

.reserve-text{

    color:#cfcfcf;

    margin-bottom:40px;

    line-height:1.8;

}

.reserve form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.reserve input{
    width:100%;
    height:54px;
    background:#101010;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    padding:0 18px;
    color:white;
    font-size:16px;
    font-family:Poppins,sans-serif;
}

.reserve input:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 10px rgba(212,175,55,.15);
}


/* Question label */

.question-label{

    color:#D4AF37;
    font-size:16px;
    font-weight:500;
    margin-top:4px;
    margin-bottom:-2px;

}

.question-label span{
    color:#bdbdbd;
    font-size:14px;
    font-style:italic;
}


/* Comments box */

.reserve textarea{
    width: 100%;
    min-height: 78px;
    max-height: 100px;
   
    background:#101010;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;

    padding:12px 15px;
    color:white;
    font-size:15px;
    font-family:Poppins,sans-serif;
    resize:vertical;

}

.reserve textarea::placeholder{

    color:#8f8f8f;

}

.reserve textarea:focus{

   outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 10px rgba(212,175,55,.15);

}


/* Button */

.reserve form > button{
    margin-top:20px;
    cursor:pointer;
    width:180px;
    align-self:center;
}

.reserve.show{
    max-height:900px;
    opacity:1;
    transform:translateY(0);
}


/* ==========================
   PHONE INPUT — CLEAN VERSION
   ========================== */

.iti {
    width: 100%;
}

/* Keep the phone input identical to other inputs */
.iti input {
    width: 100%;
    height: 54px !important;
    padding-left: 95px !important;
    padding-right: 18px !important;
    line-height: normal !important;
    background: #101010 !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 10px !important;
    font-family: Poppins, sans-serif;
    font-size: 16px;
}

/* Focus */
.iti input:focus {
    outline: none;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 10px rgba(212,175,55,.15);
}
.iti__country-container {
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
}
.iti__selected-country {
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
    
}
.iti__selected-country-primary {
    display: flex !important;
    align-items: center !important;
  
}
.iti__country-list {
    background: #171717 !important;
    color: #ffffff !important;

    border: 1px solid rgba(212,175,55,.25);

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

.iti__country {
    color: #ffffff !important;
    background: #171717 !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: #2a2a2a !important;
    color: #D4AF37 !important;
}

.iti__country-name {
    color: #ffffff !important;
}

.iti__dial-code {
    color: #bdbdbd !important;
}


.payment-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-35px);

    transition:
        max-height 1s cubic-bezier(.22,1,.36,1),
        opacity .6s ease,
        transform .8s cubic-bezier(.22,1,.36,1);
}
.payment-section.show {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
}
/* ================= MOBILE ================= */

@media (max-width: 700px) {

    /* HEADER */

    header {
        padding: 12px 18px;
    }

    .logo-area {
        gap: 8px;
    }

    .logo {
        width: 34px;
        height: 34px;
    }

    .logo-area h2 {
        font-size: 22px;
    }

    nav a {
        font-size: 13px;
    }


    /* ================= JOIN HERO ================= */

    .join-hero {
        min-height: auto;

        padding: 115px 22px 60px;

        text-align: center;
    }

    .join-tag {
        font-size: 12px;

        letter-spacing: 3px;

        margin-bottom: 18px;
    }

    .join-hero h1 {
        font-size: 48px;

        line-height: 1.05;

        margin-bottom: 20px;
    }

    .join-hero h3 {
        font-size: 20px;

        line-height: 1.4;

        margin-bottom: 18px;
    }

    .join-description {
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 30px;
    }


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

    .btn {
        min-height: 50px;

        padding: 13px 24px;

        font-size: 14px;
    }

    #reserveBtn {
        width: auto;

        max-width: 100%;
    }


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

    .reserve {
        padding: 60px 20px 80px;
    }

    .reserve-card {
        width: 100%;

        padding: 30px 22px;
    }

    .reserve-card h2 {
        font-size: 38px;

        line-height: 1.1;

        margin-bottom: 15px;
    }

    .reserve-text {
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 25px;
    }


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

    #bookingForm {
        width: 100%;
    }

    #bookingForm input,
    #bookingForm textarea {
        width: 100%;

        font-size: 15px;

        padding: 14px 15px;

        border-radius: 8px;
    }

    #bookingForm input {
        min-height: 50px;
    }

    #bookingForm textarea {
        min-height: 110px;

        line-height: 1.6;
    }

    .question-label {
        font-size: 13px;

        line-height: 1.5;

        margin-top: 20px;

        margin-bottom: 8px;
    }

    .question-label span {
        font-size: 11px;
    }


    /* ================= PHONE INPUT ================= */

    .iti {
        width: 100%;
    }

    .iti input {
        width: 100% !important;
    }


    /* CONTINUE BUTTON */

    #bookingForm .btn {
        width: 100%;

        margin-top: 10px;
    }


    /* ================= HIGHLIGHTS ================= */

    .highlights {
        padding: 65px 20px 80px;
    }

    .highlights h2 {
        font-size: 42px;

        line-height: 1.05;

        margin-bottom: 35px;

        text-align: center;
    }

    .highlight-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .highlight-card {
        padding: 25px 22px;

        text-align: center;
    }

    .highlight-card .icon {
        font-size: 32px;

        margin-bottom: 12px;
    }

    .highlight-card h3 {
        font-size: 22px;

        margin-bottom: 8px;
    }

    .highlight-card p {
        font-size: 14px;

        line-height: 1.7;
    }

}
