/* assets/css/style.css */

/* ============================================
   ROOT VARIABLES & RESET
   ============================================ */
:root {
    --primary-dark: #0a2540;
    --primary-dark-hover: #1a3a55;
    --gold: #f5a623;
    --gold-hover: #e09117;
    --gold-light: #f5a62320;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   CONTAINER OVERRIDE
   ============================================ */
.container {
    max-width: 1280px;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--primary-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.topbar-desktop {
    display: none;
    align-items: center;
    justify-content: space-between;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
}

.rating-badge .stars {
    display: flex;
    gap: 0.125rem;
}

.rating-badge .stars i {
    font-size: 0.75rem;
    color: var(--gold);
}

.rating-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 700;
}

.reviews-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.trust-item i {
    color: var(--gold);
    font-size: 0.875rem;
}

.trust-item span {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 600;
}

.divider {
    width: 1px;
    height: 1rem;
    background: rgba(255,255,255,0.2);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item i {
    color: var(--gold);
    font-size: 0.875rem;
}

.contact-item:hover {
    color: var(--gold);
}

/* Topbar Mobile */
.topbar-mobile {
    display: block;
    overflow-x: auto;
}

.mobile-scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: max-content;
}

.mobile-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.625rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-item i {
    color: var(--gold);
    font-size: 0.75rem;
}

.mobile-item .stars.small i {
    font-size: 0.625rem;
}

.divider-vertical {
    width: 1px;
    height: 0.75rem;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .topbar-desktop {
        display: flex;
    }
    .topbar-mobile {
        display: none;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li > a {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--gold);
}

.nav-links > li > a i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    padding: 0.5rem;
    min-width: 260px;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
}

.dropdown-menu .dropdown-highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark-hover));
    color: var(--white) !important;
    font-weight: 700;
}

.dropdown-menu .dropdown-highlight:hover {
    background: linear-gradient(135deg, var(--primary-dark-hover), var(--primary-dark));
}

/* Manage Booking Button */
.btn-manage-booking {
    display: none;
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-manage-booking:hover {
    background: var(--primary-dark-hover);
    color: var(--white);
}

.btn-manage-booking i {
    margin-right: 0.375rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    background: var(--gray-50);
}

.mobile-nav .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1.5rem !important;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li a {
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--gray-600);
}

.mobile-booking-btn {
    background: var(--primary-dark);
    color: var(--white) !important;
    font-weight: 700 !important;
    text-align: center;
}

.mobile-booking-btn:hover {
    background: var(--primary-dark-hover) !important;
    color: var(--white) !important;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .btn-manage-booking {
        display: inline-block;
    }
    .mobile-toggle {
        display: none;
    }
    .mobile-nav {
        display: none !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 1) 0%, rgba(10, 37, 64, 0.8) 50%, rgba(10, 37, 64, 0.667) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0 3rem;
}

/* Hero Quick Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-stats .stat-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 0.75rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-stats .stat-item i {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-item .stat-value {
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.2;
}

.hero-stats .stat-item .stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.625rem;
    font-weight: 500;
}

/* Hero Headline */
.hero-headline {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.2);
    backdrop-filter: blur(4px);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Booking Form */
.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
}

.booking-form-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    padding: 1rem 1.25rem;
}

.booking-form-header .header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.booking-form-header h3 {
    color: var(--white);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-form-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}

.booking-form-header .offer-badge {
    font-size: 0.625rem;
    font-weight: 800;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.booking-form-body {
    padding: 1.25rem;
}

.booking-form-body .error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-lg);
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
}

.booking-form-body .error-message p {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.form-group label .required {
    color: #ef4444;
}

.form-group .input-wrapper {
    position: relative;
}

.form-group .input-wrapper i.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    pointer-events: none;
}

.form-group .input-wrapper select,
.form-group .input-wrapper input {
    width: 100%;
    padding: 0.75rem 2.25rem 0.75rem 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.875rem;
    transition: var(--transition);
    appearance: none;
}

.form-group .input-wrapper select:focus,
.form-group .input-wrapper input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.form-group .input-wrapper .chevron-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.form-group .input-wrapper input[type="date"] {
    padding-right: 0.5rem;
}

.form-group .display-date {
    color: var(--gray-400);
    font-size: 0.625rem;
    margin-top: 0.25rem;
    padding-left: 0.25rem;
}

.btn-check-availability {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--primary-dark);
    font-weight: 800;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-check-availability:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    box-shadow: var(--shadow-lg);
}

.btn-check-availability i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn-check-availability:hover i {
    transform: translateX(4px);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
}

.secure-badge i {
    color: var(--gold);
    font-size: 1rem;
}

.secure-badge span {
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Mobile Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
}

.hero-trust-badges .trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.hero-trust-badges .trust-item i {
    color: var(--gold);
    font-size: 0.875rem;
}

.hero-trust-badges .trust-item span {
    color: rgba(255,255,255,0.5);
    font-size: 0.625rem;
    font-weight: 500;
}

.hero-trust-badges .divider {
    width: 1px;
    height: 0.75rem;
    background: rgba(255,255,255,0.2);
}

/* Desktop Hero */
.hero-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .hero-desktop {
        display: grid;
        grid-template-columns: 1fr minmax(320px, 480px);
        gap: 2.5rem;
        align-items: start;
    }
    
    .hero-mobile {
        display: none;
    }
    
    .hero-headline {
        text-align: left;
    }
    
    .hero-subtitle {
        margin: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats .stat-item {
        padding: 1rem;
    }
    
    .hero-stats .stat-item i {
        font-size: 1.25rem;
    }
    
    .hero-stats .stat-item .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-trust-badges {
        justify-content: flex-start;
    }
}

@media (min-width: 1280px) {
    .hero-desktop {
        grid-template-columns: 1fr 520px;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
}

/* ============================================
   FEATURES / OFFERS SECTION
   ============================================ */
.features-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    background: url('../images/airport.png') center/cover no-repeat;
}

.features-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.9) 100%);
}

.features-content {
    position: relative;
    z-index: 10;
}

.features-title {
    font-size: 1.75rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.features-title .highlight {
    color: var(--gold);
}

.features-subtitle {
    color: var(--gray-700);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    gap: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features-list .list-heading {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.features-list .list-heading .heading-bar {
    width: 0.25rem;
    height: 1.75rem;
    background: var(--gold);
    border-radius: 9999px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem;
    margin-left: -0.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: default;
}

.feature-item:hover {
    background: rgba(245, 166, 35, 0.1);
}

.feature-item .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .icon-wrapper {
    background: var(--gold);
    box-shadow: var(--shadow-lg);
}

.feature-item .icon-wrapper i {
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition);
}

.feature-item:hover .icon-wrapper i {
    color: var(--white);
}

.feature-item p {
    color: var(--gray-800);
    font-size: 0.875rem;
    font-weight: 600;
    padding-top: 0.25rem;
    line-height: 1.5;
    margin: 0;
}

.features-note {
    margin-top: 1.5rem;
    color: var(--gray-600);
    font-style: italic;
    font-size: 0.875rem;
    font-weight: 500;
}

.features-image-wrapper {
    position: relative;
}

.features-image-wrapper .image-glow {
    position: absolute;
    inset: -0.75rem;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(10, 37, 64, 0.2));
    border-radius: var(--radius-xl);
    filter: blur(40px);
}

.features-image-wrapper img {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: center;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.why-choose-us-bg {
    position: absolute;
    inset: 0;
    background: url('../images/next-trip.png') center/cover no-repeat;
}

.why-choose-us-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(10,37,64,0.95) 0%, rgba(10,37,64,0.88) 50%, rgba(10,37,64,0.92) 100%);
}

.why-choose-us-content {
    position: relative;
    z-index: 10;
}

.why-choose-us .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.1);
    backdrop-filter: blur(4px);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(245, 166, 35, 0.2);
    margin-bottom: 1rem;
}

.why-choose-us .section-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.why-choose-us .section-title .highlight {
    color: var(--gold);
    position: relative;
}

.why-choose-us .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.why-choose-us .section-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-align: center;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.stat-card .stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: var(--transition);
}

.stat-card .stat-icon i {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.stat-card:hover .stat-icon i {
    color: var(--white);
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    transition: var(--transition);
}

.stat-card:hover .stat-number {
    color: var(--gold);
}

.stat-card .stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Benefits Cards */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.3);
}

.benefit-card .benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--gold);
}

.benefit-card .benefit-icon i {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.benefit-card:hover h4 {
    color: var(--gold);
}

.benefit-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Trust Badges Row */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.trust-badge-item:hover {
    background: rgba(255,255,255,0.1);
}

.trust-badge-item i {
    color: var(--gold);
    font-size: 1rem;
}

.trust-badge-item span {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 600;
}

/* CTA */
.why-choose-us .cta-text {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-start-saving {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--primary-dark);
    font-weight: 800;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

.btn-start-saving:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.btn-start-saving i {
    transition: var(--transition);
}

.btn-start-saving:hover i {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .why-choose-us .section-title {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .stat-card .stat-number {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   AIRPORT CARDS SECTION
   ============================================ */
.airport-cards-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.airport-cards-bg {
    position: absolute;
    inset: 0;
    background: url('../images/airport.png') center/cover no-repeat;
}

.airport-cards-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(10,37,64,1) 0%, rgba(10,37,64,0.867) 50%, rgba(10,37,64,0.667) 100%);
}

.airport-cards-content {
    position: relative;
    z-index: 10;
}

.airport-cards-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.1);
    backdrop-filter: blur(4px);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(245, 166, 35, 0.2);
    margin-bottom: 1rem;
}

.airport-cards-content .section-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.airport-cards-content .section-title .highlight {
    color: var(--gold);
    position: relative;
}

.airport-cards-content .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.airport-cards-content .section-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-align: center;
}

/* Airport Card */
.airport-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.airport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.airport-card .card-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark-hover));
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.airport-card .card-header .header-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    margin-top: -2.5rem;
    margin-right: -2.5rem;
}

.airport-card .card-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.airport-card .card-header h3 {
    color: var(--white);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.airport-card .card-header .airport-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}

.airport-card .card-header .rating-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    padding: 0.125rem 0.5rem;
}

.airport-card .card-header .rating-badge .stars i {
    font-size: 0.75rem;
    color: var(--gold);
}

.airport-card .card-header .rating-badge .rating-num {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 700;
}

.airport-card .card-body {
    padding: 1.25rem;
}

.airport-card .price-section {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 0.75rem;
}

.airport-card .price-section .price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.airport-card .price-section .price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
}

.airport-card .price-section .savings {
    text-align: right;
}

.airport-card .price-section .savings .save-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 700;
}

.airport-card .price-section .savings .vs-rate {
    font-size: 0.625rem;
    color: var(--gray-400);
}

.airport-card .quick-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.airport-card .quick-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.airport-card .quick-info .info-item i {
    color: var(--gold);
    font-size: 0.875rem;
}

.airport-card .quick-info .info-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.airport-card .features-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.airport-card .features-list .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.airport-card .features-list .feature i {
    color: var(--gold);
    font-size: 0.875rem;
}

.airport-card .features-list .feature span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.airport-card .spaces-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff7ed;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.airport-card .spaces-alert i {
    color: #f97316;
    font-size: 1rem;
}

.airport-card .spaces-alert span {
    color: #ea580c;
    font-size: 0.75rem;
    font-weight: 700;
}

.airport-card .trust-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.airport-card .trust-note i {
    font-size: 0.75rem;
}

.airport-card .btn-compare {
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 800;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.airport-card .btn-compare:hover {
    background: var(--primary-dark-hover);
}

.airport-card .btn-compare i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.airport-card .btn-compare:hover i {
    transform: translateX(4px);
}

.airport-cards-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .airport-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .airport-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .airport-cards-content .section-title {
        font-size: 2.5rem;
    }
}

/* View All CTA */
.view-all-airports {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-view-all {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 800;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-view-all i {
    margin-left: 0.5rem;
}

/* ============================================
   PARKING SERVICES SECTION
   ============================================ */
.parking-services {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.parking-services .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.parking-services .section-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.parking-services .section-title .highlight {
    color: var(--gold);
    position: relative;
}

.parking-services .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.parking-services .section-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-align: center;
}

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-card .card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.95;
}

.service-card .card-bg.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
}

.service-card .card-bg.dark {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark-hover));
}

.service-card .card-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.service-card .card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-card .card-header .header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card .card-header .header-left .icon-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card .card-header .header-left .icon-badge .icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-header .header-left .icon-badge .icon-wrap i {
    color: var(--white);
    font-size: 1.5rem;
}

.service-card .card-header .header-left .icon-badge .saving-badge {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.service-card .card-header .header-left h3 {
    color: var(--white);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.service-card .card-header .header-left .short-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.service-card .card-header .badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

.service-card .card-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.service-card .features-list .feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card .features-list .feature .check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card .features-list .feature .check i {
    font-size: 0.75rem;
    color: var(--white);
}

.service-card .btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.service-card .btn-service:hover {
    background: rgba(255,255,255,0.25);
}

.service-card .btn-service i {
    transition: var(--transition);
}

.service-card .btn-service:hover i {
    transform: translateX(4px);
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Extra Features */
.extra-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.extra-feature {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.extra-feature:hover {
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: var(--shadow-md);
}

.extra-feature .ef-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: var(--transition);
}

.extra-feature:hover .ef-icon {
    background: var(--gold);
}

.extra-feature .ef-icon i {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.extra-feature:hover .ef-icon i {
    color: var(--white);
}

.extra-feature h5 {
    font-weight: 900;
    color: var(--primary-dark);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.extra-feature p {
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 768px) {
    .extra-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Trust Bar */
.trust-bar {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.trust-bar:hover {
    background: var(--primary-dark-hover);
}

.trust-bar .trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-bar .trust-items .item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-bar .trust-items .item i {
    color: var(--gold);
    font-size: 1.25rem;
}

.trust-bar .trust-items .item span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.trust-bar .trust-items .divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 767px) {
    .trust-bar .trust-items .divider {
        display: none;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.faq-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.faq-section .section-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.faq-section .section-title .highlight {
    color: var(--gold);
    position: relative;
}

.faq-section .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.faq-section .section-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-align: center;
}

/* FAQ Stats */
.faq-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.faq-stats .stat-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.faq-stats .stat-item .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-lg);
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.faq-stats .stat-item .stat-icon i {
    color: var(--gold);
    font-size: 1.25rem;
}

.faq-stats .stat-item .stat-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.faq-stats .stat-item .stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .faq-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: 2.5rem;
}

.faq-image-wrapper {
    position: relative;
}

.faq-image-wrapper .image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(10, 37, 64, 0.2));
    border-radius: var(--radius-xl);
    filter: blur(40px);
    transition: var(--transition);
}

.faq-image-wrapper:hover .image-glow {
    filter: blur(60px);
}

.faq-image-wrapper img {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: var(--transition);
}

.faq-image-wrapper:hover img {
    transform: scale(1.05);
}

.faq-image-wrapper .question-mark {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    box-shadow: var(--shadow-xl);
    transform: rotate(6deg);
    transition: var(--transition);
}

.faq-image-wrapper:hover .question-mark {
    transform: rotate(12deg);
}

/* Contact Support Card */
.faq-contact-card {
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.faq-contact-card .contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.faq-contact-card .contact-icon i {
    color: var(--gold);
    font-size: 1.5rem;
}

.faq-contact-card h4 {
    color: var(--white);
    font-weight: 900;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.faq-contact-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.faq-contact-card .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-contact-card .contact-buttons .btn-call,
.faq-contact-card .contact-buttons .btn-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.faq-contact-card .contact-buttons .btn-call {
    background: var(--gold);
    color: var(--primary-dark);
}

.faq-contact-card .contact-buttons .btn-call:hover {
    background: var(--gold-hover);
}

.faq-contact-card .contact-buttons .btn-email {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.faq-contact-card .contact-buttons .btn-email:hover {
    background: rgba(255,255,255,0.2);
}

@media (min-width: 640px) {
    .faq-contact-card .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* FAQ Accordion */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.faq-categories .cat-btn {
    padding: 0.25rem 0.75rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--gray-600);
}

.faq-categories .cat-btn.active {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.faq-categories .cat-btn:hover:not(.active) {
    background: rgba(245, 166, 35, 0.2);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-item .faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item .faq-question:hover {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.05), transparent);
}

.faq-item .faq-question .q-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item .faq-question .q-badge {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-lg);
    background: var(--gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-item .faq-question .q-text {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1rem;
    padding-top: 0.125rem;
    letter-spacing: -0.01em;
}

.faq-item .faq-question .q-category {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
    padding: 0.0625rem 0.5rem;
    border-radius: 9999px;
}

.faq-item .faq-question .q-toggle {
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: var(--transition);
}

.faq-item .faq-question .q-toggle.rotated {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.faq-item .faq-answer.open {
    display: block;
}

.faq-item .faq-answer .a-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.75rem;
}

.faq-item .faq-answer .a-badge {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-item .faq-answer .a-text {
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    padding-top: 0.125rem;
    line-height: 1.6;
}

.no-faqs {
    text-align: center;
    padding: 2rem 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.no-faqs i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 0.75rem;
}

.no-faqs p {
    color: var(--gray-500);
    font-weight: 500;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    .faq-section .section-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.footer-logo .logo-text-alt {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.footer-about {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 20rem;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.footer-heading-alt {
    margin-top: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold);
}

.footer-contact-row {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link i {
    color: var(--gold);
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--white);
}

.footer-social .text-right {
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.footer-disclaimer {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-contact-row {
        grid-template-columns: 1fr 1fr;
    }
    .footer-social .text-right {
        text-align: right;
    }
    .social-icons {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   PARKING LISTING PAGE
   ============================================ */

/* Listing Hero */
.listing-hero {
    background: var(--primary-dark);
    padding: 1.5rem 0 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.breadcrumb-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--gold);
}

.breadcrumb-separator {
    font-size: 0.625rem;
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
}

.search-summary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-left {
    flex: 1;
}

.summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.summary-title {
    color: var(--white);
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.summary-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.detail-item i {
    color: var(--gold);
    font-size: 0.875rem;
}

.btn-modify-search {
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-modify-search:hover {
    background: var(--gold-hover);
}

/* ============================================
   MODAL OVERLAY
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease-out;
}

.modal-content.modal-details {
    max-width: 720px;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
}

.modal-header h2 {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gray-700);
    background: var(--gray-100);
    border-radius: 50%;
}

.modal-body {
    padding: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: 1rem;
}

.btn-cancel {
    flex: 1;
    background: var(--gray-200);
    color: var(--gray-700);
    font-weight: 700;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: var(--gray-300);
}

.btn-update {
    flex: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.btn-update:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    padding: 2.5rem 0;
    background: var(--gray-50);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.results-header p {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    max-width: 32rem;
    margin: 0.25rem auto 0.75rem;
}

.header-underline {
    width: 4rem;
    height: 0.25rem;
    background: var(--gold);
    border-radius: 9999px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Offer Card */
.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-100);
}

.offer-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.offer-card.recommended {
    border-color: #2563eb;
    border-width: 2px;
}

.offer-card.sold-out {
    opacity: 0.75;
}

.offer-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-badge.recommended {
    background: #2563eb;
    color: var(--white);
}

.offer-badge.best-value {
    background: #22c55e;
    color: var(--white);
}

.sold-out-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.sold-out-badge {
    background: #ef4444;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.875rem;
    transform: rotate(-6deg);
}

.offer-header {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.provider-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.provider-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.provider-info h3 {
    color: var(--white);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.provider-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}

.price-info {
    text-align: right;
}

.original-price {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-decoration: line-through;
}

.current-price {
    color: var(--white);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.2;
}

.duration {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
}

.offer-body {
    padding: 1.25rem;
}

.offer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.offer-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gray-600);
    font-size: 0.813rem;
    font-weight: 600;
}

.offer-meta span i {
    color: var(--gold);
    font-size: 0.875rem;
}

.offer-meta .rating {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.offer-meta .rating i {
    color: var(--gold);
    font-size: 0.75rem;
}

.review-count {
    color: var(--gray-400);
    font-size: 0.7rem;
    font-weight: 500;
    margin-left: 0.25rem;
}

.offer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.feature-item i {
    color: var(--gold);
    font-size: 0.75rem;
}

.feature-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
}

.offer-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 0.75rem;
}

.slots {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.813rem;
    font-weight: 600;
}

.slots.available {
    color: #22c55e;
}

.slots.full {
    color: #ef4444;
}

.discount-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: #22c55e;
    background: #dcfce7;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.urgency-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: #fff7ed;
    border-radius: 0.5rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0.75rem;
}

.urgency-message i {
    color: #f97316;
    font-size: 0.75rem;
}

.urgency-message span {
    color: #ea580c;
    font-size: 0.75rem;
    font-weight: 600;
}

.offer-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-more-info {
    flex: 1;
    background: var(--gray-100);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.625rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.813rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.btn-more-info:hover {
    background: var(--gray-200);
}

.btn-book-now {
    flex: 1;
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 700;
    padding: 0.625rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.813rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    text-decoration: none;
}

.btn-book-now:hover {
    background: var(--primary-dark-hover);
}

.btn-book-now i {
    transition: var(--transition);
}

.btn-book-now:hover i {
    transform: translateX(4px);
}

.sold-out-btn {
    background: var(--gray-300);
    cursor: not-allowed;
}

.no-results {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.no-results .suggestion {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.btn-modify-search-alt {
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-modify-search-alt:hover {
    background: var(--gold-hover);
}

/* ============================================
   HELP SECTION
   ============================================ */
.help-section {
    padding: 2.5rem 0;
    background: var(--white);
}

.help-content {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.help-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.help-icon i {
    color: var(--gold);
    font-size: 1.5rem;
}

.help-content h3 {
    font-weight: 900;
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.help-content p {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.help-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.help-phone,
.help-email {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.95rem;
}

.help-phone:hover,
.help-email:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

.help-divider {
    color: var(--gray-300);
}

/* ============================================
   DETAILS MODAL SPECIFIC
   ============================================ */
.details-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark-hover));
    border-bottom: none;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 1.25rem 1.5rem;
    flex-wrap: wrap;
}

.details-header .header-content {
    flex: 1;
    min-width: 200px;
}

.details-header h2 {
    color: var(--white);
    font-size: 1.25rem;
}

.header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 0.375rem;
}

.header-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.header-meta span i {
    color: var(--gold);
    font-size: 0.75rem;
}

.details-header .modal-close {
    color: rgba(255,255,255,0.7);
}

.details-header .modal-close:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Desktop Tab Nav */
.desktop-tab-nav {
    display: none;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--gray-700);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Mobile Tab Selector */
.mobile-tab-selector {
    display: block;
    padding: 0.75rem 1.5rem 0.5rem;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-tab-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-tab-toggle:hover {
    background: var(--gray-100);
}

.mobile-tab-menu {
    display: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-top: 0.25rem;
    overflow: hidden;
}

.mobile-tab-menu.active {
    display: block;
}

.mobile-tab-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.625rem 1rem;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-tab-option:hover {
    background: var(--gray-50);
}

.mobile-tab-option.active {
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
    font-weight: 600;
}

@media (min-width: 992px) {
    .desktop-tab-nav {
        display: flex;
    }
    .mobile-tab-selector {
        display: none;
    }
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.content-card h3 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.content-card h3 i {
    color: var(--gold);
}

.content-text {
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.8;
    white-space: pre-line;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.map-link:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.btn-close-modal {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-close-modal:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    .search-summary {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-modify-search {
        align-self: flex-start;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .offer-actions {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .modal-content.modal-details {
        max-height: 95vh;
    }
    
    .details-header {
        padding: 1rem 1.25rem;
    }
    
    .details-header h2 {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .content-card {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .summary-title {
        font-size: 1rem;
    }
    
    .summary-details {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price-info {
        text-align: left;
        width: 100%;
    }


    
}