/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: 120 45% 35%; /* #4A7C59 - Forest Green */
    --primary-light: 120 45% 45%; /* #5A9369 */
    --primary-dark: 120 45% 25%; /* #3A6249 */
    
    /* Secondary Colors */
    --secondary: 30 25% 75%; /* #C4B5A0 - Warm Beige */
    --secondary-light: 30 25% 85%; /* #D4C5B0 */
    --secondary-dark: 30 25% 65%; /* #B4A590 */
    
    /* Neutral Colors */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --surface-alt: 210 11% 96%; /* #F0F2F5 */
    
    /* Text Colors */
    --text: 210 11% 15%; /* #1F2329 */
    --text-light: 210 11% 45%; /* #6B7280 */
    --text-muted: 210 11% 65%; /* #9CA3AF */
    
    /* Accent Colors */
    --accent: 35 100% 65%; /* #FFAA33 - Orange */
    --success: 142 76% 36%; /* #10B981 */
    --warning: 45 93% 58%; /* #F59E0B */
    --error: 0 84% 60%; /* #EF4444 */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* Base Typography */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: hsl(var(--text));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--line-height-tight);
    color: hsl(var(--text));
    margin-bottom: var(--space-sm);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

/* Paragraphs and Text */
p {
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-relaxed);
}

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

a:hover {
    color: hsl(var(--primary-dark));
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
}

li {
    margin-bottom: var(--space-xs);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    gap: var(--space-xs);
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: white;
}

.btn-primary:hover {
    background-color: hsl(var(--primary-dark));
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
}

.btn-secondary:hover {
    background-color: hsl(var(--primary));
    color: white;
    text-decoration: none;
}

.btn-accept {
    background-color: hsl(var(--success));
    color: white;
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
}

.btn-decline {
    background-color: transparent;
    color: hsl(var(--text-light));
    border: 1px solid hsl(var(--text-light));
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
}

.btn-view {
    background-color: hsl(var(--primary));
    color: white;
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Header */
.header {
    background-color: hsl(var(--surface));
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.nav-brand h1 {
    color: hsl(var(--primary));
    font-size: var(--font-size-2xl);
    margin-bottom: 0;
}

.tagline {
    font-size: var(--font-size-sm);
    color: hsl(var(--text-light));
}

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

.nav-menu a {
    color: hsl(var(--text));
    font-weight: 500;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: hsl(var(--primary));
    text-decoration: none;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: hsl(var(--primary));
}

.contact-info .phone {
    font-weight: 600;
    color: hsl(var(--primary));
    font-size: var(--font-size-lg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        gap: var(--space-md);
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--text));
    color: white;
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-lg);
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: hsl(var(--accent));
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--surface-alt)) 100%);
    padding: var(--space-3xl) 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

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

.hero-content h1 {
    font-size: var(--font-size-5xl);
    color: hsl(var(--text));
    margin-bottom: var(--space-md);
    line-height: var(--line-height-tight);
}

.hero-content p {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-light));
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-relaxed);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--secondary) / 0.1) 100%);
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
}

.page-header h1 {
    font-size: var(--font-size-4xl);
    color: hsl(var(--text));
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: var(--font-size-lg);
    color: hsl(var(--text-light));
}

/* Sections */
section {
    padding: var(--space-3xl) 0;
}

section:nth-child(even) {
    background-color: hsl(var(--surface-alt));
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-card {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.service-card h3 {
    padding: var(--space-sm) var(--space-md) 0;
    color: hsl(var(--primary));
}

.service-card p {
    padding: 0 var(--space-md) var(--space-md);
    color: hsl(var(--text-light));
}

/* Services Detailed */
.service-block {
    margin-bottom: var(--space-3xl);
}

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

.service-block.reverse .service-content {
    direction: rtl;
}

.service-block.reverse .service-text {
    direction: ltr;
}

.service-text h2 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-md);
}

.service-features {
    margin: var(--space-md) 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: hsl(var(--text-light));
}

.service-features li::before {
    content: '✓';
    color: hsl(var(--success));
    font-weight: bold;
    flex-shrink: 0;
}

.service-price {
    background-color: hsl(var(--primary) / 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    border-left: 4px solid hsl(var(--primary));
    margin-top: var(--space-md);
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .service-block.reverse .service-content {
        direction: ltr;
    }
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: hsl(var(--primary));
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: bold;
    margin: 0 auto var(--space-sm);
}

.step h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-xs);
}

/* Why Choose Us / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.feature {
    text-align: center;
    padding: var(--space-lg);
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-sm);
}

.feature h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

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

.reason {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.reason-icon {
    font-size: var(--font-size-2xl);
    flex-shrink: 0;
}

.reason h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
}

/* Forms */
.order-form,
.contact-form {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: hsl(var(--text));
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid hsl(var(--text-muted) / 0.3);
    border-radius: var(--radius);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-form,
    .contact-form {
        padding: var(--space-md);
    }
}

/* Portfolio */
.portfolio-filter {
    padding: var(--space-lg) 0;
    background-color: hsl(var(--surface));
}

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

.filter-btn {
    padding: var(--space-xs) var(--space-md);
    background-color: transparent;
    border: 2px solid hsl(var(--text-muted) / 0.3);
    color: hsl(var(--text-light));
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

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

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

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    color: white;
    opacity: 0;
    transition: var(--transition);
}

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

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

.portfolio-overlay h3 {
    margin-bottom: var(--space-xs);
    color: white;
}

.portfolio-overlay p {
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: hsl(var(--surface));
    margin: 5% auto;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    color: hsl(var(--text-light));
    font-size: var(--font-size-3xl);
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close:hover {
    color: hsl(var(--text));
}

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

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

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

.testimonial {
    background-color: hsl(var(--surface));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
    font-size: var(--font-size-5xl);
    color: hsl(var(--primary) / 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-md);
    color: hsl(var(--text-light));
}

.testimonial-author strong {
    color: hsl(var(--primary));
    font-weight: 600;
}

.testimonial-author span {
    color: hsl(var(--text-muted));
    font-size: var(--font-size-sm);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.member-photo {
    margin-bottom: var(--space-md);
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid hsl(var(--primary) / 0.1);
}

.member-info h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-xs);
}

.position {
    color: hsl(var(--accent));
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.achievement {
    text-align: center;
    padding: var(--space-lg);
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.achievement-number {
    font-size: var(--font-size-5xl);
    font-weight: bold;
    color: hsl(var(--primary));
    margin-bottom: var(--space-xs);
}

.achievement h3 {
    color: hsl(var(--text));
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
}

.achievement p {
    color: hsl(var(--text-light));
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.cert-item {
    padding: var(--space-md);
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid hsl(var(--primary));
}

.cert-item h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
}

.cert-item p {
    color: hsl(var(--text-light));
    margin: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.contact-icon {
    font-size: var(--font-size-2xl);
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.contact-details h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
}

.contact-details p {
    margin: 0;
    color: hsl(var(--text-light));
}

.contact-details a {
    color: hsl(var(--primary));
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Map */
.map-placeholder {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px dashed hsl(var(--primary) / 0.3);
    margin-bottom: var(--space-lg);
}

.location-details {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.faq-item {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-lg);
}

.faq-item p {
    color: hsl(var(--text-light));
    margin: 0;
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.area-column {
    background-color: hsl(var(--surface));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.area-column h3 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: var(--space-xs) 0;
    color: hsl(var(--text-light));
    border-bottom: 1px solid hsl(var(--text-muted) / 0.1);
}

.area-column li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
    color: white;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-section p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

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

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

.cta-section .btn-primary:hover {
    background-color: hsl(var(--surface-alt));
    color: hsl(var(--primary-dark));
}

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

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

/* Legal Content */
.legal-content {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-content h1 {
    text-align: center;
    color: hsl(var(--primary));
    margin-bottom: var(--space-sm);
}

.last-updated {
    text-align: center;
    color: hsl(var(--text-muted));
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

.legal-text h2 {
    color: hsl(var(--primary));
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid hsl(var(--primary) / 0.2);
}

.legal-text h3 {
    color: hsl(var(--primary-dark));
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-footer {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-md);
    border-radius: var(--radius);
    margin-top: var(--space-xl);
    border-left: 4px solid hsl(var(--primary));
}

/* Cookie Controls */
.cookie-controls {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
}

.cookie-toggle {
    margin: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.cookie-toggle label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.cookie-toggle input[type="checkbox"] {
    width: auto;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cookie-table th,
.cookie-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid hsl(var(--text-muted) / 0.1);
}

.cookie-table th {
    background-color: hsl(var(--primary));
    color: white;
    font-weight: 600;
}

.cookie-table tbody tr:hover {
    background-color: hsl(var(--surface-alt));
}

@media (max-width: 768px) {
    .cookie-table {
        font-size: var(--font-size-sm);
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: var(--space-xs);
    }
}

/* Footer */
.footer {
    background-color: hsl(var(--text));
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-section p {
    color: hsl(var(--text-muted));
    line-height: var(--line-height-relaxed);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: hsl(var(--text-muted));
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    font-size: var(--font-size-xl);
    transition: var(--transition-fast);
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid hsl(var(--text-muted) / 0.3);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: hsl(var(--text-muted));
    font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Utility Classes */
.hidden { display: none !important; }
.visible { display: block !important; }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error Messages */
.message {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    margin: var(--space-sm) 0;
    font-weight: 500;
}

.message.success {
    background-color: hsl(var(--success) / 0.1);
    color: hsl(var(--success));
    border: 1px solid hsl(var(--success) / 0.3);
}

.message.error {
    background-color: hsl(var(--error) / 0.1);
    color: hsl(var(--error));
    border: 1px solid hsl(var(--error) / 0.3);
}

.message.warning {
    background-color: hsl(var(--warning) / 0.1);
    color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning) / 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Print Styles */
@media print {
    .cookie-banner,
    .nav,
    .footer,
    .btn,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text: 0 0% 0%;
        --background: 0 0% 100%;
        --primary: 240 100% 25%;
    }
}

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

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: hsl(var(--primary));
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius);
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}
