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

:root {
    /* Premium Dark Color Palette with Deep Burgundy Neon */
    --primary-bg: #0a0a0a;
    --secondary-bg: #0d0d0d;
    --card-bg: #121212;
    --logo-red: #C94747;
    --burgundy-dark: #8B2C2C;
    --burgundy-bright: #D94747;
    --burgundy-neon: #FF4646;
    --accent-color: #C94747;
    --accent-gradient: linear-gradient(135deg, #8B2C2C 0%, #C94747 50%, #D94747 100%);
    --accent-gradient-bright: linear-gradient(135deg, #C94747 0%, #FF4646 100%);
    --neon-glow: rgba(201, 71, 71, 0.8);
    --neon-glow-strong: rgba(255, 70, 70, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6a6a6a;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);

    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: var(--font-primary);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for desktop */
}

/* Hide custom cursor on mobile/tablet */
@media (max-width: 1024px) {
    body {
        cursor: auto;
    }
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================
   CUSTOM CURSOR (Desktop Only)
   ========================================== */
.custom-cursor,
.cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: width 0.3s var(--transition-smooth), height 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
}

/* Hide custom cursor on mobile */
@media (max-width: 1024px) {
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s var(--transition-smooth);
}

.nav-logo .logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    transition: all 0.3s var(--transition-smooth);
}

.logo-image:hover {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(201, 71, 71, 0.5));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-nav {
    padding: 0.6rem 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50px;
    color: var(--primary-bg);
    font-weight: 600;
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 71, 71, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--transition-smooth);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.3s var(--transition-smooth);
    }

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

    .hamburger {
        display: flex;
    }
}

/* ==========================================
   HERO SECTION (3D Parallax)
   ========================================== */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

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

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.parallax-layer-1 {
    background: radial-gradient(circle at 20% 50%, rgba(201, 71, 71, 0.2) 0%, rgba(139, 44, 44, 0.1) 30%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

.parallax-layer-2 {
    background: radial-gradient(circle at 80% 30%, rgba(217, 71, 71, 0.15) 0%, rgba(201, 71, 71, 0.08) 40%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.parallax-layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(255, 70, 70, 0.12) 0%, rgba(201, 71, 71, 0.06) 50%, transparent 80%);
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

.hero-text {
    max-width: 900px;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
}

.title-accent {
    background: var(--accent-gradient-bright);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient-bright);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-gradient-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 71, 71, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(201, 71, 71, 0.5);
}

.btn-secondary:hover {
    border-color: var(--burgundy-bright);
    color: var(--burgundy-bright);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Magnetic Button Effect (Desktop Only) */
.magnetic-btn {
    transition: transform 0.3s var(--transition-smooth);
}

@media (min-width: 1025px) {
    .magnetic-btn:hover {
        transform: scale(1.05);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    padding-bottom: 2rem;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--accent-gradient-bright);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #C94747, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

/* ==========================================
   CONTAINER & SECTIONS
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.reveal-text {
    overflow: hidden;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   VALUE PROPOSITION SECTION
   ========================================== */
.value-section {
    background: var(--secondary-bg);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 71, 71, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.service-card:hover {
    border-color: rgba(201, 71, 71, 0.7);
    transform: translateY(-10px) scale(1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-display);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.service-link:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    background: var(--secondary-bg);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-50px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--accent-gradient-bright);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: scale(0.9);
}

.industry-card:hover {
    border-color: rgba(201, 71, 71, 0.6);
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.industry-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   CASE STUDY SECTION
   ========================================== */
.case-study-section {
    background: var(--secondary-bg);
    padding: var(--spacing-xl) 0;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.case-study-label {
    color: var(--burgundy-bright);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.case-study-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.case-study-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    opacity: 0;
    transform: translateY(30px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--accent-gradient-bright);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.case-study-visual {
    position: relative;
    height: 400px;
}

.visual-graphic {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(201, 71, 71, 0.3);
    position: relative;
    overflow: hidden;
}

.visual-graphic::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 70, 70, 0.2) 0%, rgba(201, 71, 71, 0.15) 30%, rgba(139, 44, 44, 0.08) 50%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Data Visualization Animation */
.data-viz {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Animated Bars */
.viz-bars {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.viz-bar {
    width: 25px;
    height: var(--height);
    background: linear-gradient(to top, #8B2C2C, #C94747, #D94747);
    border-radius: 4px 4px 0 0;
    animation: barPulse 4s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(201, 71, 71, 0.4);
}

@keyframes barPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

/* Animated Line Graph */
.viz-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50%;
    opacity: 0.9;
}

.line-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 8s ease-in-out infinite;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 1000; }
    50%, 100% { stroke-dashoffset: 0; }
}

.line-dot {
    filter: drop-shadow(0 0 8px rgba(201, 71, 71, 0.8));
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #C94747, transparent);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    25% { transform: translate(30px, -30px); opacity: 0.8; }
    50% { transform: translate(-20px, -60px); opacity: 1; }
    75% { transform: translate(-40px, -30px); opacity: 0.8; }
}

/* Pulsing Rings */
.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(201, 71, 71, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 6s ease-out infinite;
    animation-delay: var(--delay);
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 968px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.contact-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--transition-smooth);
}

.contact-item:hover {
    border-color: rgba(201, 71, 71, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item a,
.contact-item span {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    transition: color 0.3s var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--burgundy-bright);
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: var(--primary-bg);
    padding: var(--spacing-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card:hover {
    border-color: rgba(201, 71, 71, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-company {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   TECHNOLOGIES SECTION
   ========================================== */
.technologies-section {
    background: var(--secondary-bg);
    padding: var(--spacing-xl) 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.tech-category {
    opacity: 0;
    transform: translateY(30px);
}

.tech-category h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.6rem 1.2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s var(--transition-smooth);
}

.tech-tag:hover {
    border-color: var(--burgundy-bright);
    color: var(--burgundy-bright);
    background: rgba(201, 71, 71, 0.1);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--secondary-bg);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s var(--transition-smooth);
}

.footer-logo-img:hover {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(201, 71, 71, 0.5));
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient-bright);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--burgundy-bright);
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }

    .container {
        padding: 0 1.5rem;
    }

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

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

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

/* ==========================================
   SCROLL ANIMATIONS (Handled by JS/GSAP)
   ========================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}
