/* =========================================
   Motorinstandsetzung EU — style.css
   Design: Dark industrial + Orange accent
   ========================================= */

/* ----- CSS Custom Properties ----- */
:root {
    --primary: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FFB347;
    --dark: #1A1A1A;
    --darker: #0F0F0F;
    --gray: #2A2A2A;
    --gray-light: #3A3A3A;
    --light-gray: #8A8A8A;
    --white: #FFFFFF;
    --blue: #2D4A7C;
    --blue-light: #4A7CCC;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 15px 35px rgba(255, 107, 53, 0.4);
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ----- Reset ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ----- Text Selection Color ----- */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* ----- Custom Scrollbar ----- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray) var(--darker);
}

/* ----- Body ----- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--darker);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ----- Skip Link (Accessibility) ----- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 700;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

/* =====================
   NAVIGATION
   ===================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: padding var(--transition), background var(--transition);
}

.site-header.scrolled {
    padding: 0.8rem 5%;
    background: rgba(15, 15, 15, 0.98);
    border-bottom-color: rgba(255, 107, 53, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

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

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* =====================
   HERO
   ===================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg picture,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.82) 0%, rgba(26, 26, 26, 0.65) 50%, rgba(15, 15, 15, 0.88) 100%);
    z-index: 2;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--white);
    color: var(--darker);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color var(--transition);
}

.stat:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.88rem;
    color: #c0c0c0;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* =====================
   SECTIONS COMMON
   ===================== */
.section {
    padding: 7rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section--full {
    max-width: 100%;
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-subtitle {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================
   SERVICES (Bento Grid)
   ===================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
}

.bento-card {
    background-color: var(--gray);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(255,107,53,0.03) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    background-position: center center;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.25);
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,107,53,0.4) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-num {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.bento-card:hover .bento-num {
    color: rgba(255, 107, 53, 0.08);
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.bento-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.bento-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Featured Bento Cards */
.bento-featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.bento-featured .bento-num,
.bento-featured-reverse .bento-num {
    font-size: 14rem;
    top: -30px;
    right: -10px;
    color: rgba(255, 255, 255, 0.015);
}

.bento-featured-reverse {
    flex-direction: row-reverse;
}

.bento-card-img {
    flex: 1 1 50%;
    position: relative;
    min-height: 300px;
}

.bento-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.bento-card-body {
    flex: 1 1 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.bento-card-body p {
    margin-bottom: 2rem;
}

.bento-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.bento-link:hover {
    opacity: 0.8;
}
.bento-link:hover {
    opacity: 0.8;
}

.service-card {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 107, 53, 0.2);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Service showcase images */
.services-showcase {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.showcase-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

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

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

.showcase-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.9));
    font-weight: 700;
    font-size: 1.1rem;
}

/* =====================
   ABOUT
   ===================== */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 5%;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.feature:hover .feature-icon {
    background: rgba(255, 107, 53, 0.2);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.feature-text p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin: 0;
}

.about-visual-wrap {
    position: relative;
    padding: 2rem;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.about-float-stat {
    position: absolute;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.about-float-stat--top {
    top: 0.5rem;
    right: 0.5rem;
    animation-delay: 0s;
}

.about-float-stat--bottom {
    bottom: 0.5rem;
    left: 0.5rem;
    animation-delay: 3s;
}

.about-float-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-float-label {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 5%;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.feature:hover .feature-icon {
    background: rgba(255, 107, 53, 0.2);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.feature-text p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin: 0;
}

.about-visual {
    position: relative;
    height: 500px;
    background: radial-gradient(circle at center, var(--gray-light) 0%, var(--dark) 70%, var(--darker) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 80px rgba(255, 107, 53, 0.04);
}

#about-canvas {
    width: 100%;
    height: 100%;
}

/* =====================
   PROCESS
   ===================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
}

/* Connecting line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================
   CONTACT
   ===================== */
.contact-cta-banner {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 5%;
}

.contact-cta-inner {
    background: linear-gradient(135deg, var(--gray) 0%, var(--darker) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-xl);
    padding: 4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-cta-text p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.contact-cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-locations-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-locations-title {
    font-size: 2.2rem;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.location-card {
    background: var(--gray);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.4s ease;
    font-style: normal;
}

.location-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.location-pin {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-pin svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

.location-card-header h4 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.location-tag {
    display: inline-block;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    color: var(--light-gray);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-gray);
}

.location-detail svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
}

.location-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: auto;
}

.location-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.location-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: fill 0.3s ease;
}

.location-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.contact-card {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card h3 svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--darker);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-text {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-gray);
    transition: color var(--transition);
    font-size: 0.95rem;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Parallax Element */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* =====================
   REDUCED MOTION
   ===================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in,
    .slide-left,
    .slide-right {
        opacity: 1;
        transform: none;
    }
}

/* =====================
   RESPONSIVE — 1200px
   ===================== */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }
}

/* =====================
   RESPONSIVE — 968px
   ===================== */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 1px solid rgba(255, 107, 53, 0.1);
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bento-featured,
    .bento-featured-reverse {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-inner {
        padding: 3rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-cta-actions {
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* =====================
   RESPONSIVE — 768px
   ===================== */
@media (max-width: 768px) {
    .section, .section--full {
        padding: 5rem 5%;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .location-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* =====================
   RESPONSIVE — 640px
   ===================== */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .nav-cta {
        display: none;
    }

    .site-header {
        padding: 1rem 4%;
    }
    
    .location-actions {
        grid-template-columns: 1fr;
    }
}

/* =====================
   RESPONSIVE — 480px
   ===================== */
@media (max-width: 480px) {
    .section, .section--full {
        padding: 4rem 4%;
    }

    .bento-card, .location-card {
        padding: 1.5rem;
    }
    
    .bento-card-body {
        padding: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }
}

/* =====================
   RESPONSIVE — 968px
   ===================== */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 1px solid rgba(255, 107, 53, 0.1);
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 380px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .services-showcase {
        grid-template-columns: 1fr;
    }
}

/* =====================
   RESPONSIVE — 768px
   ===================== */
@media (max-width: 768px) {
    .section {
        padding: 5rem 5%;
    }

    .section--full {
        padding: 5rem 5%;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* =====================
   RESPONSIVE — 640px
   ===================== */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .nav-cta {
        display: none;
    }

    .site-header {
        padding: 1rem 4%;
    }
}

/* =====================
   RESPONSIVE — 480px
   ===================== */
@media (max-width: 480px) {
    .section {
        padding: 4rem 4%;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .about-visual {
        height: 300px;
    }

    .logo {
        font-size: 1.2rem;
    }
}
