/* =====================================================
   BERVIP TRAVEL - Premium Design System
   Dark Luxury Theme with Gold Accents
   ===================================================== */

/* ─── Google Fonts Import ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
    /* Colors - Dark Luxury */
    --bg-primary: #0A0A0F;
    --bg-secondary: #12121C;
    --bg-card: #1A1A2E;
    --bg-card-hover: #222240;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    
    /* Gold Accents */
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #A08030;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D5A3 50%, #C9A84C 100%);
    
    /* Brand Colors */
    --red: #BD2433;
    --red-dark: #9A1D2A;
    --red-light: #E02E40;
    
    /* Text Colors */
    --text-primary: #F5F5F5;
    --text-secondary: #A0A0B8;
    --text-muted: #6B6B80;
    --text-gold: #C9A84C;
    
    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(201, 168, 76, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
    --shadow-glow: 0 0 30px rgba(201, 168, 76, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1280px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

ul, ol {
    list-style: none;
}

/* ─── Container ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ─── Section Styling ─── */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    background: rgba(201, 168, 76, 0.05);
}

.section-badge i {
    font-size: 0.7rem;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 50px;
}

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

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0A0A0F;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #0A0A0F;
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(189, 36, 51, 0.3);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ─── Top Bar ─── */
.top-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
    z-index: 1001;
    position: relative;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a,
.top-bar-left span {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.top-bar-left a:hover {
    color: var(--gold);
}

.top-bar-left i {
    color: var(--gold);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social {
    display: flex;
    gap: 8px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-glass);
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.top-bar-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Language & Currency Dropdowns */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: transparent;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.dropdown-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 140px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--bg-glass-hover);
    color: var(--gold);
}

/* ─── Main Navigation ─── */
.main-nav {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.main-nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 260px; /* Push nav items right to avoid corner logo */
    min-height: 100px; /* Increased header height */
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-base);
}

.logo-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
    transition: all var(--transition-base);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-top {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.logo-text-bottom {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #A0A0B8; /* Grey-gold/muted */
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
}

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

.nav-logo:hover .logo-icon {
    transform: scale(1.05);
}
.nav-logo:hover .logo-text-top {
    color: var(--gold-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    border-radius: 2px;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a {
    color: var(--gold);
}

.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after {
    transform: scaleX(1);
}

/* Submenu */
.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-menu li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.submenu a:hover {
    background: var(--bg-glass-hover);
    color: var(--gold);
    padding-left: 22px;
}

.submenu a i {
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.5;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.nav-phone:hover {
    background: rgba(201, 168, 76, 0.1);
    box-shadow: var(--shadow-glow);
    color: var(--gold-light);
}

.nav-phone i {
    font-size: 1rem;
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); }
    50%, 100% { transform: rotate(0); }
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
    outline: none;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

/* ─── Page Sub-Header (Ultra Compact & Elegant - No Top Gap) ─── */
.page-header {
    display: block !important;
    padding: 20px 0 12px !important;
    margin: 0 !important;
    background: linear-gradient(180deg, #0A0A12 0%, #121220 100%) !important;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.page-header .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.page-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0 !important;
    margin-bottom: 6px !important;
}

.page-header h1 {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #FFFFFF !important;
    margin: 2px 0 4px !important;
    line-height: 1.2 !important;
}

.page-header p {
    color: var(--text-secondary) !important;
    font-size: 0.88rem !important;
    max-width: 500px;
    margin: 0 auto !important;
    line-height: 1.3 !important;
}

/* Breadcrumb nav compact spacing */
.breadcrumb-nav {
    padding: 10px 0;
    background: rgba(10, 10, 18, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
}

/* ─── Hero Section ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.92) 0%,
        rgba(10, 10, 15, 0.7) 40%,
        rgba(10, 10, 15, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0 40px;
    margin-top: -120px;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text .section-badge {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-text h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

/* Hero Reservation Form */
.hero-form-wrapper {
    animation: fadeInRight 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-form {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-form-title {
    text-align: center;
    margin-bottom: 28px;
}

.hero-form-title h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.hero-form-title p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.form-group {
    position: relative;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    padding-left: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-group .form-icon {
    position: absolute;
    left: 14px;
    bottom: 15px;
    color: var(--gold);
    font-size: 0.9rem;
    pointer-events: none;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A84C' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

select.form-control option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.hero-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 6px;
}

/* ─── Cards ─── */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast; /* iOS Safari downscaling fix */
    transition: transform var(--transition-slow);
}

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

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.8) 0%, transparent 50%);
}

.card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.premium-card:hover .card-icon {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ─── Stats Section ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-item:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* ─── Vehicles Grid ─── */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
}

.vehicle-card .card-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.vehicle-card .spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.vehicle-card .spec-item i {
    color: var(--gold);
}

.vehicle-card .card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.vehicle-card .price-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.vehicle-card .price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Regions Grid ─── */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.region-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(18,18,28,0.95)), url('data:image/svg+xml;utf8,<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><path d="M50,150 Q150,50 250,150 T450,150" stroke="%23ffffff" stroke-opacity="0.03" fill="none" stroke-width="2"/><circle cx="50" cy="150" r="4" fill="%23c9a84c" opacity="0.3"/><circle cx="450" cy="150" r="4" fill="%23c9a84c" opacity="0.3"/></svg>');
    background-size: cover;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.region-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(201, 168, 76, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.region-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.region-card:hover::before {
    opacity: 1;
}

.region-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.02));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
}

.region-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px dashed rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.region-card:hover .region-icon::after {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.region-info {
    flex: 1;
}

.region-info h4 {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0;
    line-height: 1.3;
}

.region-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.region-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.03);
    padding: 4px 10px;
    border-radius: 20px;
}

.region-meta i {
    color: var(--gold);
    font-size: 0.75rem;
}

.region-price {
    text-align: right;
    flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.15);
}

.region-price .price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.region-price .price-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Testimonials ─── */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-company {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ─── Blog Grid ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card .card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card .card-date i {
    color: var(--gold);
}

.blog-card .card-body h3 {
    font-size: 1.15rem;
    line-height: 1.4;
}

.blog-card .card-body h3 a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.blog-card .card-body h3 a:hover {
    color: var(--gold);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.card-link:hover {
    gap: 10px;
    color: var(--gold-light);
}

/* ─── CTA Section ─── */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(189, 36, 51, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    color: #fff;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Why Us Section ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.why-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.6rem;
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.why-card h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ─── Footer ─── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand img,
.footer-logo-img {
    height: auto;
    max-height: 75px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-brand .tursab-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 10px 16px;
    background: var(--bg-glass);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.footer-brand .tursab-info i {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 6px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--gold);
}

.footer-hours {
    font-size: 0.9rem;
}

.footer-hours .hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hour-row .day {
    color: var(--text-secondary);
}

.hour-row .time {
    color: var(--gold);
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item .label {
    font-size: 0.8rem;
    color: #9090A8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-contact-item .value {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.footer-contact-item .value a {
    color: var(--text-primary);
}

.footer-contact-item .value a:hover {
    color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #9090A8;
}

.footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-right: 120px;
}

.footer-payments img {
    height: 28px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    filter: grayscale(100%) brightness(2);
}

.footer-payments img:hover {
    opacity: 1;
}

/* ─── WhatsApp Floating Button ─── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
    font-size: 1.8rem;
    transition: all var(--transition-base);
}

.whatsapp-float a:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

/* ─── Scroll to Top ─── */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-4px);
}

[dir="rtl"] .scroll-top {
    right: auto;
    left: 100px;
}

/* ─── Page Header (Inner Pages) ─── */
.page-header {
    padding: 120px 0 20px;
    text-align: center;
    position: relative;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

/* ─── Team Grid Styles ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    justify-content: center;
    align-items: start;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    transition: transform var(--transition-slow);
}

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

.team-card .card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .card-image-overlay {
    opacity: 1;
}

.team-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.team-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 4px;
    text-align: center;
}

.team-card .position {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-align: center;
}

.team-card .bio {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-card .team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.team-card .team-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.team-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.page-header {
    padding: 25px 0 15px !important;
    margin-top: 0 !important;
    text-align: center;
    position: relative;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.page-header h1 {
    position: relative;
    margin-bottom: 8px;
}

.page-header p {
    position: relative;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-primary);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--text-muted);
    margin-right: 8px;
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    content: '‹';
    margin-right: 0;
    margin-left: 8px;
}

.breadcrumb-item.active {
    color: var(--gold);
}

/* ─── Animations ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

/* AOS-like scroll animation classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ─── Preloader ─── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.car-loader {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 12px;
    width: 200px;
    height: 40px;
    position: relative;
}

.car-loader i {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: carDrive 1.2s infinite ease-in-out;
}

@keyframes carDrive {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(160px); opacity: 0; }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    animation: preloaderSlide 1.2s infinite ease-in-out;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ─── Inner Page Content ─── */
.page-content {
    padding: 80px 0;
}

.page-content h2, .page-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content ul, .page-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.page-content li {
    list-style: disc;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 8px;
}

.page-content li::marker {
    color: var(--gold);
}

/* ─── FAQ Accordion ─── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-glass-hover);
}

.faq-question h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    flex: 1;
}

.faq-question .faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.8rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--bg-primary);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ─── Contact Form ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form .form-control {
    padding-left: 16px;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.contact-info-card .info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ─── Google Map ─── */
.map-wrapper {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: brightness(0.8) contrast(1.1) saturate(0.3);
    transition: filter var(--transition-base);
}

.map-wrapper:hover iframe {
    filter: brightness(0.9) contrast(1.05) saturate(0.5);
}

/* ─── Utility Classes ─── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.d-flex { display: flex; }
.gap-2 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* Gold Divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
    margin: 16px 0;
}

.section-header .gold-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Background Patterns */
.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}



/* ─── Page Header (inner pages) ─── */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 25px 0 15px !important; /* ULTRA COMPACT */
    margin-top: 0 !important;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    position: relative;
}

/* ─── Breadcrumb ─── */
.breadcrumb-nav {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.breadcrumb-nav + .section,
.breadcrumb-nav + .section-padding {
    padding-top: 40px !important;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover { color: var(--gold); }

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-muted);
}

.breadcrumb-item.active { color: var(--gold); }

/* ─── Page Content ─── */
.page-content { line-height: 1.8; color: var(--text-secondary); }
.page-content h2, .page-content h3, .page-content h4 { color: var(--text-primary); margin-top: 28px; margin-bottom: 12px; font-family: var(--font-heading); }
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol { margin-bottom: 16px; padding-left: 20px; }
.page-content li { margin-bottom: 8px; }
.page-content img { border-radius: var(--radius-md); max-width: 100%; margin: 16px 0; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item:hover, .faq-item.active { border-color: var(--border-gold); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    color: var(--gold);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: all var(--transition-base);
}

.contact-info-card:hover { border-color: var(--border-gold); }

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 { font-size: 0.85rem; font-weight: 700; font-family: var(--font-body); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.contact-info-card p a { color: var(--text-secondary); }
.contact-info-card p a:hover { color: var(--gold); }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(0.7) contrast(1.1) saturate(0.8);
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.full-width { grid-column: 1 / -1; }

/* ─── AOS Animations ─── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* =====================================================
   HERO DYNAMIC EFFECTS & PARTICLES
   ===================================================== */
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-bg img {
    animation: kenburns 20s ease-out forwards;
}

.hero-content {
    position: relative;
    z-index: 2; /* Above particles */
}

/* =====================================================
   SWIPER SLIDER STYLES (MOBILE)
   ===================================================== */
.swiper {
    width: 100%;
    padding-bottom: 40px !important; /* Space for pagination */
}

.swiper-slide {
    height: auto; /* Allow cards to stretch */
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition-base);
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* On desktop, disable swiper if it's meant only for mobile */
@media (min-width: 992px) {
    .mobile-swiper .swiper-wrapper {
        display: grid !important;
        gap: 30px;
        transform: none !important;
    }
    .mobile-swiper .swiper-slide {
        width: auto !important;
    }
    .mobile-swiper .swiper-pagination {
        display: none !important;
    }
}

/* =====================================================
   ABOUT GRID RESPONSIVE
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =====================================================
   MAP MODAL STYLES
   ===================================================== */
.map-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.map-modal.active {
    opacity: 1;
    visibility: visible;
}

.map-modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

.map-modal.active .map-modal-content {
    transform: scale(1);
}

.map-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.map-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.map-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.map-modal-close:hover {
    color: var(--red);
}

.map-modal-body {
    padding: 20px;
}

.map-modal-search {
    position: relative;
    z-index: 1000;
}

/* =====================================================
   CORNER LOGO STYLES
   ===================================================== */
.corner-logo-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    z-index: 1050; /* Above nav and top bar */
    pointer-events: none;
}

.autocomplete-results {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    z-index: 1050;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.autocomplete-item {
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: var(--bg-card-hover);
    color: var(--gold);
}

.autocomplete-item i {
    color: var(--gold);
    font-size: 1rem;
}

.map-picker-btn {
    position: absolute;
    right: 8px;
    top: 36px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-picker-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.corner-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    border-right: 1px solid var(--border-gold);
    pointer-events: auto;
}

.corner-logo-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    text-decoration: none;
}

.corner-logo-text {
    position: absolute;
    top: 60px;
    left: -15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    transform: rotate(-45deg);
    width: 250px;
}

.corner-logo-text-top {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #F7D060; /* Even brighter gold */
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(247, 208, 96, 0.5); /* Glow effect for extra brightness */
}

@keyframes sweepShine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.corner-logo-text-bottom {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 6px;
    background: linear-gradient(120deg, #e5e5e5 40%, #ffffff 45%, var(--gold) 50%, #ffffff 55%, #e5e5e5 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweepShine 3s linear infinite;
}

/* Push Top Bar content if it overlaps */
.top-bar-left {
    padding-left: 220px;
}

@media (max-width: 991px) {
    .corner-logo-wrapper {
        width: 140px;
        height: 140px;
        position: absolute;
    }
    .top-bar-left {
        padding-left: 0;
    }
    .corner-logo-content {
        top: 0;
        left: 0;
        width: 100%;
    }
    .corner-logo-text {
        top: 25px;
        left: -18px;
        width: 130px;
    }
    .corner-logo-text-top {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
    }
    .corner-logo-text-bottom {
        font-family: 'Playfair Display', serif;
        font-size: 0.7rem;
        letter-spacing: 4px;
    }
    /* Push nav items right to avoid corner-logo overlap */
    .main-nav .container {
        padding-left: 110px;
    }
}

/* ─── Intl-Tel-Input Custom Dark Theme ─── */
.iti {
    width: 100%;
}
/* Intl-Tel-Input input padding fix (flag + dial code space) */
.iti .form-control {
    padding-left: 52px !important;
}
.iti--container {
    z-index: 9999;
}
.iti__country-list {
    background-color: var(--darker, #1A1A2E);
    border: 1px solid var(--border-gold, rgba(201, 168, 76, 0.3));
    color: var(--text-primary, #F5F5F5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}
.iti__country {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.iti__country:hover, .iti__country.iti__highlight {
    background-color: rgba(201, 168, 76, 0.15);
}
.iti__flag-box {
    margin-right: 12px;
    flex-shrink: 0;
}
.iti__dial-code {
    color: var(--gold, #C9A84C);
    font-weight: 600;
    order: 2;
    min-width: 50px;
    text-align: left;
}
.iti__country-name {
    color: var(--text-primary, #F5F5F5);
    font-size: 0.9rem;
    order: 3;
    opacity: 0.8;
    margin-left: 5px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}
.iti__divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.iti__search-input {
    background: var(--bg-card, #1A1A2E);
    color: var(--text-primary, #F5F5F5);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 12px;
    border-radius: 4px;
    margin: 5px;
    width: calc(100% - 10px);
}

/* Fix FAQ Overflow */
.faq-answer-inner {
    word-break: break-word;
    overflow-wrap: break-word;
    padding-right: 15px;
}

/* ─── Route Info Box ─── */
.route-info-box {
    margin: 12px 0;
    animation: routeSlideIn 0.4s ease-out;
}

@keyframes routeSlideIn {
    from { opacity: 0; transform: translateY(-10px); max-height: 0; }
    to { opacity: 1; transform: translateY(0); max-height: 100px; }
}

.route-info-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-md, 10px);
    backdrop-filter: blur(8px);
}

.route-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-info-item > i {
    font-size: 1.3rem;
    color: var(--gold, #C9A84C);
    opacity: 0.9;
}

.route-info-item > div {
    display: flex;
    flex-direction: column;
}

.route-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted, #999);
}

.route-info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold, #C9A84C);
    font-family: var(--font-heading);
}

.route-info-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5), transparent);
}

.route-info-box.loading .route-info-value {
    animation: routePulse 1.2s ease-in-out infinite;
    color: var(--text-muted, #999);
    font-size: 0.85rem;
    font-weight: 400;
}

@keyframes routePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@media (max-width: 480px) {
    .route-info-inner {
        gap: 16px;
        padding: 10px 14px;
    }
    .route-info-value {
        font-size: 0.95rem;
    }
}

/* =====================================================
   SELECTION & FLATPICKR LUXURY DARK THEME STYLES
   ===================================================== */
/* Remove default bright blue selection rectangle */
.form-control::selection,
.flatpickr-input::selection,
input::selection,
div::selection,
span::selection {
    background: rgba(201, 168, 76, 0.35) !important;
    color: #ffffff !important;
}

.form-control::-moz-selection,
.flatpickr-input::-moz-selection,
input::-moz-selection {
    background: rgba(201, 168, 76, 0.35) !important;
    color: #ffffff !important;
}

/* Remove default focus outline and blue ring */
.form-control:focus,
input:focus {
    outline: none !important;
    border-color: #C9A84C !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25) !important;
}

/* Flatpickr Luxury Dark Theme Overrides */
.flatpickr-calendar {
    background: #151522 !important;
    border: 1px solid rgba(201, 168, 76, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8) !important;
    border-radius: 12px !important;
    color: #E1E1E6 !important;
    font-family: inherit !important;
}
.flatpickr-calendar.arrowTop::before, .flatpickr-calendar.arrowTop::after {
    border-bottom-color: #151522 !important;
}
.flatpickr-calendar.arrowBottom::before, .flatpickr-calendar.arrowBottom::after {
    border-top-color: #151522 !important;
}
.flatpickr-months {
    background: #1A1A2E !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    padding: 6px 0 !important;
}
.flatpickr-months .flatpickr-month {
    color: #C9A84C !important;
    font-weight: 700 !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #151522 !important;
    color: #C9A84C !important;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    color: #C9A84C !important;
    fill: #C9A84C !important;
}
.flatpickr-weekdays {
    background: #1A1A2E !important;
}
span.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 600 !important;
}
.flatpickr-day {
    color: #E1E1E6 !important;
    border-radius: 6px !important;
}
.flatpickr-day.today {
    border-color: #C9A84C !important;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
    background: #C9A84C !important;
    border-color: #C9A84C !important;
    color: #000000 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(201, 168, 76, 0.4) !important;
}
.flatpickr-day:hover {
    background: rgba(201, 168, 76, 0.25) !important;
    color: #ffffff !important;
}
.flatpickr-time {
    background: #151522 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    line-height: 40px !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}
.flatpickr-time input {
    color: #C9A84C !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
}
.flatpickr-time input:hover, .flatpickr-time input:focus {
    background: rgba(201, 168, 76, 0.15) !important;
}
.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
    color: #C9A84C !important;
    font-weight: 700 !important;
}
.flatpickr-time .numInputWrapper span.arrowUp::after {
    border-bottom-color: #C9A84C !important;
}
.flatpickr-time .numInputWrapper span.arrowDown::after {
    border-top-color: #C9A84C !important;
}

/* Map Picker Modal Extensions */
.btn-live-location {
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #C9A84C;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-live-location:hover {
    background: #C9A84C;
    color: #000;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}
.map-selected-preview {
    background: rgba(15, 15, 26, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: #E1E1E6;
    display: flex;
    align-items: center;
    word-break: break-word;
}

/* Map Modal Search Results Dropdown */
.map-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #151522;
    border: 1px solid rgba(201,168,76,0.35);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 260px;
    overflow-y: auto;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.map-search-results .map-search-item {
    padding: 10px 15px;
    cursor: pointer;
    color: #ccc;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.map-search-results .map-search-item:hover {
    background: rgba(201,168,76,0.12);
    color: #fff;
}
.map-search-results .map-search-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}
.map-search-results .map-search-item .search-item-name {
    font-weight: 600;
    color: #fff;
}
.map-search-results .map-search-item .search-item-detail {
    font-size: 0.78rem;
    color: #888;
    margin-top: 2px;
}

