/* ============================
   Global Styles
============================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
}

/* ============================
   NAVBAR - Transparent & Modern
============================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0);
    color: #fff;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.7);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    padding: 10px 60px;
}
.logo img {
    height: 50px;
    width: auto;
}
nav a {
    position: relative;
    margin: 0 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.3s ease;
}
nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #e63946;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
nav a:hover {
    color: #e63946;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ============================
   MOBILE MENU FIX
============================ */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-container {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0,0,0,0.85);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        align-items: center;
    }
    .nav-container.show { 
        max-height: 500px; 
        padding: 15px 0; 
    }
    nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }
    nav a {
        margin: 10px 0;
        padding: 10px 0;
        width: 90%;
        text-align: center;
        display: block;
    }
    .btn-sparkle {
        margin-top: 10px;
        width: 90%;
        text-align: center;
    }
}

/* ============================
   Sparkle Button
============================ */
.btn-sparkle {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    color: #fff;
    background: #e63946;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-sparkle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}
.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate(0,0) scale(0);
    animation: sparkleAnim 0.8s forwards;
}
.sparkle path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@keyframes sparkleAnim {
    0% { transform: translate(0,0) scale(0); opacity: 1; }
    50% { transform: translate(var(--x), var(--y)) scale(1.2); opacity: 1; }
    100% { transform: translate(var(--x), var(--y)) scale(0); opacity: 0; }
}

/* ============================
   HERO SECTION
============================ */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top:50%;
    left:50%;
    width:100%;
    height:100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index:1;
}
.hero-overlay {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.35);
    z-index:2;
}
.hero-content {
    position: relative;
    z-index:3;
    color:#fff;
    max-width:800px;
}
.hero h1 { font-size: 48px; }
.hero p { margin: 20px 0; }
.hero-actions .btn, .hero-actions .btn-outline { margin: 10px 5px; }

/* ============================
   SECTIONS
============================ */
section { padding: 100px 60px; }
h2 { text-align: center; font-size: 36px; }
.subtitle { text-align:center; color:#777; }

/* ============================
   TOUR CARD REFINEMENT
============================ */
.tours { background:#f8f8f8; }
.tour-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}
.tour-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.tour-card img:hover { transform: scale(1.05); }
.tour-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 140px;
}
.tour-info h3 { font-size: 20px; margin-bottom: 10px; color: #222; }
.tour-info p { color: #555; margin-bottom: 10px; font-size: 14px; }
.tour-card .tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.tour-card .tour-footer span {
    font-weight: 700;
    color: #e63946;
    font-size: 18px;
}
.tour-card .tour-footer .btn-view-details {
    padding: 6px 16px;
    border-radius: 25px;
    border: 1px solid #e63946;
    background: transparent;
    color: #e63946;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.tour-card .tour-footer .btn-view-details:hover {
    background: #e63946;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ============================
   CONTACT FORM & INFO
============================ */
.contact h2 { text-align: center; font-size: 36px; margin-bottom: 10px; }
.contact .subtitle { text-align:center; color: #777; font-size: 16px; margin-bottom: 50px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e63946;
    box-shadow: 0 5px 15px rgba(230,57,70,0.2);
    outline: none;
}
.contact-form button.btn-sparkle { margin-top: 10px; font-weight: 600; }
.contact-info h3 { color: #222; margin-bottom: 8px; font-size: 18px; }
.contact-info p { color: #555; font-size: 15px; margin: 0; line-height: 1.5; transition: color 0.3s ease; }
.contact-info div:hover p { color: #e63946; }
.contact-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:40px; }
@media(max-width:768px){ .contact-grid { grid-template-columns: 1fr; } .contact-info { margin-top:30px; } }
.map iframe { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeUp { from { opacity:0; transform: translateY(40px); } to { opacity:1; transform: translateY(0); } }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) { .navbar { padding: 15px 30px; } .hero h1 { font-size:38px; } section { padding:80px 30px; } }
@media (max-width: 480px) { .hero h1 { font-size:26px; } section { padding:60px 20px; } .step-card { padding:20px; } .tour-card img { height:180px; } .tour-info h3 { font-size:18px; } .tour-info p { font-size:13px; } .tour-card .tour-footer span { font-size:16px; } .tour-card .tour-footer .btn-view-details { padding:5px 12px; font-size:13px; } }

/* ============================
   FOOTER
============================ */
.footer {
    background: #111;               /* dark background */
    color: #ddd;                    /* light text */
    padding: 60px 20px;
    font-size: 15px;
    line-height: 1.6;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer h3, .footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer p {
    color: #bbb;
    margin-bottom: 10px;
}
.footer a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin: 6px 0;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #e63946;
}
.footer .copyright {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* ============================
   FOOTER RESPONSIVE
============================ */
@media(max-width:768px){
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer {
        padding: 40px 20px;
    }
}


/* ============================
   HOW WE WORK - STEP CARD GRID
============================ */
.step-grid {
    display: flex;                     /* use flex to keep cards in a row */
    justify-content: center;           /* center cards horizontally */
    gap: 30px;                         /* spacing between cards */
    flex-wrap: wrap;                   /* allow wrapping on smaller screens */
    margin-top: 50px;
}

.step-card {
    background: #fff;                  /* clean white card */
    padding: 30px 20px;                /* internal spacing */
    border-radius: 18px;               /* rounded corners */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 1 1 220px;                   /* grow/shrink, min width 220px */
    max-width: 250px;                  /* fixed max width for consistent card size */
}

.step-card:hover {
    transform: translateY(-10px);      /* lift on hover */
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.step-card span {
    display: block;
    font-size: 32px;
    color: #e63946;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.step-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media(max-width: 992px){
    .step-card {
        max-width: 45%;                  /* 2 cards per row on medium screens */
    }
}

@media(max-width: 768px){
    .step-card {
        max-width: 100%;                 /* 1 card per row on small screens */
        padding: 20px;
    }
    .step-card span {
        font-size: 28px;
    }
    .step-card h3 {
        font-size: 18px;
    }
    .step-card p {
        font-size: 13px;
    }
}


/* ============================
   HERO SECTION
============================ */
.hero {
    position: relative;
    height: 90vh;                     /* nearly full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;                 /* cover the hero area */
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: brightness(0.6);           /* darken video for text readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);    /* semi-transparent overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 850px;
    padding: 0 20px;
    animation: fadeUp 1.2s ease;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f1f1f1;
    line-height: 1.5;
}

.hero-actions a {
    margin: 10px 10px 0 10px;
}

/* Primary Button */
.hero-actions .btn {
    padding: 14px 32px;
    background: #e63946;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.hero-actions .btn:hover {
    background: #d62839;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Outline Button */
.hero-actions .btn-outline {
    padding: 14px 32px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.hero-actions .btn-outline:hover {
    background: #fff;
    color: #e63946;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Fade-up animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Hero */
@media(max-width: 992px) {
    .hero-content h1 { font-size: 38px; }
    .hero-content p { font-size: 16px; }
}

@media(max-width: 768px) {
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 14px; }
    .hero-actions .btn, .hero-actions .btn-outline { padding: 12px 24px; font-size: 14px; }
}

@media(max-width: 480px) {
    .hero { height: 70vh; }
    .hero-content h1 { font-size: 22px; }
    .hero-content p { font-size: 13px; }
    .hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
}

.visa-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visa-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.visa-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.visa-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
