/* =========================================
   SOULGRAFFIX - Premium Vehicle Wraps & Signage
   Bold. Clean. Aggressive. Premium.
   ========================================= */

/* CSS Variables */
:root {
    --color-red: #E31B23;
    --color-red-dark: #B81419;
    --color-red-light: #FF2D36;
    --color-black: #0A0A0A;
    --color-black-light: #1A1A1A;
    --color-white: #FFFFFF;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-600: #525252;
    --color-gray-800: #262626;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-red);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    max-width: 600px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

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

.btn-primary:hover {
    background: var(--color-red-light);
    transform: translateY(-2px);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Nav CTA: make "Get a Quote" stand out in header */
.nav-links .btn-nav {
    box-shadow: 0 0 0 1px rgba(227, 27, 35, 0.4), 0 4px 14px rgba(227, 27, 35, 0.35);
}

.nav-links .btn-nav:hover {
    box-shadow: 0 0 0 1px var(--color-red), 0 6px 20px rgba(227, 27, 35, 0.5);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(227, 27, 35, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-img {
    height: 1.85rem;
    width: auto;
    display: block;
    flex-shrink: 0;
    transform: translateY(-0.1em);
    margin-right: 0.5rem;
}

.logo-soul {
    letter-spacing: 0;
}

.logo-graffix {
    margin-left: 0;
}

.logo-soul {
    color: var(--color-white);
}

.logo-graffix {
    color: var(--color-red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

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


/* Hero Section */
.hero {
    min-height: 180vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 18vh var(--space-3xl) var(--space-3xl);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        rgba(227, 27, 35, 0.2) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(227, 27, 35, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(227, 27, 35, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, transparent 45%, rgba(227, 27, 35, 0.1) 50%, transparent 55%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-black), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1s ease-out;
}

.hero-logo-bg {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    width: min(78vw, 520px);
}

.hero-logo-bg img {
    width: 100%;
    height: auto;
    opacity: 0.05;
    display: block;
}

.hero-content > .hero-badge,
.hero-content > .hero-brand,
.hero-content > .hero-title,
.hero-content > .hero-subtitle,
.hero-content > .hero-motto,
.hero-content > .hero-cta,
.hero-content > .hero-stats {
    position: relative;
    z-index: 1;
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 14vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 0.15em;
    animation: fadeInUp 1s ease-out 0.25s both;
}

.hero-brand-graffix {
    color: var(--color-red);
}

.hero-title.hero-tagline {
    font-size: clamp(1.75rem, 5.5vw, 3.5rem);
    margin-bottom: var(--space-lg);
}

.hero-title.hero-tagline .title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title.hero-tagline .title-line:nth-child(2) { animation-delay: 0.55s; }
.hero-title.hero-tagline .title-line:nth-child(3) { animation-delay: 0.7s; }

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

.hero-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-red);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(227, 27, 35, 0.5);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.title-accent {
    color: var(--color-red);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.08em;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 0.6s ease-out 1.2s forwards;
}

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

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: var(--color-gray-300);
    max-width: 700px;
    margin: 0 auto var(--space-md);
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-motto {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s ease-out 0.95s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 1.3s forwards;
    position: relative;
    z-index: 10;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    color: var(--color-red);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.75rem;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-600);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    position: relative;
}

.services::before {
    content: 'SERVICES';
    position: absolute;
    top: 50%;
    left: -5%;
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 20rem);
    color: rgba(255, 255, 255, 0.02);
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    pointer-events: none;
    white-space: nowrap;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-red);
    transition: height var(--transition-base);
}

.service-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(227, 27, 35, 0.3);
    transform: translateY(-8px);
}

.service-card:hover::before {
    height: 100%;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(227, 27, 35, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-color: rgba(227, 27, 35, 0.4);
}

.service-card.featured::before {
    height: 100%;
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-black);
    background: var(--color-red);
    padding: 0.375rem 0.75rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--color-red);
    margin-bottom: var(--space-md);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.service-desc {
    color: var(--color-gray-300);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-list {
    margin-bottom: var(--space-lg);
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-200);
    font-size: 0.9375rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 2px;
    background: var(--color-red);
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-red);
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: var(--color-red-light);
}

/* Reviews Section */
.reviews {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-black-light) 0%, var(--color-black) 100%);
}

/* Reviews strip (auto-scroll like clients) */
.reviews-strip {
    overflow: hidden;
    margin-top: var(--space-xl);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-strip-inner {
    display: inline-block;
    width: max-content;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.reviews-strip img,
.reviews-strip .review-card {
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.reviews-strip-inner,
.reviews-strip-inner * {
    user-select: none;
}

.reviews-strip-inner:active {
    cursor: grabbing;
}

.reviews-strip-track {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    animation: reviews-scroll 42s linear infinite;
}

.reviews-strip.is-dragging .reviews-strip-track,
.reviews-strip-inner:hover .reviews-strip-track {
    animation-play-state: paused;
}

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

.review-card {
    flex-shrink: 0;
    min-width: 320px;
    max-width: 320px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl);
    margin: 0;
    transition: all var(--transition-base);
    border-left: 3px solid var(--color-red);
}

.review-card:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(227, 27, 35, 0.3);
}

.review-stars {
    color: var(--color-red);
    font-size: 1.125rem;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.review-text {
    font-size: 1.0625rem;
    color: var(--color-gray-200);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: var(--space-sm);
}

.review-author strong {
    color: var(--color-white);
    font-size: 0.9375rem;
}

.review-author span {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

/* About Us Section */
.about-us {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 50%, var(--color-black) 100%);
}

.about-us-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--color-red);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(227, 27, 35, 0.08);
}

.about-us-inner .section-header {
    margin-bottom: var(--space-xl);
}

.about-desc {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-motto {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-red);
    margin-top: var(--space-lg);
}

/* News Section */
.news {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.news-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all var(--transition-base);
}

.news-card:hover {
    border-color: rgba(227, 27, 35, 0.3);
    transform: translateY(-4px);
}

.news-image {
    aspect-ratio: 40/26;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* News card as link (news listing page) */
a.news-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card-cta {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-red);
    transition: color var(--transition-fast);
}

a.news-card:hover .news-card-cta {
    color: var(--color-red-light);
}

.news-content {
    padding: var(--space-lg);
}

.news-date {
    font-size: 0.8125rem;
    color: var(--color-red);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: var(--space-sm);
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.9375rem;
    color: var(--color-gray-300);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

/* News listing page & article single page */
.page-header {
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
}

.page-desc {
    font-size: 1.125rem;
    color: var(--color-gray-300);
}

/* Legal pages (Privacy, Terms) */
.legal-page {
    padding: 0 0 var(--space-3xl);
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-gray-300);
    line-height: 1.75;
}

.legal-content section {
    margin-bottom: var(--space-xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.legal-content p,
.legal-content ul {
    margin-bottom: var(--space-md);
}

.legal-content ul {
    padding-left: 1.25rem;
}

.legal-content a {
    color: var(--color-red);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-back a {
    color: var(--color-gray-400);
}

.legal-back a:hover {
    color: var(--color-red);
}

.news-page {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.article-body {
    color: var(--color-gray-300);
    line-height: 1.8;
    font-size: 1rem;
}

.article-body p {
    margin-bottom: var(--space-md);
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body strong {
    color: var(--color-gray-200);
}

.article-body em {
    color: var(--color-red);
}

/* Single article page */
.article-single {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.article-back {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-300);
    margin-bottom: var(--space-xl);
    transition: color var(--transition-fast);
}

.article-back:hover {
    color: var(--color-red);
}

.article-header {
    margin-bottom: var(--space-lg);
}

.article-single .article-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 0;
}

.article-featured-image {
    margin-bottom: var(--space-xl);
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    max-width: 720px;
    margin-bottom: var(--space-2xl);
}

.article-share {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-xl);
}

.article-share-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    margin-bottom: var(--space-md);
}

.share-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-300);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn:hover {
    color: var(--color-white);
    background: rgba(227, 27, 35, 0.2);
    border-color: var(--color-red);
}

.share-copy-feedback {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-red);
}

.article-cta {
    margin-top: var(--space-lg);
}

/* FAQ Section */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--color-black);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition-fast);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    padding: var(--space-lg) 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-red);
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 0 var(--space-lg);
    padding-right: 2rem;
    color: var(--color-gray-300);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Mobile bottom bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(227, 27, 35, 0.25);
    padding: var(--space-sm) var(--space-xs);
    padding-bottom: max(var(--space-sm), env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    gap: var(--space-xs);
}

.mobile-bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    transition: color var(--transition-fast), background var(--transition-fast);
    border-radius: 4px;
    min-width: 0;
    flex: 1;
    max-width: 80px;
}

.mobile-bottom-btn svg {
    width: 22px;
    height: 22px;
}

.mobile-bottom-btn:hover,
.mobile-bottom-btn:focus {
    color: var(--color-white);
}

.mobile-bottom-cta {
    color: var(--color-red);
}

.mobile-bottom-cta:hover,
.mobile-bottom-cta:focus {
    color: var(--color-red-light);
}

/* Why Choose Us Section */
.why-us {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.why-us-text {
    padding-right: var(--space-xl);
}

.why-us-desc {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature {
    padding: var(--space-lg);
    background: rgba(26, 26, 26, 0.6);
    border-left: 3px solid var(--color-red);
    transition: all var(--transition-base);
}

.feature:hover {
    background: rgba(227, 27, 35, 0.1);
    transform: translateX(8px);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--color-gray-300);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: var(--space-3xl) 0;
    background: var(--color-black);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item.large {
    grid-column: span 2;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.portfolio-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Portfolio carousel */
.portfolio-carousel {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-lg);
    box-sizing: border-box;
}

.carousel-stage {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 24px 64px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(227, 27, 35, 0.06);
}

.carousel-track-wrap {
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-black);
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    /* width set in JS (pixels) so gap is visible; fallback for no-JS */
    width: calc(560% + 140px);
}

.portfolio-carousel.carousel-narrow .carousel-track {
    width: 800%;
    gap: 0;
}

.carousel-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    /* width set in JS for desktop so slide = 70% of wrap; narrow uses 12.5% below */
}

.portfolio-carousel.carousel-narrow .carousel-slide {
    flex: 0 0 12.5%;
    width: 12.5%;
}

.carousel-slide-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-black-light);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;
}

.carousel-slide.is-active .carousel-slide-inner {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.carousel-slide:not(.is-active) .carousel-slide-inner {
    opacity: 0.78;
}

.carousel-slide-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    pointer-events: none;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Floating prev/next on stage */
.carousel-stage .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-stage .carousel-btn svg {
    width: 28px;
    height: 28px;
}

.carousel-stage .carousel-btn:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 28px rgba(227, 27, 35, 0.4);
}

.carousel-stage .carousel-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.carousel-stage .carousel-prev {
    left: 24px;
}

.carousel-stage .carousel-next {
    right: 24px;
}

/* Footer: prev | progress | counter | next */
.carousel-footer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-sm) 0;
}

.carousel-footer .carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-footer .carousel-btn svg {
    width: 22px;
    height: 22px;
}

.carousel-footer .carousel-btn:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    transform: scale(1.05);
}

.carousel-progress-wrap {
    flex: 1;
    min-width: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    width: 100%;
    border-radius: 2px;
}

.carousel-progress-fill {
    height: 100%;
    width: 12.5%;
    max-width: 100%;
    background: var(--color-red);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-counter {
    flex-shrink: 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel-counter .carousel-current {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
}

.carousel-counter .carousel-sep {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    margin: 0 1px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-dot.active {
    background: var(--color-red);
    transform: scale(1.25);
    box-shadow: 0 0 0 2px rgba(227, 27, 35, 0.35);
}

/* Clients – infinite auto-scroll strip */
.clients {
    padding: var(--space-3xl) 0;
}

.clients .section-header {
    margin-bottom: var(--space-2xl);
}

.clients-strip {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.clients-strip-inner {
    display: inline-block;
    width: max-content;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.clients-strip img {
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.clients-strip-inner,
.clients-strip-inner * {
    user-select: none;
}

.clients-strip-inner:active {
    cursor: grabbing;
}

.clients-strip-track {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    width: max-content;
    animation: clients-scroll 24s linear infinite;
}

.clients-strip.is-dragging .clients-strip-track,
.clients-strip-inner:hover .clients-strip-track {
    animation-play-state: paused;
}

.clients-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    width: 330px;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.clients-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.clients-strip-track:hover .clients-logo img {
    opacity: 0.9;
}

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

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-black-light) 0%, var(--color-black) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(227, 27, 35, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(227, 27, 35, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(227, 27, 35, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(227, 27, 35, 0.05) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.cta-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-gray-200);
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-red);
}

.cta-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: var(--color-gray-600);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--color-red);
    background: rgba(227, 27, 35, 0.05);
}

.cta-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23525252' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.cta-form select option {
    background: var(--color-black);
}

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

/* Footer */
.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-red);
    border-color: var(--color-red);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-column ul a:hover {
    color: var(--color-red);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-icon {
    display: inline-flex;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 1rem;
    height: 1rem;
    opacity: 0.85;
}

.footer-contact-link:hover .footer-contact-icon svg {
    opacity: 1;
}

.footer-column ul li:last-child {
    line-height: 1.6;
    color: var(--color-gray-600);
    font-size: 0.9375rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.footer-bottom a {
    color: var(--color-gray-500);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .why-us-text {
        padding-right: 0;
        text-align: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero {
        min-height: 240vh;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 4rem;
        padding-bottom: var(--space-md);
        padding-left: var(--space-md);
        padding-right: var(--space-md);
        box-sizing: border-box;
    }

    .hero-content {
        padding-top: 1.5rem;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .services {
        padding-top: var(--space-md);
        padding-bottom: var(--space-3xl);
    }

    :root {
        --space-3xl: 5rem;
    }
    
    .nav-container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .nav-links {
        display: none;
    }
    
    .mobile-bottom-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 80px; /* Space for fixed bottom bar */
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .hero-scroll {
        position: static;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        margin-top: var(--space-md);
        margin-left: auto;
        margin-right: auto;
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .portfolio-carousel {
        padding: 0 var(--space-sm);
    }

    .carousel-stage .carousel-btn {
        width: 48px;
        height: 48px;
    }

    .carousel-stage .carousel-btn svg {
        width: 24px;
        height: 24px;
    }

    .carousel-stage .carousel-prev {
        left: 12px;
    }

    .carousel-stage .carousel-next {
        right: 12px;
    }

    .carousel-footer .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-footer .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-dots {
        margin-top: var(--space-md);
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Animation on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth section transitions */
section {
    position: relative;
}

/* Utility classes for JS animations */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

