/* ==========================================================================
   ROYAL ELITE LIMO & BLACK CAR SERVICE - STYLESHEET
   Apple iOS Liquid Glass Design System
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Color Palette */
    --primary-bg: #0A0A0B;       /* Matte Black */
    --secondary-bg: #020202;     /* Piano Black */
    --card-bg: #121215;          /* Graphite Dark */
    --text-primary: #F5F5F7;     /* Off-White / Silver Chrome Text */
    --text-secondary: #8E8E93;   /* Muted Grey Text */
    --gold-accent: #D4AF37;      /* Deep Gold Accent */
    --gold-hover: #C5A028;       /* Darker Gold Accent for Hover */
    --silver-chrome: #E2E2E9;    /* Silver accents */
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-blur: 20px;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Gaps & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Animation Easing */
    --ease-ios: cubic-bezier(0.25, 1, 0.5, 1); /* iOS Smooth Easing */
}

/* --- Base Resets & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Smooth custom scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease-ios);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Ambient Light Glows (Liquid Glass Background) --- */
.ambient-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.12;
    transition: transform 0.5s ease;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.blue-glow {
    background: radial-gradient(circle, rgba(0, 113, 227, 0.4) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.gold-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
}

/* --- Glassmorphism UI Panels --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s var(--ease-ios), box-shadow 0.4s var(--ease-ios), background-color 0.4s var(--ease-ios);
    will-change: transform, backdrop-filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- Typography Helper Classes --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gold-text {
    color: var(--gold-accent);
    background: linear-gradient(135deg, #FFF 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s var(--ease-ios);
    border: none;
    outline: none;
    gap: 8px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #B89224 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #E5BF47 0%, var(--gold-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-gold-full {
    display: flex;
    width: 100%;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #B89224 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-full:hover {
    background: linear-gradient(135deg, #E5BF47 0%, var(--gold-accent) 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-gold-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    background: var(--gold-accent);
    color: #000;
    border-radius: var(--radius-sm);
}

.btn-gold-sm:hover {
    background: #E5BF47;
    transform: translateY(-1px);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.btn-glass-full {
    display: flex;
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-glass-full:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

/* --- HEADER / NAVIGATION --- */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.4s var(--ease-ios);
}

/* Shrink navbar on scroll */
.main-header.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    background: rgba(2, 2, 2, 0.85);
    padding: 10px 48px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 !important;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #FFF 0%, var(--silver-chrome) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    margin-top: -2px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-link:hover {
    color: var(--gold-accent);
}

.phone-link i, .phone-link svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s var(--ease-ios);
}

/* Mobile Nav Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 2, 2, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s var(--ease-ios);
}

.mobile-nav-panel.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 80%;
}

.mobile-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mobile-link:hover {
    color: var(--text-primary);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05); /* slightly bigger for parallax scaling */
    transition: transform 0.1s linear;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 11, 0.4) 0%, 
        rgba(10, 10, 11, 0.8) 75%, 
        var(--primary-bg) 100%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    z-index: 10;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A8A8B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.mouse-icon .wheel {
    width: 3px;
    height: 6px;
    background-color: var(--text-primary);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

.hero-booking-widget-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    scroll-margin-top: 120px;
}

.booking-widget {
    padding: 24px;
    width: 100%;
}

.booking-iframe-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    transition: height 0.3s var(--ease-ios);
}

.moovs-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

@media (max-width: 768px) {
    .booking-iframe-container {
        height: 850px;
    }
}


.widget-header {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.widget-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--ease-ios);
}

.widget-tab.active {
    background: var(--glass-bg-hover);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i, .form-group label svg {
    width: 14px;
    height: 14px;
    color: var(--gold-accent);
}

.form-group input, 
.form-group select {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-ios);
    outline: none;
    width: 100%;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus, 
.form-group select:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.form-group-half-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hidden-select {
    display: none;
}

/* Quote Result Pane Styles */
.quote-result-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(25px);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease-ios);
}

.quote-result-pane.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
}

.quote-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.quote-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.quote-close-btn:hover {
    color: var(--text-primary);
}

.quote-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto 0;
}

.quote-price-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--radius-md);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.price-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-accent);
}

.price-notes {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.quote-summary-list {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-summary-list p {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.quote-summary-list p span {
    color: var(--text-primary);
}

.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- TRUST BAR --- */
.trust-bar-section {
    padding: 40px 0;
    position: relative;
    margin-top: -60px;
    z-index: 50;
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.trust-card {
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.trust-card:hover {
    border-color: var(--gold-accent);
    background-color: var(--glass-bg-hover);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-accent);
}

.trust-icon i, .trust-icon svg {
    width: 18px;
    height: 18px;
}

.trust-content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 0.72rem;
    line-height: 1.3;
    color: var(--text-secondary);
}

/* --- FLEET SECTION --- */
.fleet-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
}

.section-header {
    max-width: 600px;
    margin-bottom: 64px;
}

.fleet-showcase-container {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 48px;
    align-items: flex-start;
}

.fleet-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fleet-tab-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease-ios);
}

.fleet-tab-btn span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.fleet-tab-btn small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.fleet-tab-btn:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255,255,255,0.15);
}

.fleet-tab-btn.active {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-accent);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.fleet-tab-btn.active span {
    color: var(--gold-accent);
}

.fleet-display-wrapper {
    position: relative;
    min-height: 480px;
}

.fleet-details-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-ios);
}

.fleet-details-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
}

.fleet-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 80%);
}

.fleet-img {
    width: 100%;
    border-radius: var(--radius-lg);
    transform: scale(0.95);
    transition: transform 0.5s var(--ease-ios);
}

.fleet-details-panel.active .fleet-img {
    transform: scale(1);
}

.fleet-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--secondary-bg) 0%, transparent 100%);
    pointer-events: none;
}

.fleet-info {
    display: flex;
    flex-direction: column;
}

.fleet-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.fleet-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.fleet-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-val {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-val i, .spec-val svg {
    width: 14px;
    height: 14px;
    color: var(--gold-accent);
}

.fleet-features-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fleet-features-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.check-bullet {
    color: var(--gold-accent);
    font-weight: bold;
}

.fleet-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.fleet-rate-box {
    display: flex;
    flex-direction: column;
}

.rate-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.rate-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-accent);
}

.rate-value small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--gold-accent);
    background-color: var(--glass-bg-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gold-accent);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.service-icon i, .service-icon svg {
    width: 22px;
    height: 22px;
}

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

.service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-btn i, .service-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-btn i, .service-card:hover .service-btn svg {
    transform: translateX(4px);
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 64px;
    align-items: center;
}

.highlight-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.highlight-item {
    display: flex;
    gap: 16px;
}

.hl-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-icon i, .hl-icon svg {
    width: 16px;
    height: 16px;
}

.highlight-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Stats panel */
.why-stats-panel {
    padding: 40px;
}

.stats-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.stats-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.stats-header p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-bar-graph {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-title {
    font-size: 0.8rem;
    font-weight: 600;
}

.bar-container {
    width: 100%;
    height: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #E5BF47 100%);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    border-radius: 12px;
}

.bar-footer {
    font-size: 0.68rem;
    color: var(--text-secondary);
}

/* --- SERVICE AREAS SECTION --- */
.service-areas {
    padding: 100px 0;
    background: var(--primary-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.map-container {
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
}

.usa-svg-map {
    width: 100%;
    height: auto;
}

.map-outline {
    fill: rgba(255, 255, 255, 0.015);
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.map-pin-node {
    fill: var(--gold-accent);
    stroke: rgba(212, 175, 55, 0.4);
    stroke-width: 6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-pin-node:hover {
    fill: #FFF;
    stroke: rgba(212, 175, 55, 0.8);
    stroke-width: 12;
}

.map-pin-node.active {
    fill: var(--gold-accent);
    stroke: rgba(212, 175, 55, 0.7);
    stroke-width: 16;
}

.map-label {
    fill: var(--text-secondary);
    font-size: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    pointer-events: none;
    text-anchor: middle;
}

/* City Cards details wrapper */
.city-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 8px;
}

.city-card-item {
    padding: 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-card-item:hover, .city-card-item.active {
    border-color: var(--gold-accent);
    background-color: var(--glass-bg-hover);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
}

.city-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.city-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.city-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.city-card-item p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* --- VIP EXPERIENCE SECTION --- */
.vip-section {
    position: relative;
    padding: 140px 0;
    display: flex;
    align-items: center;
    background: var(--secondary-bg);
}

.vip-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.vip-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.vip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        var(--secondary-bg) 0%, 
        rgba(2, 2, 2, 0.7) 40%, 
        rgba(2, 2, 2, 0.1) 100%);
}

.vip-container {
    z-index: 10;
    position: relative;
}

.vip-content {
    max-width: 600px;
    padding: 48px;
}

.vip-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vip-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.vip-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.vip-feat-item {
    display: flex;
    gap: 16px;
}

.vip-feat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-feat-icon i, .vip-feat-icon svg {
    width: 18px;
    height: 18px;
}

.vip-feat-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.vip-feat-item p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.vip-footer-quote {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.vip-footer-quote p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.vip-footer-quote small {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-wrapper {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(40px);
    transition: all 0.6s var(--ease-ios);
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--gold-accent);
}

.stars i, .stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-accent);
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-primary);
}

.client-info-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold-accent);
}

.avatar-letter {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold-accent);
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.client-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-arrow {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--glass-bg-hover);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.slider-arrow i, .slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold-accent);
    transform: scale(1.3);
}

/* --- BOOKING CTA SECTION --- */
.booking-cta-section {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.cta-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-bg) 0%, 
        rgba(10, 10, 11, 0.85) 60%, 
        var(--secondary-bg) 100%);
}

.cta-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.cta-card {
    width: 100%;
    max-width: 900px;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    max-width: 700px;
}

.cta-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-trust-badge {
    display: flex;
    gap: 32px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.cta-trust-badge span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust-badge i, .cta-trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--gold-accent);
}

/* --- FOOTER --- */
.main-footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
}

.social-icon i, .social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-links-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--silver-chrome);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-links-col ul li a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.contact-details-list li i, .contact-details-list li svg {
    width: 14px;
    height: 14px;
    color: var(--gold-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-details-list li a:hover {
    color: var(--text-primary);
}

/* SEO Content Block in Footer */
.footer-seo-block {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 32px 24px;
    margin-bottom: 40px;
}

.footer-seo-block h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-seo-block p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.footer-seo-block p a {
    color: var(--text-primary);
    font-weight: 500;
}

.footer-seo-block p a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-policy-links {
    display: flex;
    gap: 12px;
}

.footer-policy-links a:hover {
    color: var(--text-primary);
}

.divider {
    color: var(--glass-border);
}

/* Sticky Mobile CTA Bar & Mobile Booking styles */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: 998;
    grid-template-columns: 2fr 1fr;
    padding: 8px 16px;
    gap: 12px;
}

.btn-glass-mobile {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.mobile-booking-trigger {
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Laptops & Desktop under 1250px */
@media (max-width: 1250px) {
    .phone-link {
        display: none;
    }
    .desktop-nav ul {
        gap: 16px;
    }
    .nav-link {
        font-size: 0.85rem;
    }
}

/* Laptops & Desktop under 1200px */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .trust-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .desktop-nav ul {
        gap: 14px;
    }
    .nav-link {
        font-size: 0.82rem;
    }
}

/* Tablets (landscape and portrait) */
@media (max-width: 1024px) {
    .desktop-nav, .header-actions .btn, .phone-link {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-header {
        top: 10px;
        padding: 8px 16px;
        width: 95%;
    }
    
    .main-header.scrolled {
        padding: 10px 24px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-booking-widget-wrapper {
        max-width: 580px;
        margin: 0 auto;
    }
    
    .fleet-showcase-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .fleet-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .fleet-tab-btn {
        flex-shrink: 0;
        padding: 12px 20px;
    }
    
    .fleet-details-panel {
        grid-template-columns: 1fr;
        gap: 32px;
        position: absolute;
        min-height: auto;
    }
    
    .fleet-details-panel.active {
        position: relative;
    }
    
    .fleet-display-wrapper {
        min-height: auto;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .map-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Small Tablets / Large Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .booking-widget {
        padding: 20px;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 120px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .trust-bar-section {
        margin-top: 0;
        padding: 40px 0 20px;
    }
    
    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-stats-panel {
        padding: 24px;
    }
    
    .stats-grid {
        gap: 16px;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-trust-badge {
        flex-direction: column;
        gap: 12px;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .sticky-mobile-cta {
        display: grid;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .booking-widget {
        padding: 10px 8px;
    }
    
    .form-group-half-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-tabs {
        padding-bottom: 12px;
    }
    
    .fleet-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .fleet-actions .btn {
        width: 100%;
    }
    
    .highlight-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        padding: 24px 16px;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    transition: all 0.4s var(--ease-ios);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.scroll-to-top i, .scroll-to-top svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s var(--ease-ios);
}

.scroll-to-top:hover {
    background: var(--glass-bg-hover);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.scroll-to-top:hover i, .scroll-to-top:hover svg {
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px; /* Above the 60px sticky-mobile-cta */
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

