/* 140dbPOST - Elegant Luxury Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

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

:root {
    /* Elegant Dark Color Palette */
    --bg-primary: #1a1a1a;
    --bg-secondary: #222222;
    --bg-tertiary: #262626;
    --bg-card: #242424;
    --bg-card-hover: #2d2d2d;
    
    /* Luxury Accent Colors */
    --accent-gold: #d4af37;
    --accent-champagne: #f7e7ce;
    --accent-bronze: #cd7f32;
    --accent-warm: #faf5f0;
    
    /* Sophisticated Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #888888;
    --text-subtle: #666666;
    
    /* Elegant Borders & Shadows */
    --border-elegant: #333333;
    --border-subtle: #2d2d2d;
    --shadow-elegant: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-subtle: 0 2px 16px rgba(0, 0, 0, 0.2);
    
    /* Refined Spacing */
    --spacing-xs: 0.75rem;
    --spacing-sm: 1.25rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
    
    /* Elegant Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Refined Typography System */
.text-display {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.text-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.text-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--accent-gold);
}

.text-h3 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
}

.text-body-lg {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-secondary);
}

.text-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--text-secondary);
}

.text-sm {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-muted);
}

/* Elegant Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    height: 90px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gold);
}

/* Refined Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    padding: var(--spacing-xs) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-badge .status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    margin-bottom: var(--spacing-lg);
}

.hero p {
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Elegant Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--accent-gold);
    position: relative;
}

.btn-primary {
    background: transparent;
    color: var(--accent-gold);
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-elegant);
}

.btn-secondary:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

/* Elegant Section Layouts */
.section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    position: relative;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: var(--border-elegant);
    margin: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
}

.section-badge {
    display: inline-block;
    background: transparent;
    color: var(--text-muted);
    padding: var(--spacing-xs) 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
}

.section-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Refined Service Cards */
.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding-left: 4px;
    padding-right: 4px;
}

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

.service-item:hover {
    transform: translateX(var(--spacing-sm));
    border-bottom-color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.service-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: var(--accent-champagne);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
    padding-left: var(--spacing-sm);
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 300;
}

.service-image {
    width: 300px;
    height: 200px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover .service-image {
    transform: scale(1.02);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
}

/* Continue with rest of CSS... */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-elegant);
    border-bottom: 1px solid var(--border-elegant);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Waveform */
.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: var(--spacing-xl) 0;
    height: 60px;
}

.wave-bar {
    width: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
    animation: waveform 2s ease-in-out infinite;
    opacity: 0.6;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }

@keyframes waveform {
    0%, 100% { 
        height: 8px; 
        opacity: 0.3;
    }
    50% { 
        height: 40px; 
        opacity: 1;
    }
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-elegant);
    padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-lg);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
    margin-bottom: var(--spacing-xs);
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-elegant);
    color: var(--text-subtle);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mt-xl { margin-top: var(--spacing-xl); }

/* Modern Hero Section Styles */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-bronze));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 90%;
    animation-delay: -15s;
    animation-duration: 40s;
}

.floating-element:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 60%;
    animation-delay: -20s;
    animation-duration: 28s;
}

.floating-element:nth-child(6) {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 5%;
    animation-delay: -25s;
    animation-duration: 33s;
}

.floating-element:nth-child(7) {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 40%;
    animation-delay: -30s;
    animation-duration: 45s;
}

.floating-element:nth-child(8) {
    width: 90px;
    height: 90px;
    top: 90%;
    left: 70%;
    animation-delay: -35s;
    animation-duration: 38s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 70%);
    z-index: 1;
}

/* Modern Hero Content */
.hero-content-modern {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 var(--spacing-lg);
}

.hero-logo-container {
    margin-bottom: var(--spacing-xl);
}

.hero-logo-circle {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.waveform-icon {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.wave-line {
    width: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: waveform-icon 2s ease-in-out infinite;
}

.wave-line:nth-child(1) { animation-delay: 0s; height: 15px; }
.wave-line:nth-child(2) { animation-delay: 0.2s; height: 25px; }
.wave-line:nth-child(3) { animation-delay: 0.4s; height: 35px; }
.wave-line:nth-child(4) { animation-delay: 0.6s; height: 20px; }
.wave-line:nth-child(5) { animation-delay: 0.8s; height: 10px; }

@keyframes waveform-icon {
    0%, 100% { 
        transform: scaleY(0.3); 
        opacity: 0.6;
    }
    50% { 
        transform: scaleY(1); 
        opacity: 1;
    }
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--bg-secondary);
    border: 1px solid var(--border-elegant);
    border-radius: 50px;
    padding: var(--spacing-xs) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.status-dot-modern {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse-modern 2s infinite;
}

@keyframes pulse-modern {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2);
    }
}

.hero-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.brand-highlight {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-subtitle-modern {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-modern {
    margin-bottom: var(--spacing-2xl);
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.btn-primary-modern:hover {
    background: var(--accent-champagne);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-elegant);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive Design for Modern Hero */
@media (max-width: 768px) {
    .hero-content-modern {
        padding: 0 var(--spacing-md);
    }
    
    .hero-logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .hero-social {
        gap: var(--spacing-md);
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .btn-modern {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
}

/* Fix header overlap and scale down elements */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    padding-top: 120px; /* Account for fixed header */
}

.hero-content-modern {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 700px; /* Reduced from 800px */
    padding: 0 var(--spacing-lg);
}

.hero-logo-container {
    margin-bottom: var(--spacing-lg); /* Reduced from xl */
}

.hero-logo-circle {
    width: 100px; /* Reduced from 120px */
    height: 100px; /* Reduced from 120px */
    background: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    border-radius: 18px; /* Slightly smaller radius */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.waveform-icon {
    display: flex;
    align-items: center;
    gap: 2px; /* Reduced from 3px */
    height: 35px; /* Reduced from 40px */
}

.wave-line {
    width: 2px; /* Reduced from 3px */
    background: var(--accent-gold);
    border-radius: 2px;
    animation: waveform-icon 2s ease-in-out infinite;
}

.wave-line:nth-child(1) { animation-delay: 0s; height: 12px; }
.wave-line:nth-child(2) { animation-delay: 0.2s; height: 20px; }
.wave-line:nth-child(3) { animation-delay: 0.4s; height: 28px; }
.wave-line:nth-child(4) { animation-delay: 0.6s; height: 16px; }
.wave-line:nth-child(5) { animation-delay: 0.8s; height: 8px; }

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--bg-secondary);
    border: 1px solid var(--border-elegant);
    border-radius: 50px;
    padding: 8px 16px; /* Slightly smaller padding */
    margin-bottom: var(--spacing-lg); /* Reduced from xl */
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem; /* Slightly smaller */
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem); /* Reduced max size from 5.5rem */
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md); /* Reduced from lg */
}

.hero-subtitle-modern {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem; /* Reduced from 1.25rem */
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl); /* Reduced from 2xl */
    max-width: 500px; /* Reduced from 600px */
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-modern {
    margin-bottom: var(--spacing-xl); /* Reduced from 2xl */
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 28px; /* Slightly smaller padding */
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly smaller */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md); /* Reduced from lg */
    margin-bottom: var(--spacing-lg); /* Reduced from 2xl */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Reduced from 44px */
    height: 40px; /* Reduced from 44px */
    border: 1px solid var(--border-elegant);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-modern {
        padding-top: 100px; /* Slightly less on mobile */
    }
    
    .hero-content-modern {
        padding: 0 var(--spacing-md);
    }
    
    .hero-logo-circle {
        width: 80px;
        height: 80px;
        border-radius: 14px;
    }
    
    .waveform-icon {
        height: 30px;
    }
    
    .hero-social {
        gap: var(--spacing-sm);
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        padding-top: 90px;
    }
    
    .hero-title-modern {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .btn-modern {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Modern Service Cards with Elegant Animations */
.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-xl);
    opacity: 0;
    animation: fadeInBlur 1s ease-out 0.3s forwards;
}

@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

.service-item {
    background: var(--bg-card);
    border: 1px solid var(--border-elegant);
    border-radius: 16px;
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInBlurStagger 0.8s ease-out forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }
.service-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInBlurStagger {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0) scale(1);
    }
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-bronze));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-card-hover);
}

.service-item:hover::before {
    opacity: 1;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.service-content h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-content h3::before {
    background: var(--accent-champagne);
    transform: scale(1.2);
}

.service-item:hover .service-content h3 {
    color: var(--accent-champagne);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
    padding-left: var(--spacing-md);
    padding: var(--spacing-xs) 0;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.75rem;
}

.service-item:hover .service-features li {
    color: var(--text-secondary);
}

/* Remove the old service-image styling and create a modern indicator */
.service-image {
    display: none;
}

/* Add elegant step numbers to services */
.service-item {
    counter-increment: service-counter;
}

.service-content::before {
    content: "0" counter(service-counter);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-item:hover .service-content::before {
    opacity: 1;
    transform: scale(1.1);
    background: var(--accent-champagne);
}

/* Reset counter for services container */
.services-list {
    counter-reset: service-counter;
}

/* Elegant section animations */
.section {
    opacity: 0;
    animation: sectionFadeIn 1s ease-out forwards;
}

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

.section-header {
    opacity: 0;
    animation: headerFadeInBlur 0.8s ease-out 0.2s forwards;
}

@keyframes headerFadeInBlur {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

/* Stats section animation */
.stats-grid {
    opacity: 0;
    animation: statsSlideIn 1s ease-out 0.4s forwards;
}

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

.stat-item {
    opacity: 0;
    animation: statItemFade 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.6s; }
.stat-item:nth-child(2) { animation-delay: 0.8s; }
.stat-item:nth-child(3) { animation-delay: 1.0s; }
.stat-item:nth-child(4) { animation-delay: 1.2s; }

@keyframes statItemFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive updates for new design */
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: var(--spacing-lg);
    }
    
    .service-content::before {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        top: -8px;
        right: -8px;
    }
}

/* Restore original layout with modern styling and blur animations */
.services-list {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInBlur 1s ease-out 0.3s forwards;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: var(--bg-card);
    opacity: 0;
    animation: fadeInBlurStagger 0.8s ease-out forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }
.service-item:nth-child(4) { animation-delay: 0.7s; }

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

@keyframes fadeInBlurStagger {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateX(0);
    }
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-bronze));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateX(var(--spacing-sm));
    border-bottom-color: var(--accent-gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    background: var(--bg-card-hover);
}

.service-item:hover::before {
    opacity: 1;
}

.service-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: var(--accent-champagne);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
    padding-left: var(--spacing-sm);
    padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-sm);
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 300;
}

/* Restore and enhance the service image */
.service-image {
    width: 300px;
    height: 200px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-elegant);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
}

.service-image::before {
    content: '🎵';
    font-size: 3rem;
    opacity: 0.3;
    z-index: 1;
    position: relative;
}

.service-item:hover .service-image {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
}

/* Keep all other animations */
@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

/* Responsive - restore mobile behavior */
@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .service-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-list {
        padding: 0 var(--spacing-md);
    }
    
    .service-item {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

/* Remove circular numbering */
.service-content::before {
    display: none;
}

.services-list {
    counter-reset: none;
}

.service-item {
    counter-increment: none;
}

/* Updated Color Palette - Sophisticated Monochrome */
:root {
    /* Updated Dark Color Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    
    /* Subtle Accent Colors */
    --accent-primary: #ffffff;
    --accent-secondary: #e8e8e8;
    --accent-muted: #9ca3af;
    --accent-subtle: #6b7280;
    
    /* Sophisticated Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --text-subtle: #6b7280;
    --text-faded: #4b5563;
    
    /* Refined Borders & Elements */
    --border-primary: #2d2d2d;
    --border-secondary: #262626;
    --border-subtle: #1f1f1f;
    --border-accent: #374151;
    
    /* Updated Shadows */
    --shadow-elegant: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-subtle: 0 2px 16px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Update service items with new palette */
.service-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.service-item::before {
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-muted));
}

.service-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
}

.service-content h3 {
    color: var(--accent-primary);
}

.service-item:hover .service-content h3 {
    color: var(--accent-secondary);
}

.service-content p {
    color: var(--text-secondary);
}

.service-features {
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
}

.service-features li {
    color: var(--text-muted);
}

.service-features li::before {
    color: var(--accent-muted);
}

.service-image {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
}

.service-image::after {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
}

.service-image::before {
    content: '⚡';
    color: var(--text-faded);
}

.service-item:hover .service-image {
    border-color: var(--border-accent);
}

/* Update other elements */
.hero-modern {
    background: var(--bg-primary);
}

.hero-logo-circle {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-muted);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.waveform-icon .wave-line {
    background: var(--accent-secondary);
}

.hero-badge-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    color: var(--text-muted);
}

.status-dot-modern {
    background: var(--accent-muted);
}

.hero-title-modern {
    color: var(--text-primary);
}

.brand-highlight {
    color: var(--accent-secondary);
}

.hero-subtitle-modern {
    color: var(--text-secondary);
}

.btn-modern {
    border: 2px solid var(--accent-muted);
}

.btn-primary-modern {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-primary-modern:hover {
    background: var(--accent-secondary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.social-link {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    color: var(--text-muted);
}

.social-link:hover {
    border-color: var(--accent-muted);
    color: var(--accent-secondary);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    color: var(--text-muted);
}

/* Update stats section */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.stat-number {
    color: var(--accent-primary);
}

.stat-label {
    color: var(--text-muted);
}

/* Update section headers */
.section-header .section-badge {
    color: var(--text-muted);
}

.section-header .section-badge::after {
    background: var(--accent-muted);
}

.text-h2 {
    color: var(--accent-primary);
}

.text-body-lg {
    color: var(--text-secondary);
}

/* Update header */
header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-subtle);
}

.logo {
    color: var(--accent-secondary);
}

.nav-links a {
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary);
}

.nav-links a.active::after {
    background: var(--accent-primary);
}

/* Update footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
}

.footer-section h4 {
    color: var(--accent-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
}

.footer-section a:hover {
    color: var(--accent-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--border-primary);
    color: var(--text-subtle);
}

/* Tightened Spacing - Slick & Modern */

/* Reduce section spacing */
.section {
    padding: var(--spacing-xl) var(--spacing-lg); /* Reduced from 3xl */
}

.section-header {
    margin-bottom: var(--spacing-lg); /* Reduced from 3xl */
}

.section-badge {
    margin-bottom: var(--spacing-sm); /* Reduced from lg */
}

/* Tighter hero spacing */
.hero-modern {
    padding-top: 100px; /* Reduced from 120px */
}

.hero-content-modern {
    max-width: 600px; /* Reduced from 700px */
}

.hero-logo-container {
    margin-bottom: var(--spacing-md); /* Reduced from lg */
}

.hero-badge-modern {
    padding: 6px 14px; /* Reduced padding */
    margin-bottom: var(--spacing-md); /* Reduced from lg */
}

.hero-title-modern {
    margin-bottom: var(--spacing-sm); /* Reduced from md */
}

.hero-subtitle-modern {
    margin-bottom: var(--spacing-lg); /* Reduced from xl */
    max-width: 450px; /* Reduced from 500px */
}

.hero-cta-modern {
    margin-bottom: var(--spacing-lg); /* Reduced from xl */
}

.hero-social {
    margin-bottom: var(--spacing-md); /* Reduced from lg */
    gap: var(--spacing-sm); /* Reduced from md */
}

/* Compact service items */
.services-list {
    gap: var(--spacing-sm); /* Much tighter between items */
}

.service-item {
    padding: var(--spacing-lg) var(--spacing-md); /* Reduced padding */
    margin-bottom: var(--spacing-sm); /* Reduced from lg */
    gap: var(--spacing-lg); /* Reduced from xl */
}

.service-content h3 {
    margin-bottom: var(--spacing-xs); /* Reduced from sm */
    font-size: 1.5rem; /* Slightly smaller */
}

.service-content p {
    margin-bottom: var(--spacing-sm); /* Reduced from md */
    font-size: 1rem; /* Reduced from 1.1rem */
    line-height: 1.6; /* Tighter line height */
}

.service-features {
    padding: var(--spacing-sm); /* Reduced from md */
    gap: var(--spacing-xs); /* Tighter grid */
}

.service-features li {
    padding: 4px 0 4px var(--spacing-sm); /* Minimal padding */
    font-size: 0.85rem; /* Slightly smaller */
}

/* Compact service image */
.service-image {
    width: 250px; /* Reduced from 300px */
    height: 160px; /* Reduced from 200px */
}

.service-image::before {
    font-size: 2rem; /* Reduced from 3rem */
}

/* Tighter stats section */
.stats-section {
    padding: var(--spacing-lg) var(--spacing-lg); /* Reduced padding */
}

.stats-grid {
    gap: var(--spacing-md); /* Reduced from lg */
}

.stat-item {
    padding: var(--spacing-md) 0; /* Reduced from lg */
}

.stat-number {
    font-size: 2.5rem; /* Reduced from 3rem */
    margin-bottom: 4px; /* Reduced from xs */
}

.stat-label {
    font-size: 0.8rem; /* Slightly smaller */
}

/* Compact buttons */
.btn-modern {
    padding: 12px 24px; /* Reduced from 14px 28px */
    font-size: 0.9rem; /* Slightly smaller */
}

/* Tighter social links */
.social-link {
    width: 36px; /* Reduced from 40px */
    height: 36px; /* Reduced from 40px */
}

/* Compact header */
nav {
    height: 80px; /* Reduced from 90px */
    padding: var(--spacing-sm) var(--spacing-lg); /* Reduced padding */
}

.nav-links {
    gap: var(--spacing-lg); /* Reduced from xl */
}

/* Adjust spacing variables for modern feel */
:root {
    --spacing-xs: 0.5rem; /* Reduced from 0.75rem */
    --spacing-sm: 0.75rem; /* Reduced from 1.25rem */
    --spacing-md: 1.25rem; /* Reduced from 2rem */
    --spacing-lg: 2rem; /* Reduced from 3rem */
    --spacing-xl: 2.5rem; /* Reduced from 4rem */
    --spacing-2xl: 3.5rem; /* Reduced from 6rem */
    --spacing-3xl: 5rem; /* Reduced from 8rem */
}

/* Compact footer */
footer {
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg); /* Reduced padding */
}

.footer-grid {
    gap: var(--spacing-lg); /* Reduced from 2xl */
    margin-bottom: var(--spacing-lg); /* Reduced from xl */
}

.footer-section h4 {
    margin-bottom: var(--spacing-sm); /* Reduced from md */
    font-size: 0.9rem; /* Slightly smaller */
}

.footer-section p,
.footer-section a {
    margin-bottom: 4px; /* Reduced from xs */
    font-size: 0.85rem; /* Reduced from 0.9rem */
    line-height: 1.6; /* Tighter */
}

.footer-bottom {
    padding-top: var(--spacing-sm); /* Reduced from lg */
    font-size: 0.75rem; /* Reduced from 0.8rem */
}

/* Mobile responsive tightening */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) var(--spacing-md); /* Reduced mobile padding */
    }
    
    .hero-modern {
        padding-top: 80px; /* Reduced mobile header space */
    }
    
    .service-item {
        padding: var(--spacing-md) var(--spacing-sm); /* Tighter mobile padding */
        gap: var(--spacing-md); /* Reduced gap */
    }
    
    .service-image {
        width: 200px; /* Smaller on mobile */
        height: 130px;
    }
    
    .stats-grid {
        gap: var(--spacing-sm); /* Tighter mobile stats */
    }
}

@media (max-width: 480px) {
    .hero-content-modern {
        padding: 0 var(--spacing-sm); /* Tighter mobile padding */
    }
    
    .service-item {
        padding: var(--spacing-sm); /* Minimal mobile padding */
    }
    
    .service-features {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}

/* Fix service feature dots/bullets */
.service-features li {
    padding: 4px 0 4px var(--spacing-md); /* Ensure proper left padding for bullet */
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
}

.service-features li::before {
    content: '•'; /* Use bullet dot instead of dash */
    position: absolute;
    left: var(--spacing-xs); /* Position the dot */
    color: var(--accent-muted);
    font-weight: 400;
    font-size: 1rem; /* Make bullet slightly larger */
}

/* Alternative: if you prefer dashes */
/*
.service-features li::before {
    content: '—';
    position: absolute;
    left: var(--spacing-xs);
    color: var(--accent-muted);
    font-weight: 300;
}
*/

/* Alternative: if you prefer checkmarks */
/*
.service-features li::before {
    content: '✓';
    position: absolute;
    left: var(--spacing-xs);
    color: var(--accent-muted);
    font-weight: 600;
    font-size: 0.8rem;
}
*/


/* Remove dots/bullets from service features */
.service-features li::before {
    display: none;
}

.service-features li {
    padding: 4px 0; /* Remove left padding since no bullet */
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
}


/* About Page - Tightened Spacing */

/* About page specific sections */
.about-hero {
    padding: var(--spacing-xl) var(--spacing-lg); /* Reduced from larger padding */
    text-align: center;
}

.about-hero h1 {
    margin-bottom: var(--spacing-sm); /* Reduced spacing after main title */
    font-size: clamp(2.5rem, 6vw, 4rem); /* Slightly smaller max size */
}

.about-hero p {
    margin-bottom: var(--spacing-lg); /* Reduced from larger spacing */
    max-width: 700px; /* Control line length */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem; /* Slightly smaller */
    line-height: 1.6; /* Tighter line height */
}

/* About content sections */
.about-section {
    padding: var(--spacing-lg) var(--spacing-lg); /* Reduced from xl */
    margin-bottom: var(--spacing-md); /* Reduced spacing between sections */
}

.about-section h2 {
    margin-bottom: var(--spacing-sm); /* Reduced from md */
    font-size: 1.75rem; /* Slightly smaller */
}

.about-section h3 {
    margin-bottom: var(--spacing-xs); /* Tighter spacing */
    font-size: 1.5rem;
}

.about-section p {
    margin-bottom: var(--spacing-sm); /* Reduced from md */
    line-height: 1.6; /* Tighter line height */
    font-size: 1rem; /* Consistent with other pages */
}

/* Mission/Vision/Values sections */
.mission-section,
.vision-section,
.values-section {
    display: grid;
    grid-template-columns: 1fr 200px; /* Similar to service layout */
    gap: var(--spacing-lg); /* Reduced gap */
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-md); /* Reduced padding */
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm); /* Tight spacing between sections */
    border: 1px solid var(--border-subtle);
}

.mission-content h3 {
    color: var(--accent-primary);
    margin-bottom: var(--spacing-xs); /* Reduced spacing */
    font-size: 1.5rem;
}

.mission-content p {
    color: var(--text-secondary);
    margin-bottom: 0; /* Remove bottom margin */
    line-height: 1.6;
}

/* Mission icon area */
.mission-icon {
    width: 200px;
    height: 120px; /* Reduced from larger height */
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-primary);
}

.mission-icon::before {
    content: '🎵';
    font-size: 2rem; /* Reduced from larger size */
    opacity: 0.4;
}

/* Team section tightening */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min width */
    gap: var(--spacing-md); /* Reduced from lg */
    margin-top: var(--spacing-lg);
}

.team-member {
    background: var(--bg-card);
    padding: var(--spacing-md); /* Reduced from lg */
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.team-member h4 {
    margin-bottom: var(--spacing-xs); /* Reduced spacing */
    color: var(--accent-primary);
    font-size: 1.1rem; /* Slightly smaller */
}

.team-member p {
    margin-bottom: 0;
    font-size: 0.9rem; /* Smaller text */
    line-height: 1.5; /* Tighter line height */
    color: var(--text-secondary);
}

/* About page responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: var(--spacing-lg) var(--spacing-md); /* Reduced mobile padding */
    }
    
    .about-section {
        padding: var(--spacing-md) var(--spacing-md); /* Reduced mobile padding */
    }
    
    .mission-section,
    .vision-section,
    .values-section {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: var(--spacing-md);
        padding: var(--spacing-md); /* Reduced mobile padding */
        text-align: center;
    }
    
    .mission-icon {
        margin: 0 auto;
        width: 150px; /* Smaller on mobile */
        height: 100px;
    }
    
    .team-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: var(--spacing-sm); /* Tighter mobile spacing */
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.2rem; /* Smaller on small screens */
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .team-member {
        padding: var(--spacing-sm); /* Minimal mobile padding */
    }
}


/* Much tighter About page spacing */

/* Drastically reduce main about section padding */
.section {
    padding: var(--spacing-md) var(--spacing-lg); /* Much smaller - was xl */
}

/* About hero - much tighter */
.about-hero,
.hero-about {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-sm); /* Much reduced bottom padding */
}

.about-hero h1,
.hero-about h1 {
    margin-bottom: var(--spacing-xs); /* Minimal gap after title */
}

.about-hero p,
.hero-about p {
    margin-bottom: var(--spacing-md); /* Much smaller gap */
    font-size: 1rem; /* Smaller text */
    line-height: 1.5;
}

/* Mission section - compact */
.mission-section,
.about-content {
    padding: var(--spacing-sm) var(--spacing-md); /* Much smaller padding */
    margin-bottom: var(--spacing-xs); /* Minimal gap between sections */
}

/* Team section header - tight */
.team-header {
    padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-xs); /* Minimal padding */
    text-align: center;
}

.team-header h2 {
    margin-bottom: var(--spacing-xs); /* Minimal gap */
}

.team-header p {
    margin-bottom: var(--spacing-sm); /* Small gap */
}

/* Team grid - compact */
.team-grid {
    padding: 0 var(--spacing-lg) var(--spacing-md); /* Minimal top padding */
    gap: var(--spacing-sm); /* Tight grid gaps */
}

.team-member {
    padding: var(--spacing-sm); /* Much smaller padding */
}

.team-member h4 {
    margin-bottom: 2px; /* Minimal gap */
    font-size: 1rem;
}

.team-member p {
    font-size: 0.85rem; /* Smaller text */
    line-height: 1.4;
}

/* Override any large margins/padding on about page */
.about-page .section {
    padding: var(--spacing-sm) var(--spacing-lg); /* Override with minimal padding */
}

.about-page .section:first-child {
    padding-top: var(--spacing-lg); /* Just enough to clear header */
}

/* Remove excessive spacing from section headers */
.section-header {
    margin-bottom: var(--spacing-sm); /* Much smaller */
    text-align: center;
}

.section-badge {
    margin-bottom: var(--spacing-xs); /* Minimal */
}

/* Mobile - even tighter */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-xs) var(--spacing-md); /* Very tight mobile */
    }
    
    .about-hero,
    .hero-about {
        padding: var(--spacing-md) var(--spacing-md) var(--spacing-xs);
    }
    
    .team-grid {
        padding: 0 var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-xs); /* Very tight mobile grid */
    }
}

/* Force tighter spacing on all about content */
.about-content h3 {
    margin-bottom: var(--spacing-xs);
}

.about-content p {
    margin-bottom: var(--spacing-xs);
}


/* About page - Our Mission section - make it compact */
.about-page .mission-section,
.about-page .about-content .mission-section,
.about-mission-section {
    padding: var(--spacing-sm) var(--spacing-md); /* Much smaller padding */
    margin: var(--spacing-sm) 0; /* Tight margins */
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    display: grid;
    grid-template-columns: 1fr 120px; /* Smaller right column */
    gap: var(--spacing-sm); /* Smaller gap */
    align-items: center;
    min-height: auto; /* Remove any minimum height */
    max-height: 100px; /* Strict height limit */
}

/* Our Mission title */
.about-page .mission-section h3,
.about-mission-section h3 {
    margin-bottom: 4px; /* Minimal spacing */
    font-size: 1.1rem; /* Smaller title */
    color: var(--accent-primary);
}

/* Our Mission text */
.about-page .mission-section p,
.about-mission-section p {
    margin-bottom: 0; /* No bottom margin */
    font-size: 0.85rem; /* Much smaller text */
    line-height: 1.3; /* Very tight line height */
    color: var(--text-secondary);
}

/* Mission icon - much smaller */
.about-page .mission-icon,
.mission-icon-small {
    width: 120px; /* Much smaller */
    height: 70px; /* Much smaller */
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .mission-icon::before,
.mission-icon-small::before {
    font-size: 1.2rem; /* Smaller icon */
    opacity: 0.4;
}

/* Force compact on mobile */
@media (max-width: 768px) {
    .about-page .mission-section,
    .about-mission-section {
        grid-template-columns: 1fr; /* Stack */
        padding: var(--spacing-xs) var(--spacing-sm); /* Very tight */
        max-height: none; /* Allow natural height on mobile */
        text-align: center;
    }
    
    .about-page .mission-icon,
    .mission-icon-small {
        width: 80px;
        height: 50px;
        margin: var(--spacing-xs) auto 0;
    }
}


/* Remove outer box styling - keep just inner content */
.about-page .mission-section,
.about-mission-section {
    background: none; /* Remove outer background */
    border: none; /* Remove outer border */
    border-radius: 0; /* Remove outer border radius */
    padding: 0; /* Remove outer padding */
    margin: var(--spacing-sm) 0; /* Keep just margin */
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: var(--spacing-sm);
    align-items: center;
    max-height: none; /* Remove height restriction */
}

/* Keep the inner content styled */
.mission-content {
    background: var(--bg-card); /* Inner box styling */
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md); /* Inner padding */
}

.mission-content h3 {
    margin-bottom: 4px;
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.mission-content p {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--text-secondary);
}

/* Keep the icon as is */
.about-page .mission-icon,
.mission-icon-small {
    width: 120px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .about-page .mission-section,
    .about-mission-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xs);
    }
    
    .mission-content {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .about-page .mission-icon,
    .mission-icon-small {
        width: 80px;
        height: 50px;
        margin: 0 auto;
    }
}


/* Forcefully remove double box effect on About page */
.about-content,
.about-section,
.mission-section,
.about-page .section {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: var(--spacing-sm) 0 !important;
    margin: var(--spacing-xs) 0 !important;
}

/* Force grid layout without outer styling */
.about-content {
    display: grid !important;
    grid-template-columns: 1fr 120px !important;
    gap: var(--spacing-sm) !important;
    align-items: center !important;
}

/* Style only the inner text content */
.about-content h3 {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    padding: var(--spacing-sm) var(--spacing-md) !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    color: var(--accent-primary) !important;
}

.about-content p {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-top: none !important;
    border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
    padding: 0 var(--spacing-md) var(--spacing-sm) !important;
    margin: 0 !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    color: var(--text-secondary) !important;
}

/* Mobile override */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}


/* Make Our Mission box match team member boxes exactly */
.about-content,
.mission-section {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    padding: var(--spacing-md) !important;
    margin-bottom: var(--spacing-sm) !important;
    display: block !important; /* Remove grid layout */
    grid-template-columns: none !important;
    gap: 0 !important;
}

/* Match team member heading style */
.about-content h3 {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: var(--spacing-xs) !important;
    color: var(--accent-primary) !important;
    font-size: 1.1rem !important;
}

/* Match team member text style */
.about-content p {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: var(--text-secondary) !important;
}

/* Remove the icon area completely */
.mission-icon {
    display: none !important;
}


/* Clean up team section text formatting */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.team-member {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 100px; /* Text content + icon area */
    gap: var(--spacing-md);
    align-items: center;
}

.team-member-content {
    /* Clean text container */
}

.team-member h4 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    /* Remove any weird formatting */
    white-space: normal;
    word-wrap: break-word;
}

.team-member p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    /* Clean text formatting */
    white-space: normal;
    word-wrap: break-word;
    text-align: left;
}

/* Team member icon area */
.team-member-icon {
    width: 100px;
    height: 70px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-icon::before {
    content: '⚡';
    font-size: 1.5rem;
    opacity: 0.4;
    color: var(--text-faded);
}

/* Mobile layout - stack vertically */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    .team-member-icon {
        width: 80px;
        height: 50px;
        margin: 0 auto;
    }
}

/* Force clean formatting for any existing content */
.team-member * {
    box-sizing: border-box;
}


/* Fix Our Mission section - target the actual inline styled container */
.section .container > div[style*="background: var(--bg-secondary)"] {
    padding: var(--spacing-md) !important; /* Override the large inline padding */
    margin-bottom: var(--spacing-md) !important; /* Reduce large margin */
}

/* Clean up Our Mission service-item */
.section .container > div[style*="background: var(--bg-secondary)"] .service-item {
    display: grid !important;
    grid-template-columns: 1fr 200px !important; /* Smaller right column */
    gap: var(--spacing-md) !important;
    align-items: center !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content h3 {
    margin-bottom: var(--spacing-xs) !important;
    font-size: 1.25rem !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content p {
    font-size: 0.95rem !important; /* Override the large inline font size */
    line-height: 1.5 !important; /* Override the large line height */
    margin-bottom: 0 !important;
}

/* Fix team section - these are using .services-list and .service-item */
.services-list .service-item .service-content h3 {
    margin-bottom: var(--spacing-xs) !important;
    font-size: 1.1rem !important;
    color: var(--accent-primary) !important;
}

.services-list .service-item .service-content p {
    margin-bottom: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: var(--text-secondary) !important;
}

/* Make team member cards more compact */
.services-list .service-item {
    padding: var(--spacing-md) !important;
    margin-bottom: var(--spacing-sm) !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
}

/* Shrink the waveform in Our Mission */
.section .container > div[style*="background: var(--bg-secondary)"] .waveform {
    height: 120px !important; /* Override inline height */
    width: 200px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section .container > div[style*="background: var(--bg-secondary)"] .service-item {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .section .container > div[style*="background: var(--bg-secondary)"] {
        padding: var(--spacing-sm) !important;
    }
}


/* Make About page completely consistent */

/* Reset all section spacing to be uniform */
.section .container > * {
    margin-bottom: var(--spacing-md) !important;
}

/* Make Our Mission section match team cards exactly */
.section .container > div[style*="background: var(--bg-secondary)"] {
    background: var(--bg-card) !important; /* Match team card background */
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    padding: var(--spacing-md) !important; /* Match team card padding */
    margin-bottom: var(--spacing-sm) !important; /* Match team card spacing */
}

/* Remove the nested service-item styling in Our Mission */
.section .container > div[style*="background: var(--bg-secondary)"] .service-item {
    display: block !important; /* Remove grid */
    border: none !important;
    padding: 0 !important;
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Style Our Mission content to match team cards */
.section .container > div[style*="background: var(--bg-secondary)"] .service-content h3 {
    margin-bottom: var(--spacing-xs) !important;
    font-size: 1.1rem !important;
    color: var(--accent-primary) !important;
    font-weight: 500 !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content p {
    font-size: 0.9rem !important; /* Match team card text size */
    line-height: 1.5 !important; /* Match team card line height */
    margin-bottom: 0 !important;
    color: var(--text-secondary) !important;
}

/* Hide the waveform in Our Mission to match team cards */
.section .container > div[style*="background: var(--bg-secondary)"] .waveform {
    display: none !important;
}

/* Make team cards consistent */
.services-list {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Single column like mission */
    gap: var(--spacing-sm) !important;
    margin-top: 0 !important;
}

.services-list .service-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    padding: var(--spacing-md) !important;
    margin-bottom: 0 !important; /* Remove since gap handles spacing */
    display: block !important; /* Remove grid layout */
    transform: none !important; /* Remove hover effects */
    box-shadow: none !important;
}

.services-list .service-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Hide team card icons to match mission */
.services-list .service-item .service-image {
    display: none !important;
}

/* Consistent team card text */
.services-list .service-item .service-content h3 {
    margin-bottom: var(--spacing-xs) !important;
    font-size: 1.1rem !important;
    color: var(--accent-primary) !important;
    font-weight: 500 !important;
}

.services-list .service-item .service-content p {
    margin-bottom: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: var(--text-secondary) !important;
}

/* Consistent section headers */
.section-header {
    margin-bottom: var(--spacing-lg) !important;
}

.section-header h1,
.section-header h2 {
    margin-bottom: var(--spacing-xs) !important;
}

.section-header p {
    margin-bottom: 0 !important;
}

/* Stats section consistency */
.stats-grid {
    margin-top: var(--spacing-lg) !important;
    margin-bottom: var(--spacing-lg) !important;
}

/* Bottom buttons */
.section .container > div[style*="text-align: center"] {
    margin-top: var(--spacing-lg) !important;
}

/* Mobile consistency */
@media (max-width: 768px) {
    .section .container > div[style*="background: var(--bg-secondary)"],
    .services-list .service-item {
        padding: var(--spacing-sm) !important;
    }
}


/* REVERT - Remove all the aggressive overrides I just added */

/* Restore Our Mission section */
.section .container > div[style*="background: var(--bg-secondary)"] {
    background: var(--bg-secondary) !important; /* Back to original */
    border: none !important;
    border-radius: var(--radius-lg) !important;
    padding: var(--spacing-3xl) !important; /* Back to original inline style */
    margin-bottom: var(--spacing-3xl) !important;
}

/* Restore Our Mission service-item grid */
.section .container > div[style*="background: var(--bg-secondary)"] .service-item {
    display: grid !important; /* Restore grid */
    grid-template-columns: 1fr 300px !important;
    gap: var(--spacing-xl) !important;
    align-items: center !important;
    border: none !important;
    padding: 0 !important;
    background: none !important;
    transform: translateX(var(--spacing-sm)) !important; /* Restore hover if needed */
}

/* Restore Our Mission text styling */
.section .container > div[style*="background: var(--bg-secondary)"] .service-content h3 {
    font-size: 1.75rem !important;
    color: var(--accent-gold) !important; /* Back to gold */
    margin-bottom: var(--spacing-sm) !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content p {
    font-size: 1.2rem !important; /* Back to inline style */
    line-height: 1.8 !important; /* Back to inline style */
    color: var(--text-secondary) !important;
}

/* Restore the waveform */
.section .container > div[style*="background: var(--bg-secondary)"] .waveform {
    display: flex !important;
    height: 200px !important; /* Back to inline style */
    width: 300px !important;
}

/* Restore team section grid layout */
.services-list .service-item {
    display: grid !important; /* Restore grid */
    grid-template-columns: 1fr 300px !important;
    gap: var(--spacing-xl) !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    transform: none !important;
}

.services-list .service-item:hover {
    transform: translateX(var(--spacing-sm)) !important; /* Restore hover */
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15) !important;
}

/* Restore team card icons */
.services-list .service-item .service-image {
    display: flex !important;
    width: 300px !important;
    height: 200px !important;
}

/* Restore team text styling */
.services-list .service-item .service-content h3 {
    font-size: 1.75rem !important;
    color: var(--accent-gold) !important;
}


/* Remove jarring shift animations, keep only glow */

/* Remove shift from service items */
.service-item:hover {
    transform: none !important; /* Remove the translateX shift */
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08) !important; /* Keep subtle glow */
    border-color: var(--border-accent) !important;
    background: var(--bg-card-hover) !important;
}

/* Remove shift from homepage services */
.services-list .service-item:hover {
    transform: none !important; /* Remove translateX */
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08) !important; /* Keep glow */
    border-color: var(--border-accent) !important;
}

/* Remove shift from team member cards */
.team-member:hover {
    transform: none !important;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08) !important;
}

/* Keep other hover effects like text color changes */
.service-item:hover .service-content h3 {
    color: var(--accent-secondary) !important;
}

.service-item:hover .service-image {
    transform: scale(1.02) !important; /* Keep subtle image scale */
    border-color: var(--border-accent) !important;
}


/* Progressive Blur Reveal on Scroll */

/* Initial state - elements start blurred and hidden */
.fade-in-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed state */
.fade-in-blur.revealed {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Apply to different elements with staggered delays */
.service-item {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item.revealed {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.section-header {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.revealed {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.stat-item {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(25px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.revealed {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) scale(1);
}

/* Stagger animation delays for multiple items */
.service-item:nth-child(1).revealed { transition-delay: 0.1s; }
.service-item:nth-child(2).revealed { transition-delay: 0.2s; }
.service-item:nth-child(3).revealed { transition-delay: 0.3s; }
.service-item:nth-child(4).revealed { transition-delay: 0.4s; }

.stat-item:nth-child(1).revealed { transition-delay: 0.1s; }
.stat-item:nth-child(2).revealed { transition-delay: 0.2s; }
.stat-item:nth-child(3).revealed { transition-delay: 0.3s; }
.stat-item:nth-child(4).revealed { transition-delay: 0.4s; }

/* Remove the old static animations */
.services-list,
.stats-grid {
    opacity: 1 !important;
    animation: none !important;
    filter: none !important;
    transform: none !important;
}


/* Constrain portfolio grid to match services width */
.portfolio-grid {
    max-width: 1000px; /* Match services-list max-width */
    margin: var(--spacing-2xl) auto 0; /* Center it like services */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Change portfolio overlay to grey instead of beige */
.portfolio-item-overlay {
    background: rgba(40, 40, 40, 0.9) !important; /* Dark grey overlay */
}

/* Responsive portfolio grid with same constraints */
@media (max-width: 768px) {
    .portfolio-grid {
        max-width: 1000px; /* Keep same constraint */
        margin: var(--spacing-xl) auto 0;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        max-width: 1000px; /* Keep same constraint */
        margin: var(--spacing-lg) auto 0;
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}


/* Make section badge text larger */
.section-badge {
    font-size: 0.95rem !important; /* Increased from 0.75rem */
    font-weight: 600 !important; /* Make it slightly bolder */
    letter-spacing: 0.2em !important; /* Increase letter spacing for impact */
    text-transform: uppercase !important;
    color: var(--text-muted) !important;
    margin-bottom: var(--spacing-lg) !important;
}

/* Alternative larger version if you want it even bigger */
/*
.section-badge {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.25em !important;
}
*/


/* Remove lightning bolt placeholder from facility images */
.service-image::before {
    display: none !important; /* Remove the lightning bolt placeholder */
}

/* Fix alignment of facility specs box */
.service-item {
    display: grid !important;
    grid-template-columns: 1fr 300px !important;
    gap: var(--spacing-xl) !important;
    align-items: flex-start !important; /* Change from center to flex-start */
    padding: var(--spacing-lg) var(--spacing-md) !important;
}

/* Ensure the service content and specs are properly aligned */
.service-content {
    display: flex !important;
    flex-direction: column !important;
}

/* Style the specs list to align with the text */
.service-features {
    margin-top: auto !important; /* Push specs to bottom of content area */
    width: 100% !important;
}

/* For facilities page specifically - ensure specs align with main text */
.facilities-page .service-features,
.service-content .service-features {
    align-self: flex-start !important;
    margin-top: var(--spacing-sm) !important;
}

/* Mobile alignment fix */
@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr !important;
        align-items: center !important;
        text-align: center !important;
    }
}


/* Make Our Mission box smaller to match team boxes */
.section .container > div[style*="background: var(--bg-secondary)"] {
    padding: var(--spacing-md) !important; /* Much smaller - override the 3xl inline padding */
    margin-bottom: var(--spacing-md) !important; /* Reduce large margin */
    background: var(--bg-card) !important; /* Match team box background */
    border: 1px solid var(--border-subtle) !important;
}

/* Ensure Our Mission content is compact */
.section .container > div[style*="background: var(--bg-secondary)"] .service-item {
    display: block !important; /* Remove grid to make it compact like team boxes */
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content {
    width: 100% !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content h3 {
    margin-bottom: var(--spacing-xs) !important;
    font-size: 1.1rem !important; /* Match team box title size */
    color: var(--accent-primary) !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content p {
    font-size: 0.9rem !important; /* Match team box text size */
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    color: var(--text-secondary) !important;
}

/* Hide the waveform to make it compact like team boxes */
.section .container > div[style*="background: var(--bg-secondary)"] .waveform {
    display: none !important;
}

/* Make section titles larger */
.section-header h1,
.text-h1 {
    font-size: clamp(3.5rem, 8vw, 5.5rem) !important; /* Increased from smaller size */
}

.section-header h2,
.text-h2 {
    font-size: clamp(2.75rem, 6vw, 4.5rem) !important; /* Increased from smaller size */
}

/* Ensure section headers have proper spacing */
.section-header {
    margin-bottom: var(--spacing-lg) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section .container > div[style*="background: var(--bg-secondary)"] {
        padding: var(--spacing-sm) !important;
    }
    
    .section-header h1,
    .text-h1 {
        font-size: 2.5rem !important;
    }
    
    .section-header h2,
    .text-h2 {
        font-size: 2rem !important;
    }
}


/* Constrain Our Mission box width to match team boxes */
.section .container > div[style*="background: var(--bg-secondary)"] {
    max-width: 1000px !important; /* Match services-list max-width */
    margin: 0 auto var(--spacing-md) !important; /* Center it like services */
    padding: var(--spacing-xl) var(--spacing-lg) !important; /* Reduce horizontal padding */
    height: auto !important; /* Let it be as tall as it needs */
    max-height: none !important; /* Remove height restrictions */
}

/* Restore the grid layout but with smaller right column */
.section .container > div[style*="background: var(--bg-secondary)"] .service-item {
    display: grid !important;
    grid-template-columns: 1fr 200px !important; /* Smaller waveform area */
    gap: var(--spacing-lg) !important;
    align-items: center !important;
}

/* Show the waveform but make it smaller */
.section .container > div[style*="background: var(--bg-secondary)"] .waveform {
    display: flex !important;
    width: 200px !important; /* Smaller than original 300px */
    height: 120px !important; /* Smaller than original 200px */
}

/* Mobile - full width */
@media (max-width: 768px) {
    .section .container > div[style*="background: var(--bg-secondary)"] {
        max-width: 100% !important;
        margin: 0 0 var(--spacing-md) !important;
        padding: var(--spacing-lg) var(--spacing-md) !important;
    }
    
    .section .container > div[style*="background: var(--bg-secondary)"] .service-item {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}


/* Increase Our Mission text sizes to match team text */
.section .container > div[style*="background: var(--bg-secondary)"] .service-content h3 {
    font-size: 1.75rem !important; /* Match team member title size */
    margin-bottom: var(--spacing-sm) !important;
    color: var(--accent-primary) !important;
    font-weight: 400 !important;
}

.section .container > div[style*="background: var(--bg-secondary)"] .service-content p {
    font-size: 1.1rem !important; /* Match team member description size */
    line-height: 1.7 !important; /* Match team member line height */
    margin-bottom: 0 !important;
    color: var(--text-secondary) !important;
    font-weight: 300 !important;
}

/* Mobile text scaling */
@media (max-width: 768px) {
    .section .container > div[style*="background: var(--bg-secondary)"] .service-content h3 {
        font-size: 1.5rem !important;
    }
    
    .section .container > div[style*="background: var(--bg-secondary)"] .service-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}


/* Make section badges much larger with wider lines */
.section-badge {
    font-size: 1.25rem !important; /* Much larger from 0.95rem */
    font-weight: 600 !important;
    letter-spacing: 0.3em !important; /* More spacing for impact */
    text-transform: uppercase !important;
    color: var(--text-muted) !important;
    margin-bottom: var(--spacing-lg) !important;
    position: relative !important;
}

/* Make the line divider much wider */
.section-badge::after {
    content: '' !important;
    position: absolute !important;
    bottom: -12px !important; /* Move line down a bit more */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important; /* Much wider from 40px */
    height: 2px !important; /* Slightly thicker line */
    background: var(--accent-muted) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section-badge {
        font-size: 1.1rem !important;
        letter-spacing: 0.25em !important;
    }
    
    .section-badge::after {
        width: 60px !important; /* Smaller but still wider on mobile */
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 1rem !important;
        letter-spacing: 0.2em !important;
    }
    
    .section-badge::after {
        width: 50px !important;
    }
}

