:root {
    --bg-base: #061525;            /* Deep navy */
    --bg-surface: #0c2238;         /* Ocean surface */
    --bg-surface-hover: #143048;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(45, 212, 191, 0.3);
    
    --primary: #2dd4bf;           /* Teal */
    --primary-dark: #14b8a6;      /* Deep Teal */
    --accent: #2dd4bf;            /* Teal Accent */
    --accent-hover: #14b8a6;      /* Teal Hover */
    --accent-red: #ef4444;        /* Crimson */
    --success: #10b981;           /* Emerald */
    --white: #ffffff;
    --text-base: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    --gradient-primary: linear-gradient(135deg, #2dd4bf 0%, #0f766e 100%);
    --gradient-accent: linear-gradient(135deg, #2dd4bf 0%, #0f766e 100%);
    --gradient-red: linear-gradient(135deg, #ef4444 0%, #f43f5e 100%);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(45, 212, 191, 0.15);
    
    --ring: 0 0 0 4px rgba(45, 212, 191, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-base);
    background-color: var(--bg-base);
    line-height: 1.55;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .btn, .nav-link, .price-tag {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.2px;
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }

:focus-visible {
    outline: none;
    box-shadow: var(--ring);
    border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    .deal-card, .highlight-item, .trust-card, .btn-search, .btn-outline, .btn-white, .btn-header { transition: none !important; }
}

/* --- Header (Blurred Transparent) --- */
header {
    background: rgba(7, 9, 17, 0.75);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.logo i {
    color: var(--accent);
    font-size: 1.6rem;
    transform: rotate(-35deg);
    filter: drop-shadow(0 4px 10px rgba(45, 212, 191, 0.3));
    transition: transform 0.3s ease;
}
.logo:hover i { transform: rotate(-35deg) translateY(-2px); }

.logo span {
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--shadow-sm);
}

.logo span::after {
    content: none;
}

.nav-links {
    display: flex;
    gap: 8px;
    margin-left: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.88rem;
    position: relative;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.2);
    transform: translateY(-1px);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.nav-phone i {
    color: var(--success);
    font-size: 1.05rem;
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.nav-phone a {
    color: var(--white);
}

.nav-phone a:hover {
    color: var(--success);
}

/* --- Hero Section & Container Layout --- */
.hero {
    background: radial-gradient(circle at 80% 15%, rgba(45, 212, 191, 0.14) 0%, transparent 45%),
                radial-gradient(circle at 10% 85%, rgba(56, 189, 248, 0.10) 0%, transparent 50%),
                linear-gradient(160deg, #061525 0%, #0a2740 55%, #061525 100%);
    color: var(--white);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--border-color);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=1800&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.04;
    mix-blend-mode: overlay;
    z-index: -2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text-side {
    flex: 1 1 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-search-side {
    flex: 1 1 45%;
    max-width: 520px;
    width: 100%;
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
    letter-spacing: -1px;
    text-align: left;
}

.hero h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
    text-align: left;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 10px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    color: #cbd5e1;
    width: fit-content;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
    border-color: rgba(45, 212, 191, 0.2);
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.08);
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.25rem;
    filter: drop-shadow(0 4px 8px rgba(45, 212, 191, 0.2));
}

/* --- Search Box (Sidebar Card Layout) --- */
.search-wrapper {
    width: 100%;
}

.search-box {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.search-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 18px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i { font-size: 1rem; }

.tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: #061525;
    border-color: transparent;
    box-shadow: 0 8px 20px -6px rgba(45, 212, 191, 0.4);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.search-grid .input-group:nth-child(1),
.search-grid .input-group:nth-child(2) {
    grid-column: span 2;
}

.input-group { position: relative; }

.input-group label {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--primary);
    z-index: 2;
    font-size: 1.05rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

input[type="text"], input[type="date"], select {
    width: 100%;
    padding: 10px 10px 10px 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0f2a42;
    color: var(--white);
    height: 52px;
}

select {
    padding-left: 42px;
    padding-right: 36px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232dd4bf'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

select option {
    background-color: #0c2238;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(20%) saturate(1000%) hue-rotate(330deg);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

input:focus, select:focus {
    border-color: var(--primary);
    outline: none;
    background: #143048;
    box-shadow: var(--ring);
}

input::placeholder {
    color: var(--text-dark);
}

.btn-search {
    width: 100%;
    background: var(--gradient-accent);
    color: #061525;
    border: none;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 850;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px -6px rgba(45, 212, 191, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-search:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #0f766e 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px rgba(45, 212, 191, 0.6);
}

.search-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    font-size: 0.86rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
}

/* --- Autocomplete (Sleek Overlay) --- */
.autocomplete-items {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0c2238;
    border: 1px solid var(--border-hover);
    border-top: none;
    z-index: 99;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    max-height: 220px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    transition: background 0.15s ease;
    color: var(--text-base);
}

.autocomplete-item:hover, .autocomplete-active {
    background: rgba(45, 212, 191, 0.15);
    color: var(--primary);
}

.ac-city { font-weight: 600; }
.ac-code {
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    border: 1px solid rgba(45, 212, 191, 0.2);
}

/* --- Trust Strip (Sophisticated Grid) --- */
.trust-strip {
    background: #04101c;
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.01);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.trust-icon {
    background: var(--gradient-primary);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #061525;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.25);
}

.trust-text h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--white); font-weight: 700; }
.trust-text p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* --- Deals Section (Modern Cards) --- */
.deals {
    padding: 80px 20px;
    background: var(--bg-base);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-head h2 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-head h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(45, 212, 191, 0.3);
}

.section-head p {
    max-width: 640px;
    margin: 24px auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.deal-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(45, 212, 191, 0.12);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.deal-img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8) saturate(1.1);
}

.deal-card:hover .deal-img {
    transform: scale(1.05);
    filter: brightness(0.9) saturate(1.15);
}

.deal-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--gradient-accent);
    color: #061525;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 850;
    text-transform: uppercase;
    box-shadow: 0 6px 12px rgba(45, 212, 191, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.deal-info { padding: 20px; }

.deal-dest {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.deal-price {
    font-size: 1.6rem;
    font-weight: 850;
    color: var(--primary);
}

.deal-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(45, 212, 191, 0.4);
    color: var(--primary);
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 800;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    background: transparent;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: #061525;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

/* --- Testimonials (Frosted Glass Grid) --- */
.testimonials {
    background: #04101c;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.01);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px; left: 20px;
    font-size: 5rem;
    color: rgba(45, 212, 191, 0.06);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #061525;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 16px rgba(45, 212, 191, 0.2);
}

.author-info h4 { font-size: 1.05rem; margin-bottom: 2px; color: var(--white); font-weight: 700; }
.author-info p { font-size: 0.82rem; color: var(--text-muted); }

.rating { color: var(--accent); font-size: 0.85rem; margin-top: 3px; }

/* --- Why Choose Us (Translucent Panels) --- */
.features {
    background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.04) 0%, rgba(7, 9, 17, 0.8) 100%), var(--bg-base);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.01);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-md);
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 18px;
    filter: drop-shadow(0 8px 16px rgba(45, 212, 191, 0.25));
}

.feature-card h3 {
    margin-bottom: 14px;
    font-size: 1.3rem;
    font-weight: 750;
    color: var(--white);
    position: relative;
    padding-bottom: 14px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 999px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.features-cta { text-align: center; margin-top: 50px; position: relative; z-index: 2; }

.btn-white {
    background: #ffffff;
    color: #061525;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    transition: all 0.28s ease;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    background: var(--gradient-accent);
    color: #061525;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 212, 191, 0.4);
    border-color: transparent;
}

/* --- SEO Content (Refined Spacing) --- */
.seo-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.seo-section h2 { font-size: 2.1rem; color: var(--white); margin: 36px 0 18px; letter-spacing: -0.5px; font-weight: 800; }
.seo-section h3 {
    font-size: 1.4rem;
    margin: 28px 0 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 750;
}
.seo-section p { margin-bottom: 18px; line-height: 1.8; }

/* --- Footer (Deep Slate) --- */
footer {
    background: #040508;
    color: var(--text-dark);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient-accent);
    border-radius: 999px;
}

.footer-col ul li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a { color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--white); transform: translateX(5px); }
.footer-col a i { font-size: 0.8rem; color: var(--primary); }

.disclaimer {
    max-width: 1100px;
    margin: 50px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* --- Mobile Sticky Bar (Frosted Call Bar) --- */
.mobile-sticky {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(18, 21, 30, 0.85);
    padding: 12px 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transform: translateY(0);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sticky.visible {
    box-shadow: 0 -18px 55px -30px rgba(0, 0, 0, 0.65);
}

.sticky-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
}
.sticky-text span {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sticky-text small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.sticky-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
}
.sticky-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- Modals (Rich Dark Glassmorphism) --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 7, 14, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #0c2238;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 460px;
    padding: 36px 30px;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    color: var(--white);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-primary);
}

.modal-content.promo-content::before {
    background: var(--gradient-red);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.loader {
    width: 56px; height: 56px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 24px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.success-icon { font-size: 3.5rem; color: var(--success); margin-bottom: 16px; filter: drop-shadow(0 4px 10px rgba(16, 185, 129, 0.3)); }

.timer-box {
    background: rgba(45, 212, 191, 0.05);
    color: var(--accent);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    margin: 20px 0;
    border: 1px solid rgba(45, 212, 191, 0.15);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255, 255, 255, 0.05);
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-close:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); transform: rotate(90deg); }

/* --- Promo Modal Specifics --- */
.promo-badge {
    background: var(--gradient-red);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px -8px rgba(239, 68, 68, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-content .success-icon {
    color: var(--accent);
    filter: drop-shadow(0 4px 10px rgba(45, 212, 191, 0.3));
}

.promo-content .timer-box {
    background: rgba(239, 68, 68, 0.08);
    color: var(--accent-red);
    border-color: rgba(239, 68, 68, 0.15);
}

.btn-call-now {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 850;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px -6px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-call-now:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px rgba(16, 185, 129, 0.5);
    color: white;
}
.modal-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 600;
}

/* --- Responsive Layout Rules --- */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .mobile-sticky { display: flex; }
    body { padding-bottom: 78px; }
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    .hero-text-side {
        align-items: center;
        text-align: center;
    }
    .hero-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .highlight-item {
        width: auto;
    }
    .hero-search-side {
        max-width: 600px;
    }
    .hero h1 { font-size: 2.8rem; text-align: center; }
    .hero p { font-size: 1.15rem; text-align: center; }
    .logo span::after { display: none; }
}

@media (max-width: 767px) {
    .trust-grid { grid-template-columns: 1fr; }
    .deals-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .hero { padding: 60px 20px 100px; }
}

@media (max-width: 576px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-grid .input-group:nth-child(1),
    .search-grid .input-group:nth-child(2) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .logo { font-size: 1.2rem; }
    .nav-phone { font-size: 1rem; padding: 8px 16px; }
    .hero h1 { font-size: 2.1rem; }
    .search-box { padding: 24px 20px; }
    .section-head h2 { font-size: 2rem; }
}

/* --- Instant Support Module --- */
.instant-support {
    background: var(--bg-surface);
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    margin-top: 50px;
}

.support-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 6px solid var(--bg-base);
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    background: var(--bg-surface);
}

.support-headline {
    color: var(--white);
    font-size: 1.6rem;
    margin: 20px 0 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.support-cta-btn {
    display: inline-block;
    background: #0f4c81; /* Blue accent reflecting airline standard */
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    padding: 16px 48px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.4);
}

.support-cta-btn:hover {
    background: #0c3d68;
    transform: translateY(-2px);
    color: var(--white);
}

.support-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.support-card {
    background: var(--bg-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.support-card:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.support-card i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(45, 212, 191, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.support-card span {
    color: var(--text-base);
    font-weight: 700;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
    }
}
@media (max-width: 767px) {
    /* Compress the overarching container's padding and margins */
    .instant-support {
padding: 40px 15px 20px; 
margin-top: 45px; 
    }

    /* Scale down the avatar proportionally */
    .support-avatar {
width: 80px;
height: 80px;
top: -40px;
border-width: 4px;
    }

    /* Reduce typographic hierarchy */
    .support-headline {
font-size: 1.3rem; 
margin: 15px 0 10px;
    }

    /* Compress the primary Call-To-Action button */
    .support-cta-btn {
font-size: 1.5rem; 
padding: 12px 32px;
margin-bottom: 12px;
    }

    .support-meta {
font-size: 0.85rem;
margin-bottom: 20px;
    }

    /* Tightly pack the grid items */
    .support-grid {
gap: 10px;
    }

    /* Minimize internal card spacing and icon sizing */
    .support-card {
padding: 14px 8px; 
gap: 8px;
    }

    .support-card i {
width: 40px; 
height: 40px;
font-size: 1.4rem;
    }

    .support-card span {
font-size: 0.85rem; 
    }
}