/* ===== PREMIUM LUXURY CAR CARE DESIGN SYSTEM ===== */

/* Modern Color Palette - Inspired by Luxury Car Brands */
:root {
    /* Primary - Deep Luxury Blues & Blacks */
    --primary-black: #0a0e27;
    --primary-navy: #1a1f3a;
    --primary-blue: #2d3561;
    
    /* Accent - Premium Gold & Electric Blue */
    --accent-gold: #c9a961;
    --accent-gold-light: #e4c989;
    --accent-electric: #00d9ff;
    --accent-cyan: #00fff7;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-light: #f5f7fa;
    --gray-medium: #8b95a5;
    --gray-dark: #4a5568;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
    --gradient-gold: linear-gradient(135deg, #c9a961 0%, #e4c989 100%);
    --gradient-electric: linear-gradient(135deg, #00d9ff 0%, #00fff7 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.85) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly elements */
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent text selection on buttons */
button,
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-xl) 0;
    }
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-base);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.5);
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 247, 0.08) 0%, transparent 50%);
    animation: float-bg 20s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ===== HERO SECTION - LUXURY SHOWROOM STYLE ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Logo Container - Premium Badge Style */
.logo-badge {
    display: inline-block;
    padding: var(--spacing-md);
    background: #1a1f3a;
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: float-logo 3s ease-in-out infinite;
}

.logo-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(201, 169, 97, 0.3),
        transparent 60deg
    );
    animation: rotate-border 4s linear infinite;
}

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

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

.logo-badge img {
    position: relative;
    z-index: 1;
    height: 120px;
    width: auto;
}

/* Hero Title - Luxury Typography */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #1a1f3a 0%, #c9a961 50%, #1a1f3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Trust Indicators - Minimal & Elegant */
.trust-indicators {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(145deg, #252d5c, #141830);
    border: 1px solid rgba(201, 169, 97, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.12),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(201, 169, 97, 0.15);
    transform: perspective(600px) rotateX(4deg);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: perspective(600px) rotateX(0deg) translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        0 0 20px rgba(201, 169, 97, 0.3);
    border-color: rgba(201, 169, 97, 0.9);
}

.trust-icon {
    font-size: 1.25rem;
}

/* CTA Buttons - Premium Style */
.cta-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-electric);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--accent-electric);
    color: var(--primary-black);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

/* Stats - Minimal & Clean */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== SERVICES GRID - MODERN CARD LAYOUT ===== */
.services-section {
    background: #ffffff;
    padding: var(--spacing-2xl) 0;
}

.services-section .section-title {
    background: linear-gradient(135deg, #0a0e27 0%, #d4af37 50%, #0a0e27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #c9a961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

/* ===== SERVICES LAYOUT ROWS ===== */
.sg-row {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}
.sg-2col { grid-template-columns: 1fr 1fr; }
.sg-3col { grid-template-columns: repeat(3, 1fr); }
.sg-4col { grid-template-columns: repeat(4, 1fr); }
.sg-full { grid-template-columns: 1fr; }

/* Square cards */
.sg-2col .service-card  { height: 0; padding-bottom: 70%; position: relative; }
.sg-3col .service-card  { height: 0; padding-bottom: 90%; position: relative; }
.sg-4col .service-card  { height: 0; padding-bottom: 100%; position: relative; }
.sg-full .service-card  { height: 260px; }

.sg-2col .service-card .service-card-image,
.sg-3col .service-card .service-card-image,
.sg-4col .service-card .service-card-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.sg-2col .service-card .service-card-overlay,
.sg-3col .service-card .service-card-overlay,
.sg-4col .service-card .service-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.sg-2col .service-card .service-card-content,
.sg-3col .service-card .service-card-content,
.sg-4col .service-card .service-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 14px;
    height: auto;
    justify-content: flex-end;
}

/* Smaller text for 3/4-col cards */
.sg-3col .service-title { font-size: 0.82rem; line-height: 1.2; }
.sg-3col .service-price { font-size: 0.78rem; }
.sg-4col .service-title { font-size: 0.88rem; line-height: 1.2; }
.sg-4col .service-price { font-size: 0.82rem; }
.sg-4col .service-link  { font-size: 0.75rem; }

/* Push content down so badge doesn't overlap title */
.sg-3col .service-card-content,
.sg-4col .service-card-content {
    padding-top: 28px;
}

/* Mobile â€” zoom out effect via scale */
@media (max-width: 768px) {
    .services-section .container {
        padding: 0 8px;
    }
    .sg-row { gap: 8px; margin-bottom: 8px; }

    /* Row 1,2,3 stay 2col */
    .sg-2col { grid-template-columns: 1fr 1fr; }

    /* Row 4 stays 3col on mobile */
    .sg-3col { grid-template-columns: repeat(3, 1fr); }

    /* Row 5 become 2x2 on mobile */
    .sg-4col { grid-template-columns: 1fr 1fr; }

    .sg-3col .service-title { font-size: 0.72rem; }
    .sg-3col .service-price { font-size: 0.68rem; }
    .sg-4col .service-title { font-size: 0.8rem; }
    .sg-4col .service-price { font-size: 0.78rem; }
    .sg-2col .service-title { font-size: 1rem; }
    .sg-2col .service-price { font-size: 0.95rem; }
    .sg-full .service-card  { height: 200px; }
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    height: 450px;
    border: 3px solid rgba(201, 169, 97, 0.75);
    transform: perspective(800px) rotateX(3deg) rotateY(-2deg);
    box-shadow:
        4px 8px 20px rgba(0,0,0,0.5),
        0 0 0 0 rgba(201,169,97,0);
}

.service-card:hover {
    border-color: #c9a961;
    transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.6),
        0 0 25px rgba(201,169,97,0.4);
}

/* sg-row cards override default height */
.sg-2col .service-card,
.sg-3col .service-card,
.sg-4col .service-card {
    height: 0;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.4) 0%, rgba(10, 14, 39, 0.95) 100%);
    z-index: 1;
    transition: var(--transition-base);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.2) 0%, rgba(10, 14, 39, 0.98) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    pointer-events: none;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.service-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-electric);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: var(--spacing-sm);
    color: var(--accent-cyan);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    .logo-badge {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }
    
    .logo-badge img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .trust-indicators {
        gap: var(--spacing-sm);
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        height: 380px;
    }
    
    .service-card-content {
        padding: var(--spacing-md);
    }
    
    .service-title {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: var(--spacing-md);
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .review-card {
        padding: var(--spacing-md);
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Service Detail Pages Mobile */
    .service-detail-hero {
        min-height: 50vh;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .service-detail-hero h1 {
        font-size: 1.75rem !important;
    }
    
    .service-detail-hero p {
        font-size: 1rem !important;
    }
    
    .service-detail-hero .price {
        font-size: 2rem !important;
    }
    
    .service-detail-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-box {
        padding: var(--spacing-md);
    }
    
    .service-gallery {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-gallery img {
        height: 250px;
    }
    
    /* Form Mobile Optimization */
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-group label {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--spacing-sm);
        font-size: 1rem;
    }
    
    .btn-submit,
    .btn-whatsapp {
        padding: var(--spacing-md);
        font-size: 0.9rem;
    }
    
    /* Pricing Table Mobile */
    .pricing-table {
        padding: var(--spacing-md);
        overflow-x: auto;
    }
    
    table {
        font-size: 0.875rem;
    }
    
    th, td {
        padding: var(--spacing-sm);
    }
    
    /* Footer Mobile */
    .footer {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Badges Mobile */
    .premium-badge,
    .popular-badge,
    .new-badge {
        padding: 8px 20px;
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .service-badge {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        padding: 4px var(--spacing-sm);
        font-size: 0.65rem;
    }
    
    /* Back Button Mobile */
    .back-btn {
        padding: 10px 24px;
        font-size: 0.875rem;
        margin: var(--spacing-md) 0;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        width: 100%;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        height: 350px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: var(--spacing-sm);
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .review-card {
        padding: var(--spacing-sm);
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}


/* ===== FOOTER ===== */
.footer {
    background: var(--primary-navy);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-electric);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--primary-navy);
    padding: var(--spacing-2xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 48px rgba(201, 169, 97, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: var(--spacing-md) 0;
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

/* ===== CONTACT FORM ===== */
.contact-section {
    background: var(--primary-black);
    padding: var(--spacing-2xl) 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

/* Select dropdown options styling */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #1a1f3a;
    color: #ffffff;
    padding: 10px;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: #2d3561;
    color: #c9a961;
}

/* Checkbox styling */
input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.btn-submit {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--primary-navy);
    padding: var(--spacing-2xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-electric);
    box-shadow: 0 16px 48px rgba(0, 217, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== TABLES ===== */
.pricing-table {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(201, 169, 97, 0.1);
}

th, td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

td {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366 !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    z-index: 9999 !important;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
}

.whatsapp-float svg {
    width: 36px !important;
    height: 36px !important;
    display: block;
}

.whatsapp-icon {
    font-size: 36px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
    }
    
    .whatsapp-float svg {
        width: 34px !important;
        height: 34px !important;
    }
    
    .whatsapp-icon {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 56px !important;
        height: 56px !important;
    }
    
    .whatsapp-float svg {
        width: 32px !important;
        height: 32px !important;
    }
    
    .whatsapp-icon {
        font-size: 32px;
    }
}

/* ===== MODAL CONTENT â€” WHITE THEME ===== */
.booking-modal .modal-content {
    background: #ffffff !important;
    border: 2px solid rgba(201,169,97,0.4) !important;
}
.booking-modal .modal-content .section-title,
.booking-modal .modal-content h2 {
    color: #1a1f3a !important;
    -webkit-text-fill-color: #1a1f3a !important;
}
.booking-modal .modal-content > p {
    color: #555 !important;
}
.booking-modal .modal-content #modalPrice,
.booking-modal .modal-content #modalServiceLabel {
    color: #c9a961 !important;
}
.booking-modal .modal-content .modal-close {
    color: #999 !important;
}
.booking-modal .modal-content .modal-close:hover {
    color: #1a1f3a !important;
}

/* Success modal white too */
.booking-modal .modal-content[style*="max-width:500px"],
.booking-modal .modal-content[style*="max-width: 500px"] {
    background: #ffffff !important;
}
.booking-modal .modal-content[style*="max-width:500px"] p,
.booking-modal .modal-content[style*="max-width: 500px"] p {
    color: #333 !important;
}

/* ===== FORM FIELDS DARK INSIDE WHITE MODAL ===== */
.booking-modal .modal-content .form-group input,
.booking-modal .modal-content .form-group select,
.booking-modal .modal-content .form-group textarea {
    background: rgba(26,31,58,0.9) !important;
    border: 1px solid rgba(201,169,97,0.3) !important;
    color: #ffffff !important;
}
.booking-modal .modal-content .form-group input:focus,
.booking-modal .modal-content .form-group select:focus,
.booking-modal .modal-content .form-group textarea:focus {
    background: rgba(45,53,97,0.95) !important;
    border-color: #c9a961 !important;
}
.booking-modal .modal-content .form-group input::placeholder,
.booking-modal .modal-content .form-group textarea::placeholder {
    color: rgba(255,255,255,0.4) !important;
}
.booking-modal .modal-content .form-group label {
    color: #c9a961 !important;
}
.booking-modal .modal-content .form-group p,
.booking-modal .modal-content #locationStatus {
    color: #c9a961 !important;
}

/* ===== CONTACT FORM DARK BG INSIDE WHITE MODAL ===== */
.booking-modal .modal-content .contact-form,
.booking-modal .modal-content .dashboard-form {
    background: linear-gradient(135deg, rgba(26,31,58,0.97), rgba(45,53,97,0.95)) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin-top: 8px !important;
}

/* ===== MODAL 3D GOLD BORDER ===== */
.booking-modal .modal-content {
    border: 2px solid #c9a961 !important;
    box-shadow:
        0 0 0 1px rgba(201,169,97,0.3),
        0 8px 0 #a07830,
        0 12px 20px rgba(0,0,0,0.5),
        0 0 40px rgba(201,169,97,0.25),
        inset 0 1px 0 rgba(255,220,100,0.4) !important;
    transform: perspective(1000px) !important;
}

/* ===== CONTACT FORM DARK BOX — 3D GOLD BORDER ===== */
.booking-modal .modal-content .contact-form,
.booking-modal .modal-content .dashboard-form {
    border: 2px solid #c9a961 !important;
    box-shadow:
        0 0 0 1px rgba(201,169,97,0.2),
        0 6px 0 #8a6520,
        0 10px 25px rgba(0,0,0,0.5),
        0 0 30px rgba(201,169,97,0.15),
        inset 0 1px 0 rgba(255,220,100,0.15) !important;
}

/* ===== FORM BOX WHITE BG, DARK INPUTS ===== */
.booking-modal .modal-content .contact-form,
.booking-modal .modal-content .dashboard-form {
    background: #ffffff !important;
}
.booking-modal .modal-content .form-group label {
    color: #1a1f3a !important;
    font-weight: 700 !important;
}
.booking-modal .modal-content .form-group input,
.booking-modal .modal-content .form-group select,
.booking-modal .modal-content .form-group textarea {
    background: rgba(26,31,58,0.92) !important;
    color: #ffffff !important;
    border: 1px solid rgba(201,169,97,0.4) !important;
}
.booking-modal .modal-content .form-group input::placeholder,
.booking-modal .modal-content .form-group textarea::placeholder {
    color: rgba(255,255,255,0.45) !important;
}
.booking-modal .modal-content .form-group p {
    color: #333 !important;
}
.booking-modal .modal-content .form-group #locationStatus {
    color: #c9a961 !important;
}

/* ===== WHITE MODAL — ALL TEXT DARK & CRISP ===== */
.booking-modal .modal-content {
    color: #1a1f3a !important;
}
.booking-modal .modal-content h2,
.booking-modal .modal-content h3,
.booking-modal .modal-content .section-title {
    color: #0a0e27 !important;
    -webkit-text-fill-color: #0a0e27 !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
}
.booking-modal .modal-content > p,
.booking-modal .modal-content > div > p {
    color: #333333 !important;
    font-weight: 500 !important;
}
.booking-modal .modal-content .modal-close {
    color: #555 !important;
    font-weight: 700 !important;
}
.booking-modal .modal-content .modal-close:hover {
    color: #0a0e27 !important;
}
/* OR divider text */
.booking-modal .modal-content p[style*="rgba(255,255,255"] {
    color: #555 !important;
}
