/* ============================================
   DARK THEME WITH GLASSMORPHISM
   Ultra-Modern Design Inspired by Reflect.app
   ============================================ */

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a1f;
    --bg-secondary: #0f0f2e;
    --bg-tertiary: #14143d;

    /* Blue Accent Colors (replacing purple) */
    --blue-primary: #2952CC;
    --blue-bright: #4169E1;
    --blue-glow: #5B7FE8;
    --blue-light: #7A93F0;

    /* Glass Colors */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.08);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 128, 255, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   GLASSMORPHISM UTILITIES
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

/* ============================================
   HEADER & NAVIGATION (Floating Pill Style)
   ============================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 1400px;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 36px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}

.nav-actions .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-login {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover {
    color: var(--blue-bright);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.0625rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-bright) 100%);
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

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

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--glass-border);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 31, 0.7) 0%,
        rgba(10, 10, 31, 0.6) 50%,
        rgba(10, 10, 31, 0.8) 100%
    );
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-primary);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--blue-primary);
    }
    50% {
        box-shadow: 0 0 20px var(--blue-primary), 0 0 30px var(--blue-bright);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-locations {
    padding: 24px 32px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-locations p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


/* ============================================
   CARDS & COMPONENTS
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.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);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 413.13px;
}

.card:has(.card-image) {
    padding: 0;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    background: var(--glass-hover);
}

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

.card img {
    transition: all 0.3s ease;
}

.card:hover img {
    transform: translateY(-4px) scale(1.1);
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(204deg) brightness(100%) contrast(107%);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 128, 255, 0.1) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius);
    margin: 0 auto 24px;
    transition: var(--transition);
}

/* Colored Duotone Icon Styles */
.card-icon-hotel {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-color: rgba(251, 191, 36, 0.4);
}

.card-icon-hotel .icon {
    color: #fbbf24;
}

.card-icon-hospital {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, rgba(13, 148, 136, 0.15) 100%);
    border-color: rgba(20, 184, 166, 0.4);
}

.card-icon-hospital .icon {
    color: #14b8a6;
}

.card-icon-restaurant {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.25) 0%, rgba(249, 115, 22, 0.15) 100%);
    border-color: rgba(251, 146, 60, 0.4);
}

.card-icon-restaurant .icon {
    color: #fb923c;
}

.card-icon-garage {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.25) 0%, rgba(71, 85, 105, 0.15) 100%);
    border-color: rgba(100, 116, 139, 0.4);
}

.card-icon-garage .icon {
    color: #94a3b8;
}

.card-icon-event {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(147, 51, 234, 0.15) 100%);
    border-color: rgba(168, 85, 247, 0.4);
}

.card-icon-event .icon {
    color: #a855f7;
}

.card-icon-corporate {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.4);
}

.card-icon-corporate .icon {
    color: #3b82f6;
}

/* Hover effects for colored icons */
.card:hover .card-icon-hotel {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.35) 0%, rgba(245, 158, 11, 0.25) 100%);
    border-color: rgba(251, 191, 36, 0.6);
}

.card:hover .card-icon-hospital {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.35) 0%, rgba(13, 148, 136, 0.25) 100%);
    border-color: rgba(20, 184, 166, 0.6);
}

.card:hover .card-icon-restaurant {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.35) 0%, rgba(249, 115, 22, 0.25) 100%);
    border-color: rgba(251, 146, 60, 0.6);
}

.card:hover .card-icon-garage {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.35) 0%, rgba(71, 85, 105, 0.25) 100%);
    border-color: rgba(100, 116, 139, 0.6);
}

.card:hover .card-icon-event {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35) 0%, rgba(147, 51, 234, 0.25) 100%);
    border-color: rgba(168, 85, 247, 0.6);
}

.card:hover .card-icon-corporate {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(37, 99, 235, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.6);
}

/* Icon Styles - Font Awesome */
.icon {
    font-size: 24px;
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.card-icon .icon {
    font-size: 32px;
    color: var(--blue-bright);
    line-height: 1;
}

.icon-sm {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    line-height: 1;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.card:has(.card-image) .card-title {
    padding: 24px 32px 0 32px;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card:has(.card-image) .card-description {
    padding: 0 32px;
}

.card-link {
    color: var(--blue-bright);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
    align-self: center;
}

.card:has(.card-image) .card-link {
    padding-bottom: 32px;
}

.card-link:hover {
    color: var(--blue-glow);
}

.card-link:hover .icon-sm {
    transform: translateX(4px);
}

.card-link .icon-sm {
    transition: var(--transition);
}

/* ============================================
   CLIENT LIST
   ============================================ */
.clients-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 0;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.client-item {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    position: relative;
    padding: 0 24px;
    text-align: center;
}

.client-item:not(:nth-child(5n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: var(--glass-border);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-bright);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FORMS
   ============================================ */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
    opacity: 0.5;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--blue-bright);
    position: relative;
    padding-bottom: 16px;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-bright));
    border-radius: 2px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1), 0 0 20px rgba(0, 102, 255, 0.05);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-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 16px center;
    padding-right: 40px;
}

/* Style the dropdown menu options */
.form-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 12px;
    border-radius: var(--radius);
}

/* Quote Form Specific Styles */
.quote-form .form-section {
    animation: fadeInUp 0.6s ease-out backwards;
}

.quote-form .form-section:nth-child(1) {
    animation-delay: 0.1s;
}

.quote-form .form-section:nth-child(2) {
    animation-delay: 0.2s;
}

.quote-form .form-section:nth-child(3) {
    animation-delay: 0.3s;
}

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

@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.2));
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--blue-bright);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .header {
        top: 16px;
        width: calc(100% - 32px);
    }

    .nav {
        grid-template-columns: auto 1fr auto;
    }

    .nav-center {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
        justify-self: end;
    }

    .nav-menu.mobile-active {
        position: fixed;
        top: 90px;
        left: 16px;
        right: 16px;
        background: rgba(10, 10, 31, 0.95);
        backdrop-filter: blur(24px);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        flex-direction: column;
        gap: 0;
        padding: 24px;
        display: flex;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.mobile-active li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.mobile-active li:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .hero-locations {
        padding: 20px 24px;
    }

    .hero-locations p {
        font-size: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    /* Fix services page quick navigation on mobile */
    .service-nav-link {
        margin: 8px 0 !important;
    }

    /* Hide separator spans on mobile */
    .service-nav-link + span {
        display: none !important;
    }

    /* Fix service section grid layouts on mobile */
    section[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Fix service event cards grid */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Ensure images are full width on mobile */
    img[style*="width: 100%"] {
        max-width: 100%;
        height: auto;
    }

    .clients-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .client-item {
        font-size: 1rem;
        padding: 0 16px;
    }

    .client-item:not(:nth-child(2n))::after {
        height: 20px;
    }

    .client-item:nth-child(5n)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background: var(--glass-border);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-section {
        padding: 32px 24px;
    }
}

/* ============================================
   GALLERY CAROUSEL
   ============================================ */
.gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 6 - 24px * 6));
    }
}

/* Pause animation on hover */
.gallery-carousel:hover .carousel-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 300px;
        height: 225px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 6 - 24px * 6));
        }
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */
.faq-item {
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 32px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    padding: 0 32px 32px 32px;
}

.faq-icon {
    transition: transform 0.3s ease;
}
