/* 
  Monarque Limo - Premium Web Design
  Theme: Black & Gold Luxury
*/

:root {
    color-scheme: dark; /* Natively forces calendar popups and select lists to look premium dark */
    
    /* Colors */
    --black-bg: #0A0A0A;
    --dark-surface: #111111;
    --darker-surface: #161616;
    --white-text: #F5F5F5;
    --gray-text: #A0A0A0;
    
    /* Gold Accents */
    --gold-primary: #C5A059;
    --gold-light: #DFBF83;
    --gold-dark: #8C6D31;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-bg);
    color: var(--white-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Luxury Gold scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 10px;
    border: 2px solid var(--black-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography Utils */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 5vw + 1rem, 5.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

p {
    color: var(--gray-text);
    font-size: 1.125rem;
    max-width: 65ch;
}

.accent-serif {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}

.gold-accent-text {
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Layout Utils */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 5rem;
    width: 100%;
}

.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Glassmorphism Classes */
.glass-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1000;
    padding: 0.75rem 2rem;
    transition: var(--transition-smooth);
}

.glass-nav.scrolled {
    background: rgba(10, 10, 10, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* Gold Shimmer Logo Animation */
.logo-animated {
    filter: drop-shadow(0 0 0px rgba(197, 160, 89, 0));
    animation: logo-gold-pulse 3s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.logo-animated:hover {
    animation: none;
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.9))
             drop-shadow(0 0 24px rgba(197, 160, 89, 0.4));
}

@keyframes logo-gold-pulse {
    0%   { filter: drop-shadow(0 0 0px rgba(197, 160, 89, 0)); }
    40%  { filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.7)) drop-shadow(0 0 16px rgba(197, 160, 89, 0.25)); }
    60%  { filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.7)) drop-shadow(0 0 16px rgba(197, 160, 89, 0.25)); }
    100% { filter: drop-shadow(0 0 0px rgba(197, 160, 89, 0)); }
}


.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--white-text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white-text);
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-mobile-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white-text);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-links a {
    color: var(--white-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Buttons */
.cta-button, .cta-button-small {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.cta-button-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    background: var(--white-text);
    color: var(--black-bg) !important;
}

.cta-button-small:hover {
    background: var(--gold-light);
    color: var(--black-bg) !important;
    transform: translateY(-2px);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-bg);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: -1;
}

.cta-button.primary:hover {
    box-shadow: 0 4px 24px rgba(197, 160, 89, 0.5);
    transform: translateY(-2px);
}

.cta-button.primary:hover::before {
    animation: shine-sweep 1.2s ease-in-out infinite;
}

@keyframes shine-sweep {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.cta-button.secondary {
    background: transparent;
    color: var(--white-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 5rem;
}

.proof-pill {
    display: inline-block;
    padding: 0.35rem 0.75rem; /* Shrunk padding */
    border-radius: 100px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--gold-light);
    font-size: 0.75rem; /* Smaller clean premium font size */
    font-weight: 600;
    margin-bottom: 1.25rem; /* Slightly reduced margin */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.hero-content h1 {
    font-size: clamp(2.25rem, 3.8vw + 0.5rem, 3.75rem); /* Compact premium typography size */
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem); /* Elegantly scaled description size */
    margin-bottom: 1.75rem; /* Compact margin */
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-metrics {
    display: flex;
    gap: 1.5rem;
}

.metric-card {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-radius: 16px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-text);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gold-light);
}

/* Hero Bottom Trust Rail (Ticker) */
.hero-trust-rail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.5); /* Elegant translucent blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.65rem 0; /* Compact vertical padding for a small line */
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.rail-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Soft gradient masks for edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.rail-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 3.5rem;
    align-items: center;
}

.rail-item {
    font-family: var(--font-sans);
    font-size: 0.8rem; /* Small line text size */
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



/* Fleet Section */
.fleet-section {
    background: var(--dark-surface);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.fleet-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vehicle-image {
    height: 240px;
    background: var(--darker-surface);
    /* In a real scenario, put images here */
    position: relative;
}
.vehicle-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

.escalade {
    background-image: url('images/escalade.png');
    background-size: cover;
    background-position: center;
}

.sprinter {
    background-image: url('images/sprinter.png');
    background-size: cover;
    background-position: center;
}

.s680 {
    background-image: url('images/s680.png');
    background-size: cover;
    background-position: center;
}

.fleet-details {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-category {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.vehicle-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.vehicle-specs {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.875rem;
    color: var(--white-text);
    font-weight: 500;
}

/* Global Reach Section */
.global-section {
    background: var(--black-bg);
}

.gold-globe {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: url('images/globe.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.location-item h4 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.location-item p {
    font-size: 0.9375rem;
}

/* CTA / Contact Section */
.cta-section {
    background: var(--black-bg);
    position: relative;
    overflow: hidden;
}

.cta-top-bar {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.cta-headline {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-headline h2 {
    margin: 1rem 0 1.25rem;
}

.cta-headline p {
    margin: 0 auto;
    max-width: 55ch;
}

/* Contact Card Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-luxury-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.contact-luxury-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-luxury-card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(197, 160, 89, 0.1);
}

.contact-luxury-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.contact-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-text);
    font-weight: 600;
}

.contact-card-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card-value.small {
    font-size: 0.9rem;
}

a.contact-card-value:hover {
    color: var(--gold-light);
}

.contact-card-action {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.contact-card-action:hover {
    background: var(--gold-primary);
    color: var(--black-bg);
    transform: scale(1.1);
}

.contact-card-action.muted {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--gray-text);
    cursor: default;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.contact-options .cta-button.secondary {
    border: 1.5px solid rgba(197, 160, 89, 0.5);
    color: var(--gold-light);
}

.contact-options .cta-button.secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold-primary);
    color: var(--white-text);
}



.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem 2rem;
    margin: 2.5rem auto 0;
    padding: 2rem 3rem;
    background: rgba(255,255,255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 20px;
    max-width: 820px;
    width: 100%;
}

.contact-item {
    color: var(--gold-light);
    font-size: 1.125rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

a.contact-item:hover {
    color: var(--white-text);
}

.contact-divider {
    color: rgba(197, 160, 89, 0.35);
    font-size: 1.2rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-options .cta-button.secondary {
    border: 1.5px solid rgba(197, 160, 89, 0.5);
    color: var(--gold-light);
}

.contact-options .cta-button.secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold-primary);
    color: var(--white-text);
}



/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    background: #050505;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    height: 64px;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: var(--white-text);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--gray-text);
    font-size: 0.875rem;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(197, 160, 89, 0.3);
}

/* Services Section */
.services-section {
    background: var(--black-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 14px;
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--gold-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--white-text);
}

.service-card p {
    font-size: 1rem;
}

/* Fleet Book Now Button */
.fleet-book-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 50px;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--darker-surface);
    border-bottom: 1px solid var(--glass-border);
}

.philosophy-text h2 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--white-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    position: relative;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-5px);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(197, 160, 89, 0.2);
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--white-text);
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 1.125rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray-text);
}

/* Globe - no animation */
.gold-globe {
    animation: none;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        margin-top: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
}

/* Magic UI Spotlight Card Hover Border effect */
.hover-lift, .contact-luxury-card {
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.15) !important; /* Base border */
}

/* Set up border beam wrapper */
.hover-lift::after, .contact-luxury-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(
        220px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
        rgba(197, 160, 89, 0.75) 0%,
        rgba(197, 160, 89, 0.25) 50%,
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
}

.hover-lift:hover::after, .contact-luxury-card:hover::after {
    opacity: 1;
}

/* Booking Form Styling */
.booking-form-card {
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2) !important;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grid-2-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: var(--white-text);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

/* Custom styled gold dropdown arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.2rem;
    padding-right: 3rem; /* Extra spacing to prevent text clipping */
    cursor: pointer;
}

/* Hide HTML5 input number spinner controls */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

/* Gold Webkit Calendar Picker indicator */
input::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(15deg);
    cursor: pointer;
}

.form-group select option {
    background-color: var(--darker-surface);
    color: var(--white-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 16px rgba(197, 160, 89, 0.15);
}

.booking-form .submit-btn {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    padding: 1.1rem;
    margin-top: 0.5rem;
}

/* Split Hero Layout styling */
.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 5rem; /* Reduced to bring content higher up */
    padding-bottom: 2.5rem; /* Reduced to leave room for bottom ticker */
    width: 95%;
    max-width: 1600px;
}

.hero-grid {
    align-items: center;
    gap: 8rem;
}

.hero-content {
    margin-top: 2.25rem; /* Pushes content down slightly to clear the navbar overlays */
    max-width: 580px;
}

/* Compacting typography bottom margins in Hero side */
.hero-content p {
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.hero-actions {
    margin-bottom: 2.5rem;
}

.hero-metrics {
    gap: 1rem;
}

.hero-metrics .metric-card {
    padding: 0.75rem 1.25rem;
}

.hero-booking-side {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 450px; /* Highly compact width */
    justify-self: end;
}

.hero-booking-side .booking-form-card {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(197, 160, 89, 0.25) !important;
    padding: 1.25rem 1.75rem; /* Compact card padding */
    border-radius: 18px; /* Slightly tighter border radius */
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.hero-booking-side .booking-form {
    gap: 0.85rem; /* Reduced field gaps */
}

.hero-booking-side .form-group input,
.hero-booking-side .form-group select,
.hero-booking-side .form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.65rem 0.85rem; /* Compact inputs height */
    font-size: 0.9rem;
    border-radius: 10px;
}

/* Explicitly override select right padding to clear custom gold arrow */
.hero-booking-side .form-group select {
    padding-right: 2.75rem !important;
}

.hero-booking-side .booking-form .submit-btn {
    padding: 0.8rem; /* Compact submit buttons */
    margin-top: 0.25rem;
}

/* Responsive adjustments for Booking form and Layout */
@media (max-width: 900px) {
    .hero {
        padding: 7rem 5% 6rem;
        height: auto;
        min-height: 100vh;
        display: block; /* Allow normal document flow height calculation */
        background-attachment: scroll !important; /* Force override for iOS Safari */
        -webkit-background-size: cover; /* Additional iOS fallback */
    }
    
    .hero-container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-grid {
        gap: 3rem;
    }

    .hero-booking-side {
        justify-self: center;
        max-width: 100%;
        width: 100%;
        margin-top: 1rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .hero-metrics {
        justify-content: center;
        width: 100%;
    }
    
    .footer-grid {
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-brand, .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 0.75rem 1.25rem;
        width: 95%;
    }

    .grid-2-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-booking-side .booking-form-card {
        padding: 1.75rem 1.5rem;
    }

    .philosophy-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-cards-grid, .locations-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    section {
        padding: 4rem 0;
    }
}


