/* ============================================
   LUMINA Digital Agency - Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --color-charcoal: #1a1a1a;
    --color-amber: #e67e22;
    --color-burnt: #d35400;
    --color-cream: #faf8f5;
    --color-sand: #e8e2d9;
    --color-terracotta: #c0392b;
    --color-gold: #f39c12;
    --color-bronze: #a67c52;
    --color-brown: #4a3728;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Space Grotesk', monospace;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 120px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.accent {
    color: var(--color-amber);
}

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

.navbar.scrolled {
    background: var(--color-charcoal);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    line-height: 1.1;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--color-amber);
    border-radius: var(--radius-full);
}

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

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-amber);
    transition: var(--transition-fast);
}

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

.nav-cta {
    background: var(--color-amber);
    color: var(--color-charcoal);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-burnt);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-charcoal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-link {
    color: var(--color-white);
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 600;
}

.mobile-cta {
    background: var(--color-amber);
    color: var(--color-charcoal);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 18px;
    margin-top: var(--space-sm);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-xl) var(--space-md);
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    color: var(--color-amber);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-amber);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-accent);
    font-size: 32px;
    color: var(--color-amber);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-amber);
    color: var(--color-charcoal);
    border-color: var(--color-amber);
}

.btn-primary:hover {
    background: var(--color-burnt);
    border-color: var(--color-burnt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-amber);
}

.btn-secondary:hover {
    background: var(--color-amber);
    color: var(--color-charcoal);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-amber);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--space-xl) 0;
    background: var(--color-cream);
}

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

.service-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--color-sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: var(--transition-fast);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-amber);
}

.service-card:hover .service-icon {
    background: var(--color-amber);
}

.service-card:hover .service-icon svg {
    stroke: var(--color-white);
}

.service-title {
    font-size: 24px;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.service-desc {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-amber);
    font-weight: 600;
}

.arrow {
    transition: var(--transition-fast);
}

.service-card:hover .arrow {
    transform: translateX(4px);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--space-xl) 0;
    background: var(--color-charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-content .section-tag {
    color: var(--color-amber);
}

.about-content .section-title {
    color: var(--color-white);
}

.about-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-amber);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.feature-text h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-text p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-amber);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-card-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1;
}

.about-card-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
}

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

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.portfolio-item:not(.large) {
    grid-column: span 4;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-item.large .portfolio-image img {
    height: 400px;
}

.portfolio-item:not(.large) .portfolio-image img {
    height: 200px;
}

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

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

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(26,26,26,0.95) 0%, transparent 100%);
    color: var(--color-white);
}

.portfolio-category {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-amber);
    margin-bottom: var(--space-xs);
}

.portfolio-title {
    font-size: 24px;
    margin-bottom: var(--space-xs);
}

.portfolio-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-sm);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-amber);
    font-weight: 600;
    font-size: 14px;
}

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

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-cream) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 48px;
    height: 48px;
    color: var(--color-sand);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-charcoal);
}

.author-role {
    font-size: 14px;
    color: var(--color-text-light);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: var(--space-sm);
    color: var(--color-gold);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

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

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    flex: 1;
    padding-right: var(--space-md);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-amber);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-burnt) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-charcoal);
    border-color: var(--color-white);
}

.cta-section .btn-primary:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    border-color: var(--color-charcoal);
}

.cta-section .btn-secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.cta-section .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--color-brown);
    color: var(--color-white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-amber);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-amber);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: rgba(255,255,255,0.7);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--color-amber);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-visual {
        order: -1;
    }

    .about-card {
        bottom: auto;
        right: auto;
        position: relative;
        margin-top: var(--space-md);
    }

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

    .portfolio-item.large,
    .portfolio-item:not(.large) {
        grid-column: span 1;
    }

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

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        gap: var(--space-md);
    }

    .stat {
        flex: 1 1 100px;
    }

    .stat-number {
        font-size: 36px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Page Hero (Service Pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.75) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 0 var(--space-md);
}

.page-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.page-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ============================================
   Service Overview
   ============================================ */
.service-overview {
    padding: var(--space-xl) 0;
    background: var(--color-white);
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.service-overview-content h2 {
    font-size: 36px;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.service-overview-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.service-overview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-overview-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ============================================
   Services List
   ============================================ */
.services-list {
    padding: var(--space-xl) 0;
    background: var(--color-cream);
}

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

.service-list-item {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-list-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-list-icon {
    width: 56px;
    height: 56px;
    background: var(--color-sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: var(--transition-fast);
}

.service-list-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-amber);
}

.service-list-item:hover .service-list-icon {
    background: var(--color-amber);
}

.service-list-item:hover .service-list-icon svg {
    stroke: var(--color-white);
}

.service-list-item h3 {
    font-size: 20px;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.service-list-item p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
    padding: var(--space-xl) 0;
    background: var(--color-charcoal);
}

.process-section .section-tag,
.process-section .section-title {
    color: var(--color-white);
}

.process-section .section-title .accent {
    color: var(--color-amber);
}

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

.process-item {
    text-align: center;
    padding: var(--space-md);
}

.process-number {
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-amber);
    margin-bottom: var(--space-sm);
}

.process-item h3 {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.process-item p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   Service Stats
   ============================================ */
.service-stats {
    padding: var(--space-lg) 0;
    background: var(--color-sand);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item {
    padding: var(--space-md);
}

.stat-item .stat-number {
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-amber);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Other Services
   ============================================ */
.other-services {
    padding: var(--space-xl) 0;
    background: var(--color-white);
}

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

.other-service-card {
    background: var(--color-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.other-service-card:hover {
    border-color: var(--color-amber);
    transform: translateY(-4px);
}

.other-service-card h3 {
    font-size: 20px;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.other-service-card p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    padding: var(--space-md);
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--color-white);
    font-size: 14px;
    flex: 1;
    min-width: 300px;
}

.cookie-text a {
    color: var(--color-amber);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
}

.cookie-accept {
    background: var(--color-amber);
    color: var(--color-charcoal);
}

.cookie-accept:hover {
    background: var(--color-burnt);
}

.cookie-settings {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cookie-settings:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
}

/* ============================================
   Additional Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .service-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-image {
        order: -1;
    }

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

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

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

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

@media (max-width: 768px) {
    .page-hero {
        height: 350px;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
