/* GLOBAL */
body {
   font-family: 'Poppins', sans-serif;
}

/* HEADINGS (LUXURY LOOK) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}




/* ==========================
   LUXURY CTA SECTION
========================== */

.tour-cta{
    padding:100px 0;
    background:#f8f9fb;
}

.cta-box{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    padding:80px 60px;
    border-radius:30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.cta-box::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-150px;
    right:-120px;
}

.cta-box::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(193,154,107,.15);
    bottom:-120px;
    left:-80px;
}

.cta-badge{
    display:inline-block;
    background:#c19a6b;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.cta-box h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.cta-box p{
    color:#d1d5db;
    max-width:700px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
    position:relative;
    z-index:2;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

.cta-btn-primary{
    background:#c19a6b;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius: 44px;
    font-weight:600;
    transition:.3s;
}

.cta-btn-primary:hover{
    background:#d4a76f;
    color:#fff;
    transform:translateY(-3px);
}

.cta-btn-outline{
    border:2px solid rgba(255,255,255,.2);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:44px;
    font-weight:600;
    transition:.3s;
}

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

section.destination-cta {
    margin-top: 40px;
    margin-bottom: 40px;
}


@media(max-width:768px){

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:34px;
    }

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

}


/* ==========================
   LUXURY TOUR POPUP
========================== */
.luxury-popup{
    border:none;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    max-width:520px;
    margin:auto;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.popup-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:10;
    filter: brightness(0) invert(1);
    opacity:1;
}

.popup-close:hover{
    opacity:.8;
}

.popup-header{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    text-align:center;
    padding:35px 25px;
    color:#fff;
}

.popup-badge{
    display:inline-block;
    background:#c19a6b;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.popup-header h3{
    font-size:32px;
    margin-bottom:10px;
    font-weight:700;
}

.popup-header p{
    color:#d1d5db;
    margin:0;
}

.popup-body{
    padding:25px;
}

.popup-body .form-control,
.popup-body .form-select{
    height:52px;
    border-radius:12px;
    border:1px solid #ddd;
}

.popup-body textarea{
    height:100px !important;
}

.popup-btn{
    width:100%;
    border:none;
    background:#c19a6b;
    color:#fff;
    padding:14px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.popup-btn:hover{
    background:#d4a76f;
}

@media(max-width:576px){

    .popup-header{
        padding:30px 20px;
    }

    .popup-header h3{
        font-size:26px;
    }

    .popup-body{
        padding:20px;
    }

}   