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

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

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#08131f;
color:white;
}

/* ================================= */
/* TOP BAR */
/* ================================= */

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 70px;
background:linear-gradient(to right,#061421,#0b2236);
color:#7fe7ff;
font-size:18px;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.topbar i{
color:#7fe7ff;
transition:0.3s;
}

.topbar i:hover{
color:#ffffff;
transform:translateY(-2px);
}

/* ================================= */
/* NAVBAR */
/* ================================= */

nav{
    position:sticky;
    top:0;
    z-index:1000;

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

    padding:18px 70px;

    background:rgba(6,20,33,0.78);
    backdrop-filter:blur(14px);

    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

/* LEFT SIDE LOGO AREA */
.logo-area{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}

.logo-area img{
    height:90px;
    transition:0.3s;
}

.logo-area img:hover{
    transform:scale(1.05);
}

/* LOGO TEXT */

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-text h1{
    font-size:34px;
    font-weight:800;
    margin:0;
    color:white;

    background:linear-gradient(
        to right,
        #ffffff,
        #8eefff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo-text p{
    margin-top:6px;
    font-size:10px;
    letter-spacing:2px;
    color:#7fe7ff;
    font-weight:600;
}

/* RIGHT SIDE NAV LINKS */

nav ul{
    display:flex;
    flex-direction:row;   /* force horizontal */
    align-items:center;
    list-style:none;      /* remove bullets */
    gap:35px;
    margin:0;
    padding:0;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#ffffff;
    font-size:20px;
    font-weight:600;
    position:relative;
    transition:0.3s;
}

/* animated underline */

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#6ce8ff;
    transition:0.3s;
}

nav ul li a:hover{
    color:#6ce8ff;
}

nav ul li a:hover::after{
    width:100%;
}

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

.hero{
height:88vh;
background:
linear-gradient(
rgba(2,12,22,0.55),
rgba(2,12,22,0.65)
),
url('assets/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.overlay h1{
color:white;
font-size:64px;
font-weight:800;
max-width:1100px;
line-height:1.18;
text-shadow:0 8px 25px rgba(0,0,0,0.35);
animation:fadeUp 1.2s ease;
}

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

.hero-btn{
display:inline-block;
margin-top:45px;
padding:22px 60px;
border-radius:60px;
background:rgba(92,223,255,0.15);
border:1px solid rgba(255,255,255,0.18);
backdrop-filter:blur(12px);
color:white;
text-decoration:none;
font-size:26px;
font-weight:600;
box-shadow:0 0 20px rgba(0,183,255,0.18);
transition:0.35s;
}

.hero-btn:hover{
transform:translateY(-4px) scale(1.03);
background:linear-gradient(135deg,#08bfff,#00d7ff);
box-shadow:0 0 35px rgba(0,212,255,0.45);
}

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

.services{
width:100%;
display:flex;
justify-content:center;
align-items:center;
gap:24px;
padding:60px 6%;
background:linear-gradient(to bottom,#08131f,#0d1f30);
flex-wrap:wrap;
}

.service-card{
width:260px;
min-height:190px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
border-radius:18px;
box-shadow:0 8px 30px rgba(0,0,0,0.22);
text-align:center;
padding:28px 20px;
transition:all 0.35s ease;
position:relative;
overflow:hidden;
cursor:pointer;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.service-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:0%;
height:4px;
background:linear-gradient(to right,#18a6ff,#0076d8);
transition:0.4s ease;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

.service-card:hover::before{
width:100%;
}

.icon{
font-size:32px;
margin-bottom:14px;
transition:0.3s;
}

.service-card:hover .icon{
transform:scale(1.15);
}

.service-card h3{
font-size:22px;
color:white;
margin-bottom:10px;
font-weight:700;
}

.service-card p{
font-size:15px;
color:#b9d8ec;
line-height:1.5;
max-width:220px;
}

.service-card:hover h3{
color:#6ce8ff;
}

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

.destination-section{
    width:100%;
    max-width:1400px;

    margin:0 auto;

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

    gap:70px;

    padding:100px 60px;

    background:
    linear-gradient(
    to bottom,
    #0d1f30,
    #08131f
    );
}

/* LEFT SIDE */

.destination-gallery{

    width:50%;

    display:grid;

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

    gap:25px;
}

.gallery-item{

    height:230px;

    overflow:hidden;

    border-radius:20px;

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

    transition:.4s ease;
}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s ease;
}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,191,255,.25);
}

.gallery-item:hover img{

    transform:
    scale(1.12);

    filter:
    brightness(1.08)
    saturate(1.15);
}

/* RIGHT SIDE */

.destination-content{

    width:45%;
    max-width:520px;
}

.destination-content h2{

    font-size:52px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:30px;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #d9f6ff,
    #6ce8ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    letter-spacing:-1px;
}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:12px;

    padding:4px 0;

    transition:.35s ease;

    cursor:pointer;

    border-left:2px solid transparent;
padding-left:8px;
}

.feature-item p{

    color:#d5e7f7;

    font-size:16px;

    line-height:1.45;

    margin:0;

    transition:.35s ease;
}

.bullet{

    width:12px;
    height:12px;

    border-radius:50%;

    background:transparent;

    border:2px solid #ff5a5a;

    margin-top:6px;

    flex-shrink:0;

    transition:.35s ease;

    box-shadow:
    0 0 12px rgba(255,90,90,.25);
}

.feature-item:hover{
    transform:translateX(8px);
    border-left:2px solid #6ce8ff;
}

.feature-item:hover p{

    color:#6ce8ff;
}

.feature-item:hover .bullet{

    background:#ff5a5a;

    transform:scale(1.25);

    box-shadow:
    0 0 25px rgba(255,90,90,.8);
}

.destination-button{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:25px;

    padding:15px 30px;

    border-radius:60px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    color:white;

    background:
    linear-gradient(
    135deg,
    rgba(10,191,255,.18),
    rgba(108,232,255,.12)
    );

    border:1px solid rgba(108,232,255,.35);

    backdrop-filter:blur(20px);

    transition:.4s ease;

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

.destination-button:hover{

    transform:
    translateY(-5px)
    scale(1.03);

    color:white;

    background:
    linear-gradient(
    135deg,
    #08bfff,
    #00d7ff
    );

    box-shadow:
    0 0 35px rgba(0,215,255,.45),
    0 20px 40px rgba(0,0,0,.35);
}



/* ================================= */
/* PREMIUM BOOKING PAGE */
/* ================================= */

.form-page{
width:100%;
min-height:100vh;

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

padding:120px 7%;

background:
linear-gradient(
rgba(3,12,22,0.82),
rgba(3,12,22,0.88)
),
url('assets/book-bg.jpg');

background-size:cover;
background-position:center;
background-attachment:scroll;

position:relative;
overflow:hidden;
}

/* SOFT GLOW */

.form-page::before{
content:'';
position:absolute;
inset:0;

background:
radial-gradient(
circle at top right,
rgba(108,232,255,0.10),
transparent 35%
);

pointer-events:none;
}

/* FORM CONTAINER */

.form-page form{
width:100%;
max-width:720px;

background:rgba(255,255,255,0.08);

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,0.10);

border-radius:32px;

padding:50px 45px;

box-shadow:
0 20px 45px rgba(0,0,0,0.30);

position:relative;
z-index:2;

animation:fadeUp 1s ease;
}

/* TITLE */

.form-page h1{
position:absolute;
top:70px;

font-size:60px;
font-weight:800;

color:white;

text-shadow:
0 10px 25px rgba(0,0,0,0.25);

z-index:2;
}

/* INPUTS */

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

width:100%;

padding:20px 22px;

margin-bottom:22px;

border-radius:18px;

border:1px solid rgba(255,255,255,0.12);

background:rgba(255,255,255,0.07);

color:white;

font-size:17px;

outline:none;

transition:0.35s ease;

backdrop-filter:blur(10px);
}

/* PLACEHOLDER */

.form-page input::placeholder,
.form-page textarea::placeholder{
color:#c6dff0;
}

/* SELECT */

.form-page select{
cursor:pointer;
}

.form-page select option{
background:#08131f;
color:white;
}

/* INPUT HOVER */

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

border:1px solid #6ce8ff;

box-shadow:
0 0 18px rgba(108,232,255,0.22);

transform:translateY(-2px);
}

/* 2 COLUMN LAYOUT */

.form-row{
display:flex;
gap:18px;
}

.form-row input{
margin-bottom:22px;
}

/* CHECKBOX AREA */

.checkbox-group{
display:flex;
gap:25px;
flex-wrap:wrap;

margin-top:5px;
margin-bottom:28px;
}

/* CHECKBOX LABEL */

.checkbox-label{
display:flex;
align-items:center;
gap:12px;

font-size:17px;
color:white;

cursor:pointer;

background:rgba(255,255,255,0.06);

padding:14px 20px;

border-radius:14px;

border:1px solid rgba(255,255,255,0.08);

transition:0.3s ease;
}

.checkbox-label:hover{
background:rgba(108,232,255,0.10);

transform:translateY(-3px);
}

/* CHECKBOX */

.checkbox-label input{
width:18px;
height:18px;
margin:0;
cursor:pointer;
}

/* BUTTON */

.form-page button{
width:100%;

padding:22px;

border:none;
border-radius:60px;

background:
linear-gradient(
135deg,
#08bfff,
#00d7ff
);

color:white;

font-size:22px;
font-weight:700;

cursor:pointer;

transition:0.35s ease;

box-shadow:
0 0 25px rgba(0,212,255,0.25);
}

/* BUTTON HOVER */

.form-page button:hover{
transform:translateY(-4px) scale(1.02);

box-shadow:
0 0 40px rgba(0,212,255,0.45);
}

/* RESPONSIVE */

@media(max-width:768px){

.form-page{
padding:120px 20px;
}

.form-page h1{
font-size:58px;
font-weight:800;

color:white;

text-align:center;

margin-bottom:35px;

text-shadow:
0 10px 25px rgba(0,0,0,0.25);

position:relative;
z-index:2;
}

.form-page form{
padding:35px 25px;
}

.form-row{
flex-direction:column;
gap:0;
}

}

.booking-subtitle{
font-size:18px;
color:#c6dff0;
margin-bottom:35px;
text-align:center;
line-height:1.7;
}

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

footer{
background:#061421;
color:white;
text-align:center;
padding:40px;
margin-top:50px;
}

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

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

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

.testimonial-section{
    width:100%;
    padding:90px 6%;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(8,25,45,0.82),
        rgba(8,25,45,0.88)
    ),
    url('assets/japan-bg.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:scroll;
}

/* SOFT OVERLAY */

.testimonial-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(
        circle at top right,
        rgba(255,255,255,0.08),
        transparent 30%
    );
    pointer-events:none;
}

/* HEADER */

.testimonial-header{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.testimonial-header h2{
    font-size:52px;
    color:white;
    margin-bottom:14px;
    font-weight:800;
    letter-spacing:-1px;
}

.testimonial-header p{
    font-size:18px;
    color:rgba(255,255,255,0.82);
}

/* CONTAINER */

.testimonial-container{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:24px;
    flex-wrap:nowrap;
    position:relative;
    z-index:2;
}

/* CARD */

.testimonial-card{
    flex:1;
    max-width:360px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.12);

    border-radius:26px;
    padding:32px 26px;
    text-align:center;

    transition:0.45s ease;
    position:relative;
    overflow:hidden;
}

/* GLOW EFFECT */

.testimonial-card::before{
    content:'';
    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(255,255,255,0.12),
        transparent
    );

    border-radius:50%;

    top:-70px;
    right:-70px;

    transition:0.4s ease;
}

/* HOVER */

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.22);
    background:rgba(255,255,255,0.14);
}

.testimonial-card:hover::before{
    transform:scale(1.2);
}

/* IMAGE */

.testimonial-card img{
    width:88px;
    height:88px;
    border-radius:50%;
    object-fit:cover;

    margin-bottom:18px;

    border:4px solid rgba(255,255,255,0.22);

    transition:0.4s ease;

    box-shadow:0 8px 18px rgba(0,0,0,0.25);
}

.testimonial-card:hover img{
    transform:scale(1.08);
}

/* NAME */

.testimonial-card h3{
    font-size:25px;
    color:white;
    margin-bottom:14px;
    font-weight:700;
}

/* REVIEW TEXT */

.testimonial-card p{
    font-size:16px;
    line-height:1.7;
    color:rgba(255,255,255,0.92);
    margin-bottom:20px;
}

/* STARS */

.stars{
    font-size:22px;
    color:#ffd700;
    letter-spacing:3px;
}

/* BUTTON AREA */

.testimonial-button-area{
    width:100%;
    text-align:center;
    margin-top:45px;
    position:relative;
    z-index:2;
}

/* BUTTON */

.review-btn{
    display:inline-block;
    padding:18px 42px;

    border-radius:60px;

    background:rgba(92,223,255,0.15);
    border:1px solid rgba(255,255,255,0.18);

    backdrop-filter:blur(12px);

    color:white;
    text-decoration:none;

    font-size:20px;
    font-weight:600;

    transition:0.35s ease;

    box-shadow:
    0 0 20px rgba(0,183,255,0.18);
}

/* BUTTON HOVER */

.review-btn:hover{
    transform:translateY(-4px) scale(1.03);

    background:
    linear-gradient(
        135deg,
        #08bfff,
        #00d7ff
    );

    box-shadow:
    0 0 35px rgba(0,212,255,0.45);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .testimonial-container{
        flex-wrap:wrap;
    }

    .testimonial-card{
        max-width:420px;
    }

}

@media(max-width:768px){

    .testimonial-header h2{
        font-size:38px;
    }

    .testimonial-card{
        width:100%;
    }

}

/* ================================= */
/* REVIEW PAGE */
/* ================================= */

.review-page{
    width:100%;
    min-height:100vh;
    background:linear-gradient(
        to bottom,
        #08131f,
        #0d1f30
    );
    padding:90px 7%;
}

.review-page h1{
    text-align:center;
    font-size:58px;
    color:white;
    margin-bottom:70px;
    font-weight:800;
}

/* ================================= */
/* REVIEW INTRO */
/* ================================= */

.review-intro{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px auto;
}

.review-intro h1{
    font-size:52px;
    color:white;
    line-height:1.2;
    margin-bottom:18px;
}

.review-intro p{
    font-size:20px;
    color:#c6dff0;
    line-height:1.7;
}

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

.review-cta{
    margin-top:90px;
    text-align:center;
    padding:60px 40px;

    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border-radius:24px;
}

.review-cta h2{
    font-size:42px;
    color:white;
    margin-bottom:20px;
    line-height:1.3;
}

.review-cta p{
    font-size:19px;
    color:#c6dff0;
    line-height:1.7;
}

.contact-text{
    margin-top:25px;
    font-weight:700;
    color:white;
}

.contact-links{
    margin-top:18px;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.contact-links a{
    color:#6ce8ff;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.contact-links a:hover{
    color:white;
}

/* GRID */

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/* REVIEW CARD */

.review-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.10);

    padding:40px 30px;
    border-radius:24px;
    text-align:center;

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

    transition:0.35s ease;

    min-height:420px;   /* makes all boxes equal */
    
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.review-box:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

/* IMAGE */

.review-box img{
    width:95px;
    height:95px;
    border-radius:50%;
    object-fit:cover;

    margin:0 auto 18px auto;

    border:3px solid rgba(255,255,255,0.15);

    display:block;
}

/* NAME */

.review-box h3{
    font-size:28px;
    color:white;
    margin-bottom:18px;
}

/* TEXT */

.review-box p{
    font-size:18px;
    line-height:1.7;
    color:#c6dff0;
    margin-bottom:22px;
}

/* STARS */

.review-box .stars{
    font-size:22px;
    color:#ffd700;
    letter-spacing:3px;
}

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

.about-hero{
    width:100%;
    min-height:85vh;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:70px;

    padding:90px 8%;

    background:
    linear-gradient(
        to right,
        #08131f,
        #0d1f30
    );
}

/* LEFT SIDE */

.about-left{
    flex:1;
    max-width:650px;
}

/* small tag */

.about-tag{
    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(108,232,255,0.08);
    border:1px solid rgba(108,232,255,0.15);

    color:#6ce8ff;
    font-size:16px;
    margin-bottom:25px;
}

/* title */

.about-left h1{
    font-size:68px;
    color:white;
    font-weight:800;
    margin-bottom:28px;

    line-height:1.1;

    animation:glowText 3s infinite alternate;
}

/* paragraphs */

.about-left p{
    font-size:22px;
    line-height:1.8;
    color:#c6dff0;
    margin-bottom:22px;
}

/* highlight boxes */

.about-highlights{
    display:flex;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;
}

.highlight-box{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    padding:22px 28px;
    border-radius:18px;

    min-width:150px;

    transition:0.3s;
}

.highlight-box:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.highlight-box h3{
    color:#6ce8ff;
    font-size:30px;
    margin-bottom:6px;
}

.highlight-box span{
    color:white;
    font-size:15px;
}

/* RIGHT SIDE */

.about-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.about-right img{
    width:100%;
    max-width:520px;
    height:650px;

    object-fit:cover;

    border-radius:26px;

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

    transition:0.4s;
}

.about-right img:hover{
    transform:scale(1.03);
}

/* glow */

@keyframes glowText{
    from{
        text-shadow:0 0 8px rgba(108,232,255,0.2);
    }
    to{
        text-shadow:0 0 22px rgba(108,232,255,0.45);
    }
}

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

.team-section{
    width:100%;
    padding:90px 7%;
    background:linear-gradient(
        to bottom,
        #08131f,
        #0d1f30
    );
}

.team-header{
    text-align:center;
    margin-bottom:60px;
}

.team-header h2{
    font-size:48px;
    color:white;
    margin-bottom:14px;
}

.team-header p{
    color:#c6dff0;
    font-size:20px;
}

/* GRID */

.team-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:35px;
}

/* CARD */

.team-card{
    text-align:center;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:22px;
    padding:25px;

    transition:0.35s ease;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

/* IMAGE */

.team-card img{
    width:100%;
    height:320px;
    object-fit:cover;

    border-radius:16px;
    margin-bottom:20px;
}

/* NAME */

.team-name{
    display:block;
    color:white;
    font-size:24px;
    font-weight:700;

    text-decoration:none;

    transition:0.3s;
}

/* animated hover */

.team-name:hover{
    color:#6ce8ff;
    letter-spacing:1px;
    text-shadow:0 0 12px rgba(108,232,255,0.5);
}

/* ROLE */

.team-role{
    display:block;
    margin-top:8px;
    color:#c6dff0;
    font-size:17px;
}

/* ================================= */
/* PREMIUM BOOKING PAGE */
/* ================================= */

.booking-hero{
width:100%;
min-height:100vh;

padding:120px 7% 90px 7%;

position:relative;
overflow:hidden;

background:
linear-gradient(
rgba(5,15,25,0.78),
rgba(5,15,25,0.85)
),
url('assets/booking-bg.jpg');

background-size:cover;
background-position:center;
}

/* animated glow */

.booking-hero::before{
content:'';

position:absolute;

width:600px;
height:600px;

background:
radial-gradient(
rgba(0,183,255,0.18),
transparent 70%
);

top:-250px;
right:-150px;

pointer-events:none;
}

/* overlay */

.booking-overlay{
position:relative;
z-index:2;
}

/* HEADER */

.booking-header{
text-align:center;
max-width:900px;
margin:0 auto 55px auto;
}

/* small tag */

.booking-tag{
display:inline-block;

padding:10px 20px;

border-radius:50px;

background:
rgba(108,232,255,0.08);

border:
1px solid rgba(108,232,255,0.18);

color:#6ce8ff;

font-size:15px;
font-weight:600;

margin-bottom:25px;
}

/* TITLE */

.booking-header h1{
font-size:76px;
font-weight:800;

line-height:1.05;

color:white;

margin-bottom:22px;

text-shadow:
0 12px 30px rgba(0,0,0,0.35);
}

/* SUBTEXT */

.booking-header p{
font-size:22px;
line-height:1.8;

color:#d3e7f5;
}

/* FORM CONTAINER */

.booking-container{
max-width:1100px;
margin:auto;
}

/* FORM */

.booking-form{

background:
rgba(255,255,255,0.08);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:blur(8px);

padding:45px;

border-radius:34px;

box-shadow:
0 15px 45px rgba(0,0,0,0.28);

transition:0.35s ease;
}

/* hover */

.booking-form:hover{
transform:translateY(-4px);
}

/* GRID */

.form-grid{
display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:24px;
}

/* input box */

.input-box{
display:flex;
flex-direction:column;
}

/* label */

.input-box label{
font-size:16px;
font-weight:600;

margin-bottom:10px;

color:#ffffff;
}

/* full width */

.full-width{
grid-column:1 / -1;
}

/* inputs */

.booking-form input,
.booking-form select{

width:100%;

padding:18px 20px;

border-radius:18px;

border:
1px solid rgba(255,255,255,0.10);

background:
rgba(255,255,255,0.08);

color:white;

font-size:17px;

outline:none;

transition:0.3s ease;
}

/* select option */

.booking-form select option{
color:black;
}

/* placeholder */

.booking-form input::placeholder{
color:#bdd4e6;
}

/* focus */

.booking-form input:focus,
.booking-form select:focus{

border-color:#6ce8ff;

box-shadow:
0 0 18px rgba(0,212,255,0.18);

transform:scale(1.01);
}

/* EXTRAS */

.extras{
display:flex;
gap:22px;

margin-top:35px;
margin-bottom:35px;

flex-wrap:wrap;
}

/* EXTRA CARD */

.extra-card{
flex:1;

min-width:260px;

display:flex;
align-items:center;

gap:18px;

padding:22px;

border-radius:22px;

background:
rgba(255,255,255,0.06);

border:
1px solid rgba(255,255,255,0.08);

cursor:pointer;

transition:0.35s ease;
}

/* hover */

.extra-card:hover{
transform:translateY(-5px);

background:
rgba(255,255,255,0.10);

box-shadow:
0 10px 25px rgba(0,0,0,0.20);
}

/* checkbox */

.extra-card input{
width:22px;
height:22px;

accent-color:#08bfff;
}

/* content */

.extra-content h3{
font-size:20px;
margin-bottom:6px;
color:white;
}

.extra-content p{
font-size:15px;
line-height:1.6;
color:#c6dff0;
}

/* BUTTON */

.booking-btn{
width:100%;

padding:22px;

border:none;

border-radius:60px;

background:
linear-gradient(
135deg,
#08bfff,
#00d7ff
);

color:white;

font-size:22px;
font-weight:700;

cursor:pointer;

transition:0.35s ease;

box-shadow:
0 10px 30px rgba(0,183,255,0.28);
}

/* hover */

.booking-btn:hover{
transform:translateY(-4px) scale(1.02);

box-shadow:
0 0 35px rgba(0,212,255,0.45);
}

/* responsive */

@media(max-width:768px){

.booking-header h1{
font-size:52px;
}

.booking-header p{
font-size:18px;
}

.booking-form{
padding:30px 22px;
}

.extras{
flex-direction:column;
}

}

/* ================================= */
/* BOOKING SUCCESS POPUP */
/* ================================= */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.75);

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

z-index:99999;

backdrop-filter:blur(8px);

animation:popupFade 0.4s ease;
}

.booking-popup{

width:90%;
max-width:520px;

background:
linear-gradient(
145deg,
rgba(10,25,45,0.96),
rgba(5,15,28,0.96)
);

border:1px solid rgba(255,255,255,0.10);

border-radius:28px;

padding:50px 40px;

text-align:center;

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

animation:popupScale 0.45s ease;
}

.popup-icon{

width:90px;
height:90px;

margin:auto;
margin-bottom:25px;

border-radius:50%;

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

font-size:42px;

background:
linear-gradient(
135deg,
#08bfff,
#00d7ff
);

box-shadow:
0 0 35px rgba(0,212,255,0.45);
}

.booking-popup h2{
font-size:38px;
color:white;
margin-bottom:18px;
}

.booking-popup p{
font-size:19px;
line-height:1.8;
color:#c6dff0;
margin-bottom:35px;
}

.booking-popup button{

padding:18px 35px;

border:none;
border-radius:60px;

font-size:18px;
font-weight:700;

cursor:pointer;

color:white;

background:
linear-gradient(
135deg,
#08bfff,
#00d7ff
);

transition:0.35s ease;

box-shadow:
0 0 25px rgba(0,212,255,0.35);
}

.booking-popup button:hover{

transform:translateY(-4px) scale(1.03);

box-shadow:
0 0 40px rgba(0,212,255,0.55);
}

@keyframes popupFade{
from{
opacity:0;
}
to{
opacity:1;
}
}

@keyframes popupScale{
from{
opacity:0;
transform:scale(0.85);
}
to{
opacity:1;
transform:scale(1);
}
}

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

.services-hero{
text-align:center;
padding:70px 20px 30px;
background:#08131f;
}

.services-hero h1{
font-size:58px;
color:white;
font-weight:800;
}

/* COUNTRY */

.country-section{
padding:50px 7%;
background:#08131f;
}

.country-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.country-card{
text-align:center;
}

.country-card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.25);
transition:0.4s;
}

.country-card img:hover{
transform:translateY(-8px);
}

.country-card h3{
margin-top:18px;
font-size:28px;
color:white;
}

/* VEHICLES */

.vehicle-section{
padding:90px 7%;
background:#0d1f30;
text-align:center;
}

.vehicle-section h2{
font-size:50px;
margin-bottom:60px;
}

.vehicle-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.vehicle-card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:14px;
}

.vehicle-card h3{
margin-top:18px;
font-size:24px;
}

/* BOOKING PROCESS */

.booking-process{
padding:100px 7%;
background:#08131f;
}

.booking-process h2{
text-align:center;
font-size:52px;
margin-bottom:60px;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.process-card{
background:rgba(255,255,255,0.07);
padding:35px;
border-radius:20px;
backdrop-filter:blur(10px);
}

.process-card span{
font-size:38px;
font-weight:800;
color:#6ce8ff;
}

.process-card h3{
margin-top:15px;
margin-bottom:15px;
}

.process-card p{
color:#c6dff0;
line-height:1.7;
}

.communication-box{
margin-top:70px;
text-align:center;
padding:40px;
background:rgba(255,255,255,0.06);
border-radius:20px;
}

.communication-box h3{
font-size:32px;
margin-bottom:20px;
}

.communication-box p{
font-size:20px;
color:#c6dff0;
}

/* ================================= */
/* SERVICES PAGE PREMIUM */
/* ================================= */

.services-hero{
padding:120px 8%;
text-align:center;
background:linear-gradient(to bottom,#08131f,#0d1f30);
}

.section-tag{
display:inline-block;
padding:10px 22px;
border-radius:50px;
background:rgba(255,255,255,0.08);
color:#6ce8ff;
margin-bottom:25px;
}

.services-hero h1{
font-size:58px;
color:white;
margin-bottom:20px;
text-shadow:0 0 20px rgba(0,212,255,0.3);
animation:fadeUp 1s ease;
}

.services-hero p{
font-size:22px;
color:#bfd9ec;
max-width:800px;
margin:auto;
line-height:1.6;
}

.section-title{
text-align:center;
font-size:48px;
margin-bottom:70px;
color:white;
text-shadow:0 0 18px rgba(0,212,255,0.25);
}

.country-section,
.vehicle-section,
.process-section{
padding:100px 8%;
background:linear-gradient(to bottom,#0d1f30,#08131f);
}

.country-grid,
.vehicle-grid,
.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.country-card,
.vehicle-card,
.process-card{
background:rgba(255,255,255,0.07);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
overflow:hidden;
text-align:center;
transition:0.4s;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.country-card:hover,
.vehicle-card:hover,
.process-card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px rgba(0,212,255,0.18);
}

.country-card img,
.vehicle-card img{
width:100%;
height:230px;
object-fit:cover;
transition:0.4s;
}

.country-card:hover img,
.vehicle-card:hover img{
transform:scale(1.08);
}

.country-card h3,
.vehicle-card h3{
padding:22px;
font-size:24px;
color:white;
transition:0.3s;
}

.country-card:hover h3,
.vehicle-card:hover h3{
color:#6ce8ff;
letter-spacing:1px;
}

.process-card{
padding:40px 25px;
}

/* PROCESS ICON */

.process-card span{
display:flex;
justify-content:center;
align-items:center;
width:75px;
height:75px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
background:linear-gradient(
135deg,
#08bfff,
#00d7ff
);
font-size:30px;
color:white;
box-shadow:0 0 20px rgba(0,212,255,0.35);
transition:0.3s;
}

.process-card:hover span{
transform:scale(1.12) rotate(8deg);
}

/* CONTACT ICONS */

.service-contact-icons{
margin-top:30px;
display:flex;
justify-content:center;
gap:25px;
}

.service-contact-icons a{
width:65px;
height:65px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
text-decoration:none;
font-size:28px;
color:white;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.12);
transition:0.35s;
}

.service-contact-icons a:hover{
transform:translateY(-6px) scale(1.08);
background:linear-gradient(
135deg,
#08bfff,
#00d7ff
);
box-shadow:0 0 25px rgba(0,212,255,0.35);
}

.process-card h3{
font-size:24px;
margin-bottom:15px;
color:white;
}

.process-card p{
color:#bfd9ec;
line-height:1.7;
font-size:17px;
}

.monitoring-box{
margin-top:70px;
text-align:center;
padding:45px;
border-radius:25px;
background:rgba(255,255,255,0.07);
border:1px solid rgba(255,255,255,0.08);
}

.monitoring-box h3{
font-size:34px;
margin-bottom:20px;
color:#6ce8ff;
}

.monitoring-box p{
font-size:20px;
color:#c6dff0;
line-height:1.8;
max-width:900px;
margin:auto;
}

/* ================================= */
/* BOOKING FLOW */
/* ================================= */

.booking-process-section{
padding:100px 8%;
background:linear-gradient(to bottom,#08131f,#0d1f30);
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:60px;
}

.process-card{
background:rgba(255,255,255,0.07);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
padding:35px 25px;
text-align:center;
transition:0.35s;
}

.process-card:hover{
transform:translateY(-8px);
box-shadow:0 0 25px rgba(0,212,255,0.18);
}

.process-card span{
display:flex;
justify-content:center;
align-items:center;
width:75px;
height:75px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
background:linear-gradient(
135deg,
#08bfff,
#00d7ff
);
font-size:30px;
color:white;
box-shadow:0 0 20px rgba(0,212,255,0.35);
transition:0.3s;
}

.process-card:hover span{
transform:scale(1.1) rotate(8deg);
}

.process-card h3{
font-size:22px;
color:white;
margin-bottom:15px;
}

.process-card p{
font-size:17px;
line-height:1.7;
color:#bfd9ec;
}

/* ================================= */
/* NEW BOOKING FORM DESIGN */
/* ================================= */

.booking-form textarea,
.booking-form select,
.booking-form input:not([type="checkbox"]){

width: 100%;
padding: 18px 20px;
border-radius: 18px;
border: 1px solid rgba(255,255,255,0.08);

background: rgba(255,255,255,0.08);

color: #fff;

font-size: 16px;

outline: none;

transition: 0.3s ease;

backdrop-filter: blur(10px);

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


/* TEXTAREA */

.booking-form textarea{

min-height: 130px;

resize: vertical;

padding-top: 18px;
}


/* PLACEHOLDER */

.booking-form input::placeholder,
.booking-form textarea::placeholder{

color: rgba(255,255,255,0.55);

}


/* SELECT */

.booking-form select{

appearance: none;

cursor: pointer;
}


/* FOCUS EFFECT */

.booking-form input:not([type="checkbox"]):focus,
.booking-form textarea:focus,
.booking-form select:focus{

border-color: #3ecbff;

box-shadow: 0 0 15px rgba(62,203,255,0.35);

transform: translateY(-2px);

}


/* LABEL */

.input-box label{

display: block;

margin-bottom: 10px;

font-size: 17px;

font-weight: 600;

color: #fff;
}


/* GRID FIX */

.form-grid{

display: grid;

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

gap: 25px;
}


/* FULL WIDTH */

.full-width{

grid-column: 1 / -1;
}


/* MOBILE */

@media(max-width: 991px){

.form-grid{

grid-template-columns: 1fr;
}

}


/* PICKUP / DROPOFF TEXTAREA */

.booking-form textarea{

background: rgba(255,255,255,0.07);

border: 1px solid rgba(255,255,255,0.1);

}


/* EXTRA SMOOTHNESS */

.booking-form input:not([type="checkbox"]),
.booking-form textarea,
.booking-form select,
.booking-btn{

will-change: transform;

}


/* HOVER PERFORMANCE */

.process-card,
.extra-card,
.booking-btn{

transform: translateZ(0);

backface-visibility: hidden;

}


/* BETTER SCROLL PERFORMANCE */

.booking-hero{

overflow: hidden;

}

/* FIX CHECKBOX */

.extra-card input[type="checkbox"]{

width: 20px;
height: 20px;

accent-color: #3ecbff;

cursor: pointer;

flex-shrink: 0;

margin-top: 3px;

}

/* ================================= */
/* REVIEWS PAGE - MATCH TRAVELXTRA THEME */
/* ================================= */

.review-page{
    width:100%;
    min-height:100vh;
    padding:90px 7%;
    background:
    linear-gradient(
        to bottom,
        #08131f,
        #0d1f30
    );
}

/* INTRO */

.review-intro{
    text-align:center;
    margin-bottom:55px;
}

.review-intro h1{
    font-size:52px;
    color:white;
    font-weight:800;
    margin-bottom:18px;
    text-shadow:0 0 25px rgba(0,212,255,0.12);
}

.review-intro p{
    font-size:18px;
    color:#c6dff0;
    max-width:750px;
    margin:auto;
    line-height:1.7;
}

/* ================================= */
/* REVIEW SUBMISSION FORM */
/* ================================= */

.review-form-box{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;

    padding:40px;

    border-radius:28px;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.22);
}

.review-form-box h2{
    text-align:center;
    color:white;
    font-size:34px;
    margin-bottom:30px;
}

/* INPUTS */

.review-form-box input,
.review-form-box select,
.review-form-box textarea{
    width:100%;
    padding:18px 22px;
    margin-bottom:20px;

    border:none;
    outline:none;

    border-radius:14px;

    background:rgba(255,255,255,0.08);

    color:white;
    font-size:16px;
}

.review-form-box input::placeholder,
.review-form-box textarea::placeholder{
    color:#bdd7ea;
}

.review-form-box select{
    color:#bdd7ea;
}

.review-form-box textarea{
    min-height:150px;
    resize:none;
}

/* BUTTON */

.review-form-box button{
    width:100%;
    padding:18px;

    border:none;
    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #008cff
    );

    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;

    transition:0.35s ease;
}

.review-form-box button:hover{
    transform:translateY(-4px);

    box-shadow:
    0 0 25px rgba(0,220,255,0.35);
}

/* ================================= */
/* REVIEW CARDS */
/* ================================= */

.review-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

/* CARD */

.review-box{
    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.10);

    backdrop-filter:blur(12px);

    padding:35px 28px;

    border-radius:24px;

    text-align:center;

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

    transition:0.35s ease;
}

.review-box:hover{
    transform:translateY(-8px);

    box-shadow:
    0 16px 35px rgba(0,0,0,0.25);
}

/* REVIEW IMAGE */

.review-box img{
    width:90px;
    height:90px;

    border-radius:50%;
    object-fit:cover;

    margin-bottom:18px;

    border:3px solid rgba(255,255,255,0.14);
}

/* NAME */

.review-box h3{
    font-size:26px;
    color:white;
    margin-bottom:15px;
}

/* STARS */

.review-box .stars{
    font-size:22px;
    color:#ffd700;
    letter-spacing:3px;
    margin-bottom:18px;
}

/* FEEDBACK TEXT */

.review-box p{
    font-size:17px;
    line-height:1.7;
    color:#c6dff0;
}

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

.review-cta{
    margin-top:80px;
    text-align:center;
}

.review-cta h2{
    font-size:42px;
    color:white;
    margin-bottom:18px;
}

.review-cta p{
    color:#c6dff0;
    font-size:18px;
    margin-bottom:12px;
}

.contact-text{
    margin-top:25px;
    font-weight:700;
    color:white;
}

/* ICON LINKS */

.contact-links{
    display:flex;
    justify-content:center;
    gap:24px;
    margin-top:20px;
}

.contact-links a{
    width:58px;
    height:58px;

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

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    color:#6ce8ff;
    font-size:24px;

    transition:0.35s ease;
}

.contact-links a:hover{
    transform:translateY(-5px) scale(1.08);

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #008cff
    );

    color:white;

    box-shadow:
    0 0 25px rgba(0,220,255,0.25);
}

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

@media(max-width:768px){

    .review-intro h1{
        font-size:36px;
    }

    .review-form-box{
        padding:25px;
    }

    .review-cta h2{
        font-size:32px;
    }

}

/* FILE UPLOAD */

.review-form-box input[type="file"]{
    background:rgba(
        255,255,255,0.08
    );
    color:#c6dff0;
    padding:16px;
    cursor:pointer;
}


/* ================================= */
/* REVIEW CUSTOMER PHOTO */
/* ================================= */

.review-photo{

width: 60px;
height: 60px;

border-radius: 50%;

object-fit: cover;

border:
2px solid rgba(255,255,255,0.12);

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

}


/* PLACEHOLDER */

.review-photo-placeholder{

width: 60px;
height: 60px;

border-radius: 50%;

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

background:
rgba(255,255,255,0.08);

color: #6ce8ff;

font-size: 22px;

border:
2px solid rgba(255,255,255,0.08);

}


/* ================================= */
/* PREMIUM STAR RATING */
/* ================================= */

.review-form-box select{

appearance:none;

-webkit-appearance:none;
-moz-appearance:none;

background:
rgba(255,255,255,0.08);

border:
1px solid rgba(255,255,255,0.10);

color:#ffffff;

font-size:18px;
font-weight:600;

cursor:pointer;

transition:0.35s ease;

box-shadow:
0 0 0 rgba(0,0,0,0);

}

/* HOVER */

.review-form-box select:hover{

border-color:#4fdcff;

background:
rgba(255,255,255,0.10);

transform:translateY(-2px);

}

/* FOCUS */

.review-form-box select:focus{

border-color:#00d4ff;

box-shadow:
0 0 18px rgba(0,212,255,0.28);

}

/* OPTIONS */

.review-form-box select option{

background:#08131f;
color:#ffffff;

font-size:17px;

padding:14px;

}


/* ================================= */
/* PREMIUM FILE UPLOAD */
/* ================================= */

.review-form-box input[type="file"]{

padding:18px 20px;

border-radius:18px;

background:
rgba(255,255,255,0.07);

border:
1px solid rgba(255,255,255,0.10);

color:#d7efff;

font-size:16px;

cursor:pointer;

transition:0.35s ease;

overflow:hidden;

}

/* HOVER */

.review-form-box input[type="file"]:hover{

border-color:#4fdcff;

background:
rgba(255,255,255,0.10);

transform:translateY(-2px);

box-shadow:
0 0 18px rgba(0,212,255,0.18);

}

/* FILE BUTTON */

.review-form-box input[type="file"]::file-selector-button{

padding:12px 22px;

margin-right:18px;

border:none;

border-radius:12px;

background:
linear-gradient(
135deg,
#00d4ff,
#008cff
);

color:white;

font-weight:700;

cursor:pointer;

transition:0.35s ease;

}

/* FILE BUTTON HOVER */

.review-form-box input[type="file"]::file-selector-button:hover{

transform:scale(1.05);

box-shadow:
0 0 20px rgba(0,212,255,0.35);

}


/* ================================= */
/* PREMIUM BUTTON ANIMATION */
/* ================================= */

button,
.review-btn,
.hero-btn,
.destination-button,
.booking-btn,
.review-form-box button{

position:relative;

overflow:hidden;

transition:
0.35s ease;

}

/* GLOW EFFECT */

button::before,
.review-btn::before,
.hero-btn::before,
.destination-button::before,
.booking-btn::before,
.review-form-box button::before{

content:'';

position:absolute;

top:0;
left:-120%;

width:100%;
height:100%;

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.25),
transparent
);

transition:0.7s ease;

}

/* HOVER */

button:hover,
.review-btn:hover,
.hero-btn:hover,
.destination-button:hover,
.booking-btn:hover,
.review-form-box button:hover{

transform:
translateY(-4px)
scale(1.03);

}

/* SHINE ANIMATION */

button:hover::before,
.review-btn:hover::before,
.hero-btn:hover::before,
.destination-button:hover::before,
.booking-btn:hover::before,
.review-form-box button:hover::before{

left:120%;

}

/* CLICK EFFECT */

button:active,
.review-btn:active,
.hero-btn:active,
.destination-button:active,
.booking-btn:active,
.review-form-box button:active{

transform:
scale(0.97);

}


/* ================================= */
/* SMOOTH INPUT ANIMATION */
/* ================================= */

.review-form-box input,
.review-form-box textarea,
.review-form-box select{

transition:
0.35s ease,
box-shadow 0.35s ease,
transform 0.35s ease;

}

/* INPUT HOVER */

.review-form-box input:hover,
.review-form-box textarea:hover,
.review-form-box select:hover{

transform:translateY(-2px);

}


/* ================================= */
/* PREMIUM FORM ANIMATION */
/* ================================= */

.review-form-box{

animation:
premiumFade 0.9s ease;

}

@keyframes premiumFade{

from{

opacity:0;

transform:
translateY(40px)
scale(0.96);

}

to{

opacity:1;

transform:
translateY(0)
scale(1);

}

}


/* ================================= */
/* PREMIUM CONTACT SECTION */
/* ================================= */

.premium-contact-section{

padding:90px 7%;

position:relative;

overflow:hidden;

background:transparent;

}

/* MAIN CONTAINER */

.contact-container{

max-width:1200px;

margin:auto;

padding:60px;

border-radius:34px;

background:
linear-gradient(
145deg,
rgba(8,18,32,0.75),
rgba(5,12,22,0.82)
);

backdrop-filter:blur(18px);

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

border:1px solid rgba(255,255,255,0.06);

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

text-align:center;

position:relative;

overflow:hidden;

}

/* TOP GLOW */

.contact-container::before{

content:"";

position:absolute;

top:0;
left:50%;

transform:translateX(-50%);

width:220px;
height:4px;

background:#2ddcff;

border-radius:50px;

box-shadow:
0 0 25px rgba(45,220,255,0.9);

}

/* TAG */

.contact-tag{

display:inline-block;

padding:12px 24px;

border-radius:50px;

background:rgba(45,220,255,0.08);

border:1px solid rgba(45,220,255,0.18);

color:#7cecff;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:28px;

}

/* TITLE */

.contact-container h2{

font-size:58px;

font-weight:800;

line-height:1.15;

color:#fff;

margin-bottom:25px;

}

/* DESCRIPTION */

.contact-description{

max-width:850px;

margin:auto auto 65px;

font-size:18px;

line-height:1.9;

color:#b7cadc;

}

/* GRID */

.contact-grid{

display:grid;

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

gap:25px;

align-items:stretch;

}

/* CARD */

.contact-card{

position:relative;

display:flex;

flex-direction:column;

align-items:flex-start;

justify-content:flex-start;

padding:38px 32px;

border-radius:28px;

background:
linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

text-decoration:none;

transition:.35s ease;

overflow:hidden;

min-height:280px;

}

/* HOVER */

.contact-card:hover{

transform:translateY(-10px);

border-color:rgba(45,220,255,0.28);

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

}

/* LIGHT EFFECT */

.contact-card::before{

content:"";

position:absolute;

top:-100px;
right:-100px;

width:220px;
height:220px;

background:
rgba(255,255,255,0.04);

transform:rotate(45deg);

}

/* ICON */

.contact-icon{

width:104px;
height:104px;

border-radius:28px;

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

margin-bottom:35px;

flex-shrink:0;

}

/* ICON SIZE */

.contact-icon i{

font-size:52px;

color:#fff;

line-height:1;

}

/* WHATSAPP */

.whatsapp-card .contact-icon{

background:
linear-gradient(
135deg,
#29d965,
#1ca84e
);

}

/* FACEBOOK */

.facebook-card .contact-icon{

background:
linear-gradient(
135deg,
#2d7dff,
#125fe0
);

}

/* EMAIL */

.email-card .contact-icon{

background:
linear-gradient(
135deg,
#ff9d3c,
#ff6a00
);

}

/* TEXT */

.contact-text{

text-align:left;

}

.contact-text h3{

font-size:22px;

font-weight:800;

color:#fff;

margin-bottom:18px;

line-height:1.4;

}

.contact-text span{

font-size:17px;

line-height:1.8;

color:#b7cadc;

}

/* RESPONSIVE */

@media(max-width:1100px){

.contact-grid{

grid-template-columns:1fr;

}

.contact-card{

min-height:auto;

}

}

/* MOBILE */

@media(max-width:768px){

.premium-contact-section{

padding:70px 5%;

}

.contact-container{

padding:40px 25px;

}

.contact-container h2{

font-size:38px;

}

.contact-description{

font-size:16px;

}

.contact-icon{

width:85px;
height:85px;

}

.contact-icon i{

font-size:42px;

}

}


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

.premium-footer{

position:relative;

padding:85px 20px 45px;

background:
linear-gradient(
145deg,
rgba(8,18,32,0.75),
rgba(5,12,22,0.82)
);

overflow:hidden;

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

}

/* ================================= */
/* FLOATING FOOTER SPACING FIX */
/* ================================= */

.premium-footer{

width:92%;

max-width:1400px;

margin:0 auto 35px;

border-radius:34px;

position:relative;

z-index:5;

}

/* SPACE BEFORE FOOTER */

footer,
.premium-footer{

margin-top:40px;

}

/* TOP GLOW */

.footer-glow{

position:absolute;

top:0;
left:50%;

transform:translateX(-50%);

width:240px;
height:3px;

background:#2ddcff;

border-radius:50px;

box-shadow:
0 0 30px rgba(45,220,255,0.95);

}

/* CONTENT */

.footer-content{

max-width:1200px;

margin:auto;

text-align:center;

position:relative;

z-index:2;

}

/* LOGO AREA */

.footer-logo-area{

display:flex;

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

gap:22px;

margin-bottom:35px;

flex-wrap:wrap;

}

/* LOGO */

.footer-logo{

width:110px;

height:auto;

filter:
drop-shadow(0 0 15px rgba(45,220,255,0.18));

transition:.35s ease;

}

.footer-logo:hover{

transform:scale(1.05);

}

/* LOGO TEXT */

.footer-logo-text{

text-align:left;

}

.footer-logo-text h2{

font-size:44px;

font-weight:800;

color:#fff;

margin-bottom:8px;

letter-spacing:1px;

}

/* SUBTEXT */

.footer-logo-text p{

font-size:13px;

letter-spacing:4px;

color:#71dfff;

font-weight:700;

}

/* DESCRIPTION */

.footer-description{

max-width:760px;

margin:0 auto 40px;

font-size:17px;

line-height:1.9;

color:#9cb8cf;

}

/* DIVIDER */

.footer-divider{

width:140px;
height:1px;

margin:0 auto 30px;

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.25),
transparent
);

}

/* COPYRIGHT */

.footer-copy{

font-size:15px;

color:#6f8aa1;

letter-spacing:1px;

}

/* MOBILE */

@media(max-width:768px){

.premium-footer{

padding:70px 20px 40px;

}

.footer-logo{

width:85px;

}

.footer-logo-area{

flex-direction:column;

gap:16px;

}

.footer-logo-text{

text-align:center;

}

.footer-logo-text h2{

font-size:34px;

}

.footer-logo-text p{

font-size:11px;

letter-spacing:3px;

}

.footer-description{

font-size:15px;

line-height:1.8;

}

}


/* ================================= */
/* ABOUT IMAGE COLLAGE */
/* ================================= */

.about-image-section{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:100%;
}

/* TOP TWO IMAGES */

.top-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.small-image{
    overflow:hidden;
    border-radius:25px;
    position:relative;
}

.small-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.small-image:hover img{
    transform:scale(1.08);
}

/* MAIN LARGE IMAGE */

.main-image{
    overflow:hidden;
    border-radius:35px;
    position:relative;
}

.main-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.main-image:hover img{
    transform:scale(1.05);
}

/* PREMIUM GLOW */

.small-image,
.main-image{
    box-shadow:
    0 0 30px rgba(0,170,255,.15),
    0 0 60px rgba(0,170,255,.08);
}

/* MOBILE */

@media(max-width:900px){

    .top-images{
        grid-template-columns:1fr;
    }

    .small-image img{
        height:220px;
    }

    .main-image img{
        height:400px;
    }

}


/* ================================= */
/* OTHER COUNTRIES CARD */
/* ================================= */

.other-country-card{

    background:
    linear-gradient(
        135deg,
        rgba(8,25,45,0.95),
        rgba(12,45,80,0.95)
    );

    border:1px solid rgba(108,232,255,.15);

    border-radius:30px;

    overflow:hidden;

    cursor:pointer;

    transition:.4s ease;

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

}

.other-country-card:hover{

    transform:translateY(-8px);

    border-color:#6ce8ff;

    box-shadow:
    0 0 25px rgba(108,232,255,.20),
    0 25px 60px rgba(0,0,0,.35);

}

.other-country-card:hover{

    transform: translateY(-8px);

    border-color:#6ce8ff;

    box-shadow:
        0 0 25px rgba(108,232,255,.25),
        0 20px 60px rgba(0,0,0,.35);

}

.other-country-card:hover .other-country-icon{

    transform:
    scale(1.1)
    rotate(-8deg);

}

.other-country-top{

    height:260px;

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

    background:
    linear-gradient(
        135deg,
        #0b1b30,
        #12395f,
        #0d2238
    );

    position:relative;

    overflow:hidden;

}

.other-country-top::before{

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(108,232,255,.15),
        transparent 70%
    );

    filter:blur(40px);

}

.other-icon{

    position:relative;

    font-size:140px;

    color:#6ce8ff;

    z-index:2;

    transition:.4s ease;

    text-shadow:
    0 0 20px rgba(108,232,255,.5),
    0 0 40px rgba(108,232,255,.4),
    0 0 80px rgba(108,232,255,.3);

}

.other-country-bottom{

    padding:30px 20px;

    text-align:center;

}

.other-country-bottom h3{

    color:white;

    font-size:42px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:15px;

}

.other-country-bottom p{

    color:#c5d5e5;

    font-size:17px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}

.country-popup{

    width:90%;
    max-width:700px;

    background:
    linear-gradient(
    145deg,
    rgba(12,26,45,.98),
    rgba(18,45,75,.98)
    );

    border-radius:32px;

    padding:60px;

    border:1px solid rgba(108,232,255,.15);

    box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 50px rgba(0,191,255,.15);

    text-align:center;

    animation:popupFade .35s ease;

}

@keyframes popupFade{

from{

    opacity:0;
    transform:translateY(20px) scale(.95);

}

to{

    opacity:1;
    transform:translateY(0) scale(1);

}

}

.other-country-wrapper{

    width:100%;

    max-width:1400px;

    margin:80px auto 0;

    padding:0 20px;

}

.world-map{

    width:280px;

    opacity:.9;

    filter:
    drop-shadow(0 0 25px rgba(108,232,255,.4));

    transition:.4s;

}

.other-country-card:hover .world-map{

    transform:scale(1.05);

}

.country-popup-overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

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

    display:flex;

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

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.country-popup-overlay.active{

    opacity:1;
    visibility:visible;

}

.country-popup{

    width:90%;
    max-width:650px;

    padding:50px;

    border-radius:30px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #08192d,
        #10345d
    );

    border:1px solid rgba(108,232,255,.2);

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

}

.popup-icon{

    font-size:70px;

    margin-bottom:20px;

}

.country-popup h2{

    color:white;

    font-size:32px;

    margin-bottom:15px;

}

.country-popup p{

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:30px;

}

.popup-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.popup-book-btn{

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    color:#08192d;

    background:#6ce8ff;

}

.popup-close-btn{

    padding:14px 28px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    color:white;

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

}


/* =========================
   PERFECT MOBILE NAVBAR
========================= */

/* DESKTOP */

.menu-toggle{
    display:none;
}