/* ========================================
   腾龙游戏官网 - 新野兽派风格样式
   ======================================== */

/* CSS Variables - Design System */
:root {
    /* Colors */
    --yellow: #FFEB3B;
    --red: #FF5252;
    --blue: #2196F3;
    --mint: #4ECDC4;
    --mustard: #FFDB58;
    --coral: #FF6B6B;
    --ink: #000000;
    --white: #FFFFFF;
    --bg: #F9F2E0;
    
    /* Borders & Shadows */
    --border-width: 3px;
    --shadow-offset: 5px;
    --shadow-color: #000;
    
    /* Typography */
    --font-primary: 'Archivo Black', sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 0px;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Focus Styles */
:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    max-width: 34em;
}

/* ========================================
   Layout Utilities
   ======================================== */

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-title {
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--red);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: var(--border-width) solid var(--ink);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0ms, box-shadow 0ms;
    min-height: 44px;
    text-align: center;
}

.btn-primary {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--shadow-color);
}

.btn-primary:active {
    transform: translate(var(--shadow-offset), var(--shadow-offset));
    box-shadow: 0 0 0 var(--shadow-color);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
}

.btn-secondary:hover {
    background: var(--mint);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--shadow-color);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: none;
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--white);
}

.btn-large {
    padding: var(--space-lg) var(--space-xl);
    font-size: 16px;
    min-height: 52px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Header & Navigation
   ======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: var(--border-width) solid var(--ink);
}

.navbar {
    padding: var(--space-md) 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.brand-icon {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid transparent;
    transition: border-color 0ms;
}

.nav-link:hover,
.nav-link.active {
    border-color: var(--ink);
    background: var(--yellow);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    border: var(--border-width) solid var(--ink);
    border-radius: var(--border-radius);
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--ink);
    transition: transform 200ms;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        border-bottom: var(--border-width) solid var(--ink);
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 200ms, opacity 200ms, visibility 200ms;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        display: block;
        padding: var(--space-md);
        border: var(--border-width) solid var(--ink);
        margin-bottom: var(--space-sm);
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border: 2px solid var(--red);
    background: var(--white);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: var(--space-xl);
    max-width: 28em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    border: var(--border-width) solid var(--ink);
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    top: 20%;
    left: 10%;
}

.hero-shape-2 {
    width: 120px;
    height: 120px;
    background: var(--red);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    top: 40%;
    right: 20%;
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    background: var(--mint);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    bottom: 10%;
    left: 30%;
}

@media (max-width: 767px) {
    .hero-visual {
        height: 200px;
    }
    .hero-shape-1 {
        width: 120px;
        height: 120px;
    }
    .hero-shape-2 {
        width: 80px;
        height: 80px;
    }
    .hero-shape-3 {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   Style Chips
   ======================================== */

.style-chips {
    padding: var(--space-xl) 0;
    border-top: var(--border-width) solid var(--ink);
    border-bottom: var(--border-width) solid var(--ink);
    background: var(--white);
}

.chips-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.chip {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--ink);
    background: var(--bg);
}

.chip:nth-child(1) { background: var(--yellow); }
.chip:nth-child(2) { background: var(--mint); }
.chip:nth-child(3) { background: var(--coral); }
.chip:nth-child(4) { background: var(--blue); color: var(--white); }

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: var(--space-3xl) 0;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    padding: var(--space-lg);
    transition: transform 0ms, box-shadow 0ms;
}

.feature-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--shadow-color);
}

.feature-icon {
    margin-bottom: var(--space-md);
}

.feature-title {
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   About Preview
   ======================================== */

.about-preview {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: var(--border-width) solid var(--ink);
    border-bottom: var(--border-width) solid var(--ink);
}

.about-preview .section-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-preview .section-container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    font-size: 16px;
    margin-bottom: var(--space-lg);
}

.about-preview-visual {
    display: flex;
    justify-content: center;
}

.about-shape {
    width: 250px;
    height: 250px;
    background: var(--mint);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
}

/* ========================================
   Services Preview
   ======================================== */

.services-preview {
    padding: var(--space-3xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    padding: var(--space-lg);
    transition: transform 0ms, box-shadow 0ms;
}

.service-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--shadow-color);
}

.service-card:nth-child(1) { background: var(--yellow); }
.service-card:nth-child(2) { background: var(--mint); }
.service-card:nth-child(3) { background: var(--coral); }

.service-title {
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: 15px;
    margin-bottom: var(--space-md);
}

.service-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 2px;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--ink);
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-title::after {
    background: var(--yellow);
}

.cta-desc {
    font-size: 18px;
    margin-bottom: var(--space-xl);
    color: rgba(255,255,255,0.8);
    max-width: 100%;
}

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

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

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

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */

.page-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
    border-bottom: var(--border-width) solid var(--ink);
}

.page-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: var(--space-md);
}

.page-title {
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: 18px;
    max-width: 100%;
}

/* ========================================
   About Page
   ======================================== */

.about-intro {
    padding: var(--space-3xl) 0;
}

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

@media (min-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    border: var(--border-width) solid var(--ink);
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--shadow-color);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
}

.about-visual-shape {
    width: 100%;
    max-width: 300px;
    height: 300px;
    background: var(--blue);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    margin: 0 auto;
}

/* Values */
.about-values {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: var(--border-width) solid var(--ink);
    border-bottom: var(--border-width) solid var(--ink);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    background: var(--bg);
}

.value-icon {
    margin-bottom: var(--space-md);
}

.value-title {
    margin-bottom: var(--space-sm);
}

/* Timeline */
.about-timeline {
    padding: var(--space-3xl) 0;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ink);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: var(--space-xl);
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: var(--yellow);
    border: var(--border-width) solid var(--ink);
}

.timeline-year {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.timeline-desc {
    font-size: 15px;
}

/* ========================================
   Services Page
   ======================================== */

.services-list {
    padding: var(--space-3xl) 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--white);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
}

@media (min-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr 1fr;
    }
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse > * {
    direction: ltr;
}

@media (min-width: 768px) {
    .service-detail-reverse {
        direction: ltr;
    }
    .service-detail-reverse .service-detail-visual {
        order: -1;
    }
}

.service-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-md);
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--ink);
    margin-bottom: var(--space-md);
}

.service-detail-title {
    margin-bottom: var(--space-md);
}

.service-detail-desc {
    font-size: 16px;
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--mint);
    border: 2px solid var(--ink);
}

.service-detail-visual {
    display: flex;
    justify-content: center;
}

.service-shape {
    width: 200px;
    height: 200px;
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
}

.service-shape-1 { background: var(--yellow); }
.service-shape-2 { background: var(--mint); }
.service-shape-3 { background: var(--blue); }

/* Advantages */
.services-advantages {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: var(--border-width) solid var(--ink);
    border-bottom: var(--border-width) solid var(--ink);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.advantage-card {
    padding: var(--space-xl);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    background: var(--bg);
}

.advantage-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: var(--space-sm);
}

.advantage-title {
    margin-bottom: var(--space-sm);
}

/* Process */
.services-process {
    padding: var(--space-3xl) 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    align-items: center;
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
    border: var(--border-width) solid var(--ink);
    background: var(--white);
    box-shadow: 4px 4px 0 var(--shadow-color);
    min-width: 150px;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: var(--space-sm);
}

.step-title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.step-desc {
    font-size: 13px;
}

.process-connector {
    width: 30px;
    height: 3px;
    background: var(--ink);
}

@media (max-width: 767px) {
    .process-connector {
        display: none;
    }
    .process-steps {
        flex-direction: column;
    }
}

/* ========================================
   Contact Page
   ======================================== */

.contact-methods {
    padding: var(--space-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    transition: transform 0ms, box-shadow 0ms;
}

.contact-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--shadow-color);
}

.contact-card:nth-child(1) { background: var(--mint); }
.contact-card:nth-child(2) { background: var(--yellow); }
.contact-card:nth-child(3) { background: var(--blue); color: var(--white); }

.contact-icon {
    margin-bottom: var(--space-md);
}

.contact-title {
    margin-bottom: var(--space-sm);
}

.contact-value {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: var(--space-sm);
}

.contact-value a {
    border-bottom: 2px solid currentColor;
}

.contact-desc {
    font-size: 14px;
}

/* Contact Form */
.contact-form-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: var(--border-width) solid var(--ink);
    border-bottom: var(--border-width) solid var(--ink);
}

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

.form-desc {
    font-size: 16px;
    margin-bottom: var(--space-xl);
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.required {
    color: var(--red);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-primary);
    font-size: 16px;
    border: var(--border-width) solid var(--ink);
    border-radius: var(--border-radius);
    background: var(--bg);
    min-height: 48px;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--blue);
}

.form-submit {
    width: 100%;
}

/* Quick Contact */
.quick-contact {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.quick-text {
    font-size: 18px;
    margin-bottom: var(--space-xl);
    max-width: 100%;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: var(--border-width) solid var(--ink);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-nav a {
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0ms;
}

.footer-nav a:hover {
    color: var(--yellow);
}

.footer-contact {
    margin-bottom: var(--space-lg);
    font-size: 14px;
}

.footer-contact p {
    margin-bottom: var(--space-xs);
}

.footer-contact a {
    border-bottom: 1px solid var(--yellow);
    color: var(--yellow);
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.7;
}

/* ========================================
   Animations
   ======================================== */

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

.feature-card,
.service-card,
.contact-card,
.value-card,
.advantage-card {
    animation: fadeIn 300ms ease-out;
}

/* ========================================
   Breadcrumb
   ======================================== */

.breadcrumb {
    padding: var(--space-md) 0;
    background: var(--white);
    border-bottom: 2px solid var(--ink);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    list-style: none;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--ink);
    border-bottom: 1px dashed var(--ink);
}

.breadcrumb-item a:hover {
    color: var(--red);
    border-color: var(--red);
}

.breadcrumb-item.active {
    color: var(--red);
    font-weight: 700;
}

.breadcrumb-separator {
    color: #999;
}

/* ========================================
   Services Gallery
   ======================================== */

.services-gallery {
    padding: var(--space-2xl) 0;
    background: var(--white);
    border-bottom: var(--border-width) solid var(--ink);
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border: var(--border-width) solid var(--ink);
    box-shadow: 4px 4px 0 var(--shadow-color);
    overflow: hidden;
    background: var(--bg);
    transition: transform 0ms, box-shadow 0ms;
}

.gallery-item:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--shadow-color);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ========================================
   Service Image Container
   ======================================== */

.service-image-container {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    border: var(--border-width) solid var(--ink);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
    overflow: hidden;
    background: var(--bg);
    margin: 0 auto;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FAQ Section
   ======================================== */

.services-faq {
    padding: var(--space-3xl) 0;
    background: var(--white);
    border-top: var(--border-width) solid var(--ink);
    border-bottom: var(--border-width) solid var(--ink);
}

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

.faq-item {
    border: var(--border-width) solid var(--ink);
    margin-bottom: var(--space-md);
    background: var(--bg);
    box-shadow: 4px 4px 0 var(--shadow-color);
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0ms;
}

.faq-question:hover {
    background: var(--yellow);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 900;
    transition: transform 200ms;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: var(--space-sm);
}

.faq-answer ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.faq-answer a {
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .mobile-toggle,
    .breadcrumb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .btn {
        border: 1px solid black;
        box-shadow: none;
    }
}
