/* ===========================
   NEXTTRIP PREMIUM CSS v2 - COMPLETE
=========================== */

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

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

:root {
    --primary: #00CFFF;
    --secondary: #09162B;
    --dark: #040B16;
    --white: #ffffff;
    --text: #d6dde5;
    --gold: #FFD166;
    --success: #00D97E;
    --warning: #FF6B35;
    --error: #FF4444;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #040B16;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

section {
    padding: 90px 8%;
}

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

/* ===========================
   PRELOADER
=========================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #040B16;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeOut 0.8s ease-out 1.5s forwards;
}

.preloader-mark {
    display: flex;
    gap: 20px;
    font-size: 48px;
    font-weight: 800;
}

.preloader-mark span {
    animation: bounce 1.2s ease-in-out infinite;
}

.preloader-mark span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

/* ===========================
   SCROLL PROGRESS
=========================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #00CFFF, #FFD166);
    width: 0%;
    z-index: 9998;
    transition: width 0.1s ease;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(4, 11, 22, 0.65);
    backdrop-filter: blur(15px);
    z-index: 9999;
    transition: 0.4s;
}

.navbar.scrolled {
    padding: 12px 8%;
    background: rgba(4, 11, 22, 0.95);
}

.brand {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    transition: 0.3s;
}

.brand span {
    color: #00CFFF;
}

.brand:hover {
    transform: scale(1.05);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 46px;
    width: auto;
    display: block;
    border-radius: 10px;
    background: #fff;
    padding: 4px 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    flex: 1;
}

.nav-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00CFFF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #00CFFF;
    transition: 0.3s;
}

.nav-phone:hover {
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: #00CFFF;
    color: #040B16;
    border: 2px solid #00CFFF;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.3);
}

.btn.btn-primary {
    background: linear-gradient(135deg, #00CFFF, #00A8D6);
    color: #040B16;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 207, 255, 0.25);
}

.btn.btn-primary:hover {
    box-shadow: 0 14px 34px rgba(0, 207, 255, 0.4);
}

.btn.btn-ghost {
    background: transparent;
    color: #00CFFF;
    border-color: #00CFFF;
}

.btn.btn-ghost:hover {
    background: rgba(0, 207, 255, 0.1);
}

.btn.btn-outline {
    background: transparent;
    color: #00CFFF;
    border-color: rgba(0, 207, 255, 0.3);
}

.btn.btn-outline:hover {
    border-color: #00CFFF;
    background: rgba(0, 207, 255, 0.1);
}

.btn.btn-accent {
    background: #FFD166;
    color: #040B16;
}

.btn.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

.btn.btn-block {
    width: 100%;
}

.btn.btn-disabled {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    padding-top: 140px;
    padding-bottom: 300px;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(4, 11, 22, 0.75) 0%,
        rgba(4, 11, 22, 0.25) 35%,
        rgba(4, 11, 22, 0.55) 70%,
        rgba(4, 11, 22, 0.92) 100%);
    z-index: 1;
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #00CFFF;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    animation: titleSlide 1s ease-out;
}

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

.hero-title .line {
    display: block;
}

.hero-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

.trust-item i {
    color: #00CFFF;
}

.trust-item strong {
    color: #fff;
    font-weight: 800;
}

.trust-stars {
    color: #FFD166;
    letter-spacing: 2px;
    font-size: 13px;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active {
    background: #00CFFF;
    height: 24px;
    border-radius: 4px;
}

.hero-scrollcue {
    position: absolute;
    bottom: 225px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.hero-scrollcue span {
    font-size: 12px;
    color: #00CFFF;
    font-weight: 600;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #00CFFF;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.wheel {
    width: 3px;
    height: 8px;
    background: #00CFFF;
    border-radius: 50%;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); }
    100% { transform: translateY(12px); }
}

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

.search-card {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 0;
    background: rgba(4, 11, 22, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s ease-out 0.5s both;
    width: max-content;
    max-width: 95vw;
}

.search-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    min-width: 0;
    max-width: 100%;
}

.search-tab {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.15);
    color: var(--text);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.search-tab i {
    font-size: 12px;
}

.search-tab:hover:not(.active) {
    border-color: #00CFFF;
    color: #fff;
}

.search-tab.active {
    background: #00CFFF;
    color: #040B16;
    border-color: #00CFFF;
}

.search-fields {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    min-width: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

.search-card-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.search-field label {
    font-size: 11px;
    color: #00CFFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-field select,
.search-field input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    padding: 10px;
    font-size: 13px;
    font-family: inherit;
    transition: 0.3s;
    cursor: pointer;
}

.search-field select:hover,
.search-field select:focus,
.search-field input:focus {
    background: rgba(0, 207, 255, 0.05);
    border-color: #00CFFF;
    outline: none;
}

.search-field select option {
    color: #09162B;
    background: #fff;
}

.search-divider {
    width: 1px;
    background: rgba(0, 207, 255, 0.2);
    height: 40px;
}

.search-btn {
    margin-bottom: 0;
}

/* ===========================
   STATS STRIP
=========================== */

.stats-strip {
    background: linear-gradient(90deg, rgba(0, 207, 255, 0.1), rgba(255, 209, 102, 0.1));
    border-top: 1px solid rgba(0, 207, 255, 0.2);
    border-bottom: 1px solid rgba(0, 207, 255, 0.2);
    padding: 50px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

.stat {
    animation: fadeInUp 0.8s ease-out;
}

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

.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: #00CFFF;
    display: inline-block;
    transition: 0.3s;
}

.stat-suffix {
    color: #FFD166;
    font-size: 32px;
    margin-left: 5px;
}

.stat p {
    color: var(--text);
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

/* ===========================
   SECTION STYLING
=========================== */

.section {
    max-width: 1400px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
    color: #fff;
}

.section-sub {
    font-size: 16px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.dest-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.dest-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    group: hover;
    transition: 0.4s;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 11, 22, 0.4), rgba(0, 207, 255, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transform: translateY(50px);
    transition: 0.4s;
}

.dest-card:hover .dest-overlay {
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(4, 11, 22, 0.7), rgba(0, 207, 255, 0.3));
}

.dest-overlay h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.dest-overlay p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
}

.dest-btn {
    align-self: flex-start;
    color: #00CFFF;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.dest-btn:hover {
    gap: 12px;
}

/* ===========================
   FEATURED TOUR
=========================== */

.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px auto;
    max-width: 1400px;
}

.featured-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.featured-media:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00D97E;
    color: #040B16;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.featured-body h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.featured-tagline {
    font-size: 16px;
    color: #FFD166;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
}

.featured-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text);
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-includes {
    list-style: none;
    margin-bottom: 30px;
}

.featured-includes li {
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-includes i {
    color: #00D97E;
    font-size: 18px;
}

.countdown-wrap {
    background: rgba(0, 207, 255, 0.1);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.countdown-label {
    font-size: 12px;
    color: #00CFFF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

.cd-box {
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.cd-box span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #00CFFF;
}

.cd-box small {
    display: block;
    font-size: 11px;
    color: var(--text);
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.featured-actions {
    display: flex;
    gap: 15px;
}

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

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

.pkg-card {
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    border-color: #00CFFF;
    box-shadow: 0 20px 40px rgba(0, 207, 255, 0.15);
    transform: translateY(-10px);
}

.pkg-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.pkg-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.pkg-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pkg-tag.open {
    background: #00D97E;
    color: #040B16;
}

.pkg-tag.soon {
    background: #FF6B35;
    color: #fff;
}

.pkg-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-body h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pkg-desc {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
    flex: 1;
}

.pkg-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-foot strong {
    font-size: 20px;
    color: #00CFFF;
}

.pkg-foot small {
    font-size: 11px;
    color: var(--text);
    display: block;
    margin-bottom: 3px;
}

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

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

.why-card {
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}

.why-card:hover {
    border-color: #00CFFF;
    background: rgba(0, 207, 255, 0.1);
    transform: translateY(-10px);
}

.why-card i {
    font-size: 40px;
    color: #00CFFF;
    margin-bottom: 15px;
    display: block;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

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

.testi {
    margin-top: 80px;
}

.testiSwiper {
    margin-top: 50px !important;
}

.testi-card {
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: 0.4s;
}

.testi-card:hover {
    border-color: #00CFFF;
    background: rgba(0, 207, 255, 0.1);
}

.stars {
    color: #FFD166;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.testi-card p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-user strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
}

.testi-user span {
    font-size: 12px;
    color: var(--text);
}

.swiper-pagination-bullet {
    background: rgba(0, 207, 255, 0.5) !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: #00CFFF !important;
}

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

.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.masonry img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s;
    cursor: pointer;
}

.masonry img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 207, 255, 0.2);
}

/* ===========================
   ABOUT SECTION
=========================== */

.about {
    position: relative;
    padding: 120px 8%;
    text-align: center;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 11, 22, 0.85);
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: auto;
}

.about-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 20px 0 30px;
}

.about-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.quote-form {
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 12px;
    color: #00CFFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-field input,
.form-field textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    transition: 0.3s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field textarea:focus {
    background: rgba(0, 207, 255, 0.05);
    border-color: #00CFFF;
    outline: none;
}

.form-field:has(label:contains("Email")) {
    grid-column: 1 / -1;
}

.quote-form .form-field:nth-last-child(1) {
    grid-column: 1 / -1;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.contact-item:hover {
    border-color: #00CFFF;
    background: rgba(0, 207, 255, 0.1);
}

.contact-item i {
    font-size: 32px;
    color: #00CFFF;
    min-width: 50px;
    text-align: center;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item span {
    font-size: 13px;
    color: var(--text);
}

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

.footer {
    background: linear-gradient(180deg, rgba(9, 22, 43, 0.5), rgba(4, 11, 22, 0.95));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    margin-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 60px 8%;
    max-width: 1400px;
    margin: auto;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .brand {
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00CFFF;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00CFFF;
    color: #040B16;
    border-color: #00CFFF;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #00CFFF;
    margin-left: 5px;
}

.newsletter p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.news-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 16px;
    font-size: 13px;
}

.news-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.news-form button {
    background: transparent;
    border: none;
    color: #00CFFF;
    padding: 0 16px;
    cursor: pointer;
    transition: 0.3s;
}

.news-form button:hover {
    color: #FFD166;
}

.footer-bottom {
    text-align: center;
    padding: 25px 8%;
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    color: var(--text);
    font-size: 13px;
}

.footer-bottom p {
    display: inline-block;
    margin: 0 10px;
}

.footer-bottom i {
    color: #FF4444;
}

/* ===========================
   FLOATING ELEMENTS
=========================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: rgba(0, 207, 255, 0.1);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00CFFF;
    font-size: 20px;
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(0, 207, 255, 0.2);
    border-color: #00CFFF;
    transform: translateY(-5px);
}

/* ===========================
   POPUP
=========================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: linear-gradient(135deg, rgba(9, 22, 43, 0.95), rgba(4, 11, 22, 0.95));
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: popupIn 0.4s ease-out;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s;
}

.popup-close:hover {
    color: #00CFFF;
}

.popup-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 15px 0;
}

.popup-sub {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 25px;
}

.popup-card input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 15px;
    font-family: inherit;
    transition: 0.3s;
}

.popup-card input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.popup-card input:focus {
    background: rgba(0, 207, 255, 0.05);
    border-color: #00CFFF;
    outline: none;
}

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

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    .navbar {
        padding: 15px 5%;
    }

    .nav-inner {
        gap: 20px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(4, 11, 22, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 30px 5%;
        transform: translateX(-100%);
        transition: 0.3s;
        z-index: 9990;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 207, 255, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .nav-cta {
        gap: 10px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .search-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        animation: slideUpMobile 0.8s ease-out 0.5s both;
        width: 90%;
        max-width: none;
        margin: 0 auto;
        padding: 16px 18px 20px;
    }

    .search-fields {
        flex-direction: column;
    }

    .search-divider {
        display: none;
    }

    .search-field {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-dots {
        display: none;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 5%;
        gap: 30px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .dest-rail {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .featured {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-media {
        height: 300px;
    }

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

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 5%;
    }

    .hero-scrollcue {
        display: none;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 80px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 4%;
    }

    .brand {
        font-size: 20px;
    }

    .nav-logo img {
        height: 36px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .featured-body h2 {
        font-size: 28px;
    }

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

    .footer-col h4 {
        font-size: 12px;
    }
}