/* Design System Variables */
:root {
  --background: oklch(0.9821 0 0);
  --foreground: oklch(0.3211 0 0);
  --card: oklch(1.0000 0 0);
  --card-foreground: oklch(0.3211 0 0);
  --popover: oklch(1.0000 0 0);
  --popover-foreground: oklch(0.3211 0 0);
  --primary: oklch(0.5676 0.2021 283.0838);
  --primary-foreground: oklch(1.0000 0 0);
  --secondary: oklch(0.8214 0.0720 249.3482);
  --secondary-foreground: oklch(0.3211 0 0);
  --muted: oklch(0.8202 0.0213 91.6163);
  --muted-foreground: oklch(0.5382 0 0);
  --accent: oklch(0.6475 0.0642 117.4260);
  --accent-foreground: oklch(1.0000 0 0);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: oklch(1.0000 0 0);
  --border: oklch(0.8699 0 0);
  --input: oklch(0.8699 0 0);
  --ring: oklch(0.5676 0.2021 283.0838);
  --chart-1: oklch(0.5676 0.2021 283.0838);
  --chart-2: oklch(0.5261 0.1705 314.6534);
  --chart-3: oklch(0.3390 0.1793 301.6848);
  --chart-4: oklch(0.6746 0.1414 261.3380);
  --chart-5: oklch(0.5880 0.0993 245.7394);
  --sidebar: oklch(0.9821 0 0);
  --sidebar-foreground: oklch(0.3211 0 0);
  --sidebar-primary: oklch(0.5676 0.2021 283.0838);
  --sidebar-primary-foreground: oklch(1.0000 0 0);
  --sidebar-accent: oklch(0.6475 0.0642 117.4260);
  --sidebar-accent-foreground: oklch(1.0000 0 0);
  --sidebar-border: oklch(0.8699 0 0);
  --sidebar-ring: oklch(0.5676 0.2021 283.0838);
  --font-sans: Montserrat, sans-serif;
  --font-serif: Playfair Display, serif;
  --font-mono: Source Code Pro, monospace;
  --radius: 0.5rem;
  --shadow-2xs: 0px 5px 10px -2px hsl(0 0% 0% / 0.05);
  --shadow-xs: 0px 5px 10px -2px hsl(0 0% 0% / 0.05);
  --shadow-sm: 0px 5px 10px -2px hsl(0 0% 0% / 0.10), 0px 1px 2px -3px hsl(0 0% 0% / 0.10);
  --shadow: 0px 5px 10px -2px hsl(0 0% 0% / 0.10), 0px 1px 2px -3px hsl(0 0% 0% / 0.10);
  --shadow-md: 0px 5px 10px -2px hsl(0 0% 0% / 0.10), 0px 2px 4px -3px hsl(0 0% 0% / 0.10);
  --shadow-lg: 0px 5px 10px -2px hsl(0 0% 0% / 0.10), 0px 4px 6px -3px hsl(0 0% 0% / 0.10);
  --shadow-xl: 0px 5px 10px -2px hsl(0 0% 0% / 0.10), 0px 8px 10px -3px hsl(0 0% 0% / 0.10);
  --shadow-2xl: 0px 5px 10px -2px hsl(0 0% 0% / 0.25);
  --tracking-normal: 0em;
  --spacing: 0.25rem;
  
  /* Radius variations */
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
}

.dark {
  --background: oklch(0.2303 0.0125 264.2926);
  --foreground: oklch(0.9219 0 0);
  --card: oklch(0.3210 0.0078 223.6661);
  --card-foreground: oklch(0.9219 0 0);
  --popover: oklch(0.3210 0.0078 223.6661);
  --popover-foreground: oklch(0.9219 0 0);
  --primary: oklch(0.5676 0.2021 283.0838);
  --primary-foreground: oklch(1.0000 0 0);
  --secondary: oklch(0.3390 0.1793 301.6848);
  --secondary-foreground: oklch(0.9219 0 0);
  --muted: oklch(0.3867 0 0);
  --muted-foreground: oklch(0.7155 0 0);
  --accent: oklch(0.6746 0.1414 261.3380);
  --accent-foreground: oklch(0.9219 0 0);
  --destructive: oklch(0.6368 0.2078 25.3313);
  --destructive-foreground: oklch(1.0000 0 0);
  --border: oklch(0.3867 0 0);
  --input: oklch(0.3867 0 0);
  --ring: oklch(0.5676 0.2021 283.0838);
  --chart-1: oklch(0.5676 0.2021 283.0838);
  --chart-2: oklch(0.5261 0.1705 314.6534);
  --chart-3: oklch(0.3390 0.1793 301.6848);
  --chart-4: oklch(0.6746 0.1414 261.3380);
  --chart-5: oklch(0.5880 0.0993 245.7394);
  --sidebar: oklch(0.2303 0.0125 264.2926);
  --sidebar-foreground: oklch(0.9219 0 0);
  --sidebar-primary: oklch(0.5676 0.2021 283.0838);
  --sidebar-primary-foreground: oklch(1.0000 0 0);
  --sidebar-accent: oklch(0.6746 0.1414 261.3380);
  --sidebar-accent-foreground: oklch(0.9219 0 0);
  --sidebar-border: oklch(0.3867 0 0);
  --sidebar-ring: oklch(0.5676 0.2021 283.0838);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Logo mobile adjustments */
    .logo-img {
        height: 50px;
        max-width: 180px;
    }
    
    /* Larger touch targets for mobile */
    input, textarea, select {
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 44px;
    }
    
    /* Improve tap targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Exception for logo link */
    .nav-logo a {
        min-height: auto;
        min-width: auto;
        display: block;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--card);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
    background: var(--primary);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

/* Hero Section with Reveal Services */
.hero-reveal {
    background: oklch(0.2303 0.0125 264.2926);
    padding: 120px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, var(--primary) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--accent) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

.hero-reveal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Intro Section */
.hero-reveal-intro {
    color: oklch(0.9219 0 0);
}

.hero-reveal-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: oklch(0.9219 0 0);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-serif);
}

.hero-reveal-subtitle {
    font-size: 1.4rem;
    color: oklch(0.7155 0 0);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-reveal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-secondary-text {
    color: oklch(0.7155 0 0);
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.hero-reveal-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-reveal-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Reveal Services */
.hero-reveal-services {
    background: oklch(0.3210 0.0078 223.6661);
    border: 1px solid oklch(0.3867 0 0);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
}

.hero-services-subtitle {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    color: oklch(0.7155 0 0);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.hero-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-reveal-item {
    position: relative;
    height: fit-content;
    width: fit-content;
    overflow: visible;
    padding: 2.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding-left: 1rem;
    padding-right: 8rem;
}

.hero-reveal-item:hover {
    background: oklch(0.3867 0 0);
    border-radius: var(--radius-lg);
}

.hero-reveal-text {
    font-size: 5rem;
    font-weight: 900;
    color: oklch(0.9219 0 0);
    transition: opacity 0.5s ease, color 0.5s ease;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 10;
    font-family: var(--font-serif);
}

.hero-reveal-item:hover .hero-reveal-text {
    opacity: 0.4;
    color: var(--primary);
}

/* Hero Image Containers - Exact React Recreation */
.hero-image-container-1 {
    position: absolute;
    right: 2rem;
    top: -0.25rem;
    z-index: 40;
    height: 5rem;
    width: 4rem;
}

.hero-image-container-2 {
    position: absolute;
    right: 2rem;
    top: -0.25rem;
    z-index: 40;
    height: 5rem;
    width: 4rem;
    transform: translate(0, 0) rotate(0deg);
    transition: transform 0.5s ease;
    transition-delay: 0.15s;
}

.hero-image-inner {
    position: relative;
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: none;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}

.hero-reveal-item:hover .hero-image-inner {
    transform: scale(1);
    opacity: 1;
    box-shadow: var(--shadow-2xl);
    width: 110%;
    height: 110%;
}

.hero-reveal-item:hover .hero-image-container-2 {
    transform: translate(1.5rem, 1.5rem) rotate(12deg);
}

/* Auto-reveal animation */
.hero-reveal-item.auto-reveal .hero-image-inner {
    transform: scale(1);
    opacity: 1;
    box-shadow: var(--shadow-2xl);
    width: 110%;
    height: 110%;
}

.hero-reveal-item.auto-reveal .hero-image-container-2 {
    transform: translate(1.5rem, 1.5rem) rotate(12deg);
}

.hero-reveal-item.auto-reveal .hero-reveal-text {
    opacity: 0.4;
    color: var(--primary);
}

.hero-image-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Local Trust Section */
.local-trust {
    padding: 80px 0;
    background: var(--card);
}

.local-trust h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.trust-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.trust-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--background);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.trust-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.3rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.trust-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .hero-reveal-item:hover .hero-image-inner,
    .hero-reveal-item:active .hero-image-inner {
        transform: scale(1);
        opacity: 1;
        width: 5rem;
        height: 4rem;
    }
    
    .hero-reveal-item:hover .hero-image-container-2,
    .hero-reveal-item:active .hero-image-container-2 {
        transform: translate(0.5rem, 0.5rem) rotate(6deg);
    }
    
    .hero-reveal-item:hover .hero-reveal-text,
    .hero-reveal-item:active .hero-reveal-text {
        opacity: 0.6;
        color: var(--primary);
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 48px;
        padding: 16px 24px;
    }
    
    .nav-menu a {
        padding: 16px 0;
        font-size: 1.1rem;
    }
    
    /* Remove hover effects that don't work on touch */
    .trust-card:hover,
    .service-card:hover,
    .faq-item:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero-reveal {
        padding: 75px 0 30px;
        min-height: 85vh;
        margin-top: 15px;
    }
    
    .hero-reveal-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-reveal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-reveal-services {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .hero-reveal-text {
        font-size: 1.7rem;
        transition: opacity 0.5s ease, color 0.5s ease;
    }
    
    .hero-reveal-item {
        padding: 0.8rem 0;
        padding-right: 3.5rem;
    }
    
    .hero-image-container-1,
    .hero-image-container-2 {
        right: 0.2rem;
    }
    
    .hero-reveal-item:hover .hero-image-inner {
        width: 4.5rem;
        height: 3.5rem;
    }
    
    /* Auto-reveal animation for very small screens */
    .hero-reveal-item.auto-reveal .hero-image-inner {
        transform: scale(1);
        opacity: 1;
        box-shadow: var(--shadow-2xl);
        width: 4.5rem;
        height: 3.5rem;
    }
    
    .hero-reveal-item.auto-reveal .hero-reveal-text {
        opacity: 0.4;
        color: var(--primary);
    }
    
    .container {
        padding: 0 10px;
    }
    
    .trust-card,
    .service-card,
    .faq-item {
        padding: 1rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--muted);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 60px;
    background: #e9ecef;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-images {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.portfolio-images:hover .after-image {
    opacity: 1;
}

.portfolio-images:hover .before-image {
    opacity: 0;
}

/* Auto-animation for portfolio images */
.portfolio-images.auto-animate .after-image {
    opacity: 1;
}

.portfolio-images.auto-animate .before-image {
    opacity: 0;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-area {
    background: #2c5aa0;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--card);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.faq-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary);
    color: var(--primary-foreground);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-secondary-text {
    color: var(--primary-foreground);
    font-size: 1rem;
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

.cta .btn-primary {
    background: var(--primary-foreground);
    color: var(--primary);
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-form h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Service Pages Styles */
.service-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.service-details {
    padding: 80px 0;
    background: white;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-phases .phase {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.service-phases .phase h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-phases .phase ul {
    list-style: none;
    padding: 0;
}

.service-phases .phase ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.service-phases .phase ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.benefits-list .benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefits-list .benefit i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.benefits-list .benefit h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefits-list .benefit p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.mansard-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.mansard-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.type-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-content {
    padding: 2rem;
}

.type-content h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.type-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.type-features span {
    background: #e3f2fd;
    color: #2c5aa0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.mansard-process {
    padding: 80px 0;
    background: white;
}

.mansard-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: 700;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child):after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 80px;
    background: #e9ecef;
}

.timeline-number {
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.timeline-duration {
    background: #f8f9fa;
    color: #2c5aa0;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #2c5aa0;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5aa0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #e3f2fd;
}

.faq-item h3 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active p {
    margin-top: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Header Scroll Effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Reveal Services Section - Exact React Recreation */
.reveal-services {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: visible;
}

.reveal-services-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reveal-services-subtitle {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.reveal-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reveal-item {
    position: relative;
    height: fit-content;
    width: fit-content;
    overflow: visible;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reveal-text {
    font-size: 4.5rem;
    font-weight: 900;
    color: #111827;
    transition: opacity 0.5s ease;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 10;
}

.reveal-item:hover .reveal-text {
    opacity: 0.4;
}

/* Exact React CSS Translation */

/* Container pentru prima imagine - absolute right-8 -top-1 z-40 h-20 w-16 */
.reveal-image-container-1 {
    position: absolute;
    right: 2rem; /* right-8 = 2rem */
    top: -0.25rem; /* -top-1 = -0.25rem */
    z-index: 40;
    height: 5rem; /* h-20 = 5rem */
    width: 4rem; /* w-16 = 4rem */
}

/* Container pentru a doua imagine - același poziționare inițială */
.reveal-image-container-2 {
    position: absolute;
    right: 2rem;
    top: -0.25rem;
    z-index: 40;
    height: 5rem;
    width: 4rem;
    /* Această imagine va fi transformată la hover */
    transform: translate(0, 0) rotate(0deg);
    transition: transform 0.5s ease;
    transition-delay: 0.15s;
}

/* Efectul pentru imaginile din interior */
.reveal-image-inner {
    position: relative;
    width: 4rem; /* w-16 = 4rem */
    height: 4rem; /* h-16 = 4rem */
    overflow: hidden;
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: none;
    
    /* Animații - scale-0 opacity-0 inițial */
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}

/* La hover - group-hover:scale-100 group-hover:opacity-100 */
.reveal-item:hover .reveal-image-inner {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* group-hover:shadow-xl */
}

/* La hover imaginile devin w-full h-full */
.reveal-item:hover .reveal-image-inner {
    width: 100%;
    height: 100%;
}

/* A doua imagine se mișcă și rotește la hover */
.reveal-item:hover .reveal-image-container-2 {
    transform: translate(1.5rem, 1.5rem) rotate(12deg);
}

/* Imaginile în sine */
.reveal-image-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Responsive adjustments for reveal services */
@media (max-width: 768px) {
    .reveal-services {
        padding: 60px 0;
    }
    
    .reveal-services-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .reveal-text {
        font-size: 3rem;
    }
    
    .reveal-images-container {
        right: 1rem;
        top: 0;
    }
    
    .reveal-item:hover .reveal-image {
        width: 8rem;
        height: 6rem;
    }
    
    .reveal-item:hover .reveal-image-2 {
        transform: translate(1rem, 1rem) rotate(8deg);
    }
}

@media (max-width: 480px) {
    .reveal-text {
        font-size: 2.5rem;
    }
    
    .reveal-item:hover .reveal-image {
        width: 6rem;
        height: 4.5rem;
    }
    
    .reveal-item:hover .reveal-image-2 {
        transform: translate(0.8rem, 0.8rem) rotate(6deg);
    }
}

/* Mobile-First Responsive Design */

/* Mobile Styles (Default - Mobile First) */
.nav-toggle {
    display: flex;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--card);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
    z-index: 999;
}

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

/* Hero Mobile Optimizations */
.hero-reveal {
    padding: 85px 0 40px;
    min-height: 90vh;
    margin-top: 15px;
}

.hero-reveal-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0 15px;
}

.hero-reveal-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.highlight-primary {
    color: var(--primary);
    font-weight: 900;
}

.hero-reveal-subtitle {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-reveal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-buttons-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-secondary-text {
    text-align: center;
    font-size: 0.9rem;
}

/* Hero Services Mobile */
.hero-reveal-services {
    padding: 1rem;
    margin-top: 1rem;
}

.hero-services-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.hero-reveal-text {
    font-size: 2rem;
    line-height: 1;
    transition: opacity 0.5s ease, color 0.5s ease;
}

.hero-reveal-item {
    padding: 1rem 0;
    padding-right: 4rem;
}

.hero-image-container-1,
.hero-image-container-2 {
    right: 0.5rem;
    top: 0;
}

.hero-reveal-item:hover .hero-image-inner {
    width: 5.5rem;
    height: 4rem;
}

.hero-reveal-item:hover .hero-image-container-2 {
    transform: translate(0.6rem, 0.6rem) rotate(6deg);
}

/* Auto-reveal animation for mobile */
.hero-reveal-item.auto-reveal .hero-image-inner {
    transform: scale(1);
    opacity: 1;
    box-shadow: var(--shadow-2xl);
    width: 5.5rem;
    height: 4rem;
}

.hero-reveal-item.auto-reveal .hero-image-container-2 {
    transform: translate(0.6rem, 0.6rem) rotate(6deg);
}

.hero-reveal-item.auto-reveal .hero-reveal-text {
    opacity: 0.4;
    color: var(--primary);
}

/* Sections Mobile */
.local-trust,
.services,
.process,
.faq-section,
.cta,
.contact {
    padding: 60px 0;
}

.local-trust h2,
.services h2,
.process h2,
.faq-section h2,
.cta h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.trust-subtitle,
.services-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Cards Mobile */
.trust-grid,
.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.trust-card,
.service-card {
    padding: 1.5rem;
}

.trust-card h3,
.service-card h3 {
    font-size: 1.2rem;
}

.trust-card p,
.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Process Mobile */
.process-timeline {
    padding: 0 1rem;
}

.process-step {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
}

.process-step:not(:last-child):after {
    display: none;
}

.step-number {
    margin-right: 0;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
}

/* Portfolio Mobile */
.portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.portfolio-item {
    margin: 0 1rem;
}

/* FAQ Mobile */
.faq-grid {
    gap: 1.5rem;
    padding: 0 1rem;
}

.faq-item {
    padding: 1.5rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    line-height: 1.3;
}

.faq-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Mobile */
.cta h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0 1rem;
}

.cta p {
    font-size: 1rem;
    padding: 0 1rem;
}

.cta-secondary-text {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 1rem;
}

/* Contact Mobile */
.contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-form,
.contact-info {
    padding: 0 1rem;
}

/* Buttons Mobile */
.btn {
    padding: 14px 20px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.hero-reveal-buttons .btn {
    max-width: 280px;
}

/* Feature Tags Mobile */
.service-features {
    justify-content: center;
    gap: 0.3rem;
}

.feature-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
        width: auto;
    }

    .hero-reveal {
        padding: 100px 0 80px;
        margin-top: 0;
    }

    .hero-reveal-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
        padding: 0 20px;
    }

    .hero-reveal-title {
        font-size: 2.8rem;
    }

    .hero-reveal-subtitle {
        font-size: 1.2rem;
    }

    .hero-reveal-buttons {
        align-items: flex-start;
    }

    .hero-buttons-row {
        justify-content: flex-start;
    }

    .hero-secondary-text {
        text-align: left;
    }

    .highlight-primary {
        color: var(--primary);
    }

    .hero-reveal-services {
        padding: 2.5rem;
    }

    .hero-reveal-text {
        font-size: 3.5rem;
        transition: opacity 0.5s ease, color 0.5s ease;
    }

    .hero-reveal-item {
        padding-right: 7rem;
    }

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

    .process-step {
        flex-direction: row;
        text-align: left;
    }

    .step-number {
        margin-right: 2rem;
        margin-bottom: 0;
    }

    .process-step:not(:last-child):after {
        display: block;
    }

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

    .btn {
        width: auto;
        max-width: none;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-reveal-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 6rem;
    }

    .hero-reveal-title {
        font-size: 3.5rem;
    }

    .hero-reveal-subtitle {
        font-size: 1.4rem;
    }

    .hero-reveal-services {
        padding: 3rem;
    }

    .hero-reveal-text {
        font-size: 5rem;
        transition: opacity 0.5s ease, color 0.5s ease;
    }

    .hero-reveal-item {
        padding-right: 8rem;
    }

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

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

    .local-trust,
    .services,
    .process,
    .faq-section,
    .cta,
    .contact {
        padding: 80px 0;
    }

    .local-trust h2,
    .services h2,
    .process h2,
    .faq-section h2,
    .cta h2 {
        font-size: 2.5rem;
    }
}

/* ===== STILURI PENTRU NOILE SECȚIUNI SEO ===== */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--muted);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--muted-foreground);
}

.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-foreground);
}

.breadcrumb-list span {
    color: var(--foreground);
    font-weight: 500;
}

/* Table of Contents */
.table-of-contents {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 40;
}

.toc-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s ease;
}

.toc-toggle:hover {
    color: var(--primary);
}

.toc-toggle i:last-child {
    transition: transform 0.2s ease;
}

.toc-toggle[aria-expanded="true"] i:last-child {
    transform: rotate(180deg);
}

.toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.toc-content.active {
    max-height: 400px;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    padding: 1rem 0;
    list-style: none;
}

.toc-list a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.toc-list a:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* Statistici */
.statistics-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--primary-foreground);
}

.statistics-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-foreground);
    font-size: 1.8rem;
}

.statistics-section .section-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-foreground);
    margin-bottom: 0.25rem;
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-foreground);
}

.stat-detail {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.statistics-proof {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    margin-top: 1rem;
    font-size: 0.85rem;
}

.statistics-proof i {
    color: #ffd700;
    margin-right: 0.5rem;
}

/* Process Modern */
.process-modern {
    padding: 3rem 0;
    background: var(--background);
}

.process-modern h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
    font-size: 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.process-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-icon i {
    font-size: 1.5rem;
    color: var(--primary-foreground);
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--accent-foreground);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--card);
}

.process-card h3 {
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.process-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Calculator Preț */
.price-calculator {
    padding: 4rem 0;
    background: var(--background);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
}

.calc-step h3 {
    margin-bottom: 1.5rem;
    color: var(--foreground);
    font-size: 1.5rem;
}

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

.calc-option {
    position: relative;
    cursor: pointer;
}

.calc-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.calc-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    text-align: center;
}

.calc-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--primary-foreground);
}

.calc-option .option-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.calc-option input[type="radio"]:checked + .option-content i {
    color: var(--primary-foreground);
}

.calc-option .option-content span {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.calc-option .option-content small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.calc-input-group {
    margin-bottom: 2rem;
}

.calc-input-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.calc-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.range-slider {
    position: relative;
}

.calc-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--muted);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.calc-checkboxes {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calc-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-checkbox:hover {
    border-color: var(--primary);
}

.calc-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.calc-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.calc-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-foreground);
    font-weight: bold;
}

.checkbox-content span {
    font-weight: 600;
    color: var(--foreground);
}

.checkbox-content small {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.calc-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.calculator-result {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.result-summary h3 {
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-separator {
    color: var(--muted-foreground);
}

.price-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.result-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--muted);
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.result-note i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Avantaje Competitive */
.competitive-advantages {
    padding: 4rem 0;
    background: var(--background);
}

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

.advantage-card {
    position: relative;
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--primary-foreground);
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 1.3rem;
}

.advantage-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.advantage-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimoniale */
.testimonials {
    padding: 4rem 0;
    background: var(--muted);
}

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

.testimonial-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.author-info small {
    display: block;
    color: var(--muted-foreground);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.social-proof {
    margin-left: auto;
}

.social-proof i {
    font-size: 1.5rem;
    color: var(--primary);
}

.testimonials-cta {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border-radius: var(--radius-lg);
}

.testimonials-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--foreground);
}

/* Zonă Acoperire */
.coverage-area {
    padding: 4rem 0;
    background: var(--background);
}

.coverage-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.map-container {
    position: relative;
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    min-height: 400px;
}

.map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem;
    border-radius: 50%;
    font-weight: 600;
}

.map-center i {
    font-size: 1.5rem;
}

.coverage-zones {
    position: absolute;
    inset: 2rem;
}

.coverage-zones .zone {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverage-zones .zone:hover {
    transform: scale(1.1);
    z-index: 10;
}

.zone-1 { top: 20%; left: 30%; }
.zone-2 { top: 15%; right: 25%; }
.zone-3 { bottom: 30%; right: 20%; }
.zone-4 { bottom: 20%; left: 25%; }
.zone-5 { bottom: 25%; left: 15%; }
.zone-6 { top: 25%; left: 15%; }

.ilfov-zones {
    position: absolute;
    inset: 0;
}

.ilfov-zone {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ilfov-zone:hover {
    transform: scale(1.1);
}

.ilfov-zone:nth-child(1) { top: 10%; right: 10%; }
.ilfov-zone:nth-child(2) { top: 5%; right: 35%; }
.ilfov-zone:nth-child(3) { top: 20%; right: 5%; }
.ilfov-zone:nth-child(4) { bottom: 10%; left: 5%; }

.zone-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--popover);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.coverage-zones .zone:hover .zone-info,
.ilfov-zones .ilfov-zone:hover .zone-info {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.zone-info h4 {
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.zone-info p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.zone-info small {
    color: var(--muted-foreground);
    font-size: 0.8rem;
}

.coverage-details h3 {
    margin-bottom: 2rem;
    color: var(--foreground);
}

.response-times {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.response-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.response-item h4 {
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.response-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.coverage-cta {
    text-align: center;
}

.coverage-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.coverage-note i {
    color: var(--primary);
}

/* Trust Signals */
.trust-signals {
    padding: 4rem 0;
    background: var(--muted);
}

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

.trust-item {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.trust-item .trust-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trust-item .trust-icon i {
    font-size: 1.5rem;
    color: var(--primary-foreground);
}

.trust-item h4 {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 1.2rem;
}

.trust-item p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cert-number {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ Optimizat */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: background-color 0.2s ease;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer > div {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-answer strong {
    color: var(--foreground);
}

/* Responsive Design pentru noile secțiuni */
@media (min-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .coverage-container {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .calc-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .statistics-section {
        padding: 3rem 0;
    }
    
    .statistics-section h2 {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .result-actions {
        flex-direction: row;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .statistics-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
    }
    
    .statistics-section {
        padding: 4rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .toc-content.active {
        max-height: none;
    }
    
    .table-of-contents .toc-content {
        max-height: none;
        overflow: visible;
    }
    
    .table-of-contents .toc-toggle {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .process-modern {
        padding: 4rem 0;
    }
}

/* ===== GDPR COOKIE CONSENT ===== */

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    color: var(--primary-foreground);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateX(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.cookie-icon {
    display: none;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-foreground);
}

.cookie-text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-link {
    color: #F5F5DC;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: #FFFACD;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    justify-content: space-between;
}

.cookie-actions .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex: 1;
}

.btn-text {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-text:hover {
    color: var(--primary-foreground);
}

.cookie-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--primary-foreground);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    font-size: 0.8rem;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: #F5F5DC;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    color: var(--primary-foreground);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.cookie-modal-header .cookie-close {
    position: static;
    background: rgba(255, 255, 255, 0.2);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E5E5;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #E5E5E5;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #FAFAFA;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Responsive Design pentru Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 0.75rem;
    }
    
    .cookie-text h4 {
        font-size: 0.9rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
    }
    
    .cookie-actions .btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Footer Legal Section */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.footer-legal-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-legal-links span {
    color: var(--muted-foreground);
    opacity: 0.5;
}

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

/* Legal Modal Styles */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.legal-modal.show {
    opacity: 1;
    visibility: visible;
}

.legal-modal-content {
    background: var(--card);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

.legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 100%);
    color: var(--primary-foreground);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.legal-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.legal-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--primary-foreground);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.legal-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.legal-modal-body {
    padding: 2rem;
    line-height: 1.6;
}

.legal-modal-body h4 {
    color: var(--primary);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-modal-body h4:first-child {
    margin-top: 0;
}

.legal-modal-body p {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.legal-modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-modal-body li {
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.legal-modal-footer {
    padding: 1rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    background: var(--muted);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

@media (max-width: 768px) {
    .legal-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .legal-modal-body {
        padding: 1.5rem;
    }
    
    .legal-modal-footer {
        padding: 1rem 1.5rem;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero */
.services-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, var(--primary) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--accent) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

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

.services-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-serif);
}

.services-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Main & Secondary */
.services-main,
.services-secondary {
    padding: 4rem 0;
}

.services-secondary {
    background: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--card) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.service-card.featured::before {
    content: 'SPECIALITATEA NOASTRĂ';
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-image-placeholder {
    margin-bottom: 1.5rem;
}

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
}

.image-placeholder i {
    font-size: 2rem;
    color: var(--muted-foreground);
}

.image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-foreground);
}

.service-content h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-tag {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Problems & Solutions */
.problems-solutions {
    padding: 4rem 0;
    background: var(--background);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.problem-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.problem-icon {
    width: 40px;
    height: 40px;
    background: var(--destructive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon i {
    font-size: 1.2rem;
    color: var(--destructive-foreground);
}

.problem-header h3 {
    color: var(--foreground);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.solution-content h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-content h4 i {
    color: var(--accent);
}

.solution-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Services FAQ */
.services-faq {
    padding: 4rem 0;
    background: var(--muted);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.faq-question {
    background: var(--card);
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.2s ease;
}

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

.faq-question i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    background: var(--card);
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Services CTA */
.services-cta {
    padding: 4rem 0;
    background: var(--primary);
    color: var(--primary-foreground);
    text-align: center;
}

.services-cta .cta-content h2 {
    color: var(--primary-foreground);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.services-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.services-cta .btn-primary {
    background: var(--primary-foreground);
    color: var(--primary);
}

.services-cta .btn-primary:hover {
    background: var(--background);
    transform: translateY(-2px);
}

/* Responsive Design pentru Services */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .problem-card {
        padding: 1.5rem;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 4rem 0 3rem;
    }
    
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .services-main,
    .services-secondary,
    .problems-solutions,
    .services-faq,
    .services-cta {
        padding: 3rem 0;
    }
    
    .service-card,
    .problem-card {
        padding: 1.25rem;
    }
    
    .image-placeholder {
        height: 150px;
    }
    
    .image-placeholder i {
        font-size: 1.5rem;
    }
    
    .image-placeholder span {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ===== STILURI PENTRU PAGINILE NOI ===== */

/* Page Hero - pentru toate paginile noi */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, oklch(0.4676 0.2021 283.0838) 100%);
    color: var(--primary-foreground);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-serif);
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.page-hero .hero-stats,
.page-hero .hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item,
.highlight-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-foreground);
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.highlight-item i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: #ffd700;
}

/* Portfolio Filters */
.portfolio-filters {
    padding: 2rem 0;
    background: var(--muted);
    border-bottom: 1px solid var(--border);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.overlay-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.project-type,
.project-duration {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Quick Contact Buttons */
.hero-contact-quick {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    color: var(--primary-foreground);
    text-decoration: none;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quick-contact-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: var(--card);
}

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

.contact-method {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.availability {
    display: block;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Modern Form */
.modern-form {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background: var(--muted);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-item input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-item input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-foreground);
    font-weight: bold;
}

/* Responsive pentru paginile noi */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-hero .hero-stats,
    .page-hero .hero-highlights {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .hero-contact-quick {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== STILURI AIDA PENTRU PAGINA PROIECTE ===== */

/* Portfolio Interest Section */
.portfolio-interest {
    padding: 80px 0;
    background: var(--card);
}

.portfolio-interest h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.advanced-filters {
    margin-top: 3rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Process Benefits */
.process-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.benefit-tag {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--accent);
}

.timeline-content p {
    margin-bottom: 1rem;
}

.timeline-content strong {
    color: var(--primary);
}

.timeline-content em {
    color: var(--muted-foreground);
    font-style: italic;
}

/* Enhanced CTA Section */
.cta-main-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cta-primary,
.cta-secondary {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cta-description {
    margin-bottom: 1.5rem;
    color: var(--foreground);
    font-size: 1rem;
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 250px;
}

/* CTA Guarantee */
.cta-guarantee {
    background: var(--muted);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.guarantee-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.guarantee-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Hero Stats with Icons */
.hero-stats .stat-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    display: block;
}

/* ===== HERO SECTION COMPACT ===== */

/* Compact Hero */
.page-hero-compact {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, oklch(0.4676 0.2021 283.0838) 100%);
}

.page-hero-compact h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-compact .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Compact Stats */
.hero-stats-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats-compact .stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats-compact .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.hero-stats-compact .stat-label {
    font-size: 0.85rem;
    color: var(--primary-foreground);
    font-weight: 500;
    opacity: 0.9;
}

/* ===== PORTFOLIO INTEREST COMPACT ===== */

.portfolio-interest-compact {
    padding: 40px 0 30px;
}

.portfolio-interest-compact h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.portfolio-interest-compact .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.advanced-filters-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.advanced-filters-compact .filter-group {
    margin-bottom: 0;
}

.advanced-filters-compact .filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advanced-filters-compact .filter-buttons {
    gap: 0.5rem;
}

.advanced-filters-compact .filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

/* Responsive AIDA */
@media (max-width: 768px) {
    /* Hero Compact Mobile */
    .page-hero-compact {
        padding: 60px 0 30px;
    }
    
    .page-hero-compact h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        margin-top: 0.2cm;
    }
    
    .page-hero-compact .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 400px;
    }
    
    .hero-stats-compact .stat-item {
        padding: 0.75rem 0.5rem;
    }
    
    .hero-stats-compact .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats-compact .stat-label {
        font-size: 0.8rem;
    }
    
    /* Portfolio Interest Compact Mobile */
    .portfolio-interest-compact {
        padding: 30px 0 20px;
    }
    
    .portfolio-interest-compact h2 {
        font-size: 1.6rem;
    }
    
    .advanced-filters-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advanced-filters-compact .filter-buttons {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
    .advanced-filters-compact .filter-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: calc(50% - 0.2rem);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-divider {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        margin: 0 auto;
    }
    
    .guarantee-items {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .btn-large {
        width: 100%;
        min-width: auto;
    }
    
    .process-benefits {
        justify-content: center;
    }
}

/* ===== PROJECT MODAL STYLES ===== */

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Modal Content */
.modal-content {
    background-color: var(--card);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--muted-foreground);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--primary);
}

/* Project Modal Content */
.project-modal-content {
    padding: 2rem;
}

.project-modal-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-serif);
}

/* Modal Images */
.project-modal-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.modal-image-container {
    text-align: center;
}

.modal-image-container h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

/* Modal Details */
.project-modal-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin: 2rem 0;
}

.project-modal-info h3,
.project-modal-description h3,
.project-modal-features h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-modal-info ul {
    list-style: none;
    padding: 0;
}

.project-modal-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}

.project-modal-info li:last-child {
    border-bottom: none;
}

.project-modal-description p {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 1rem;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.features-list li {
    background: var(--muted);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    color: var(--foreground);
    font-weight: 500;
}

/* Modal CTA */
.project-modal-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .project-modal-content {
        padding: 1.5rem;
    }
    
    .project-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .project-modal-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-image-container img {
        height: 250px;
    }
    
    .project-modal-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .close {
        font-size: 28px;
        top: 10px;
        right: 20px;
    }
}

/* ===== INLINE LINKS STYLES ===== */
.inline-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.inline-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.inline-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Testimonials link styling */
.testimonials-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.testimonials-link .inline-link {
    font-weight: 600;
}

/* ===== QUICK QUOTE SECTION ===== */
.quick-quote-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.quick-quote-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quick-quote-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-quote-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quick-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.quick-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-form input,
.quick-form textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quick-form input:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.quick-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 1rem;
}

.quick-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: white;
    color: var(--primary);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.quick-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.quick-benefits i {
    color: var(--accent);
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quick-quote-section {
        padding: 2rem 0;
    }
    
    .quick-quote-content {
        padding: 0 1rem;
    }
    
    .quick-quote-content h2 {
        font-size: 1.75rem;
    }
    
    .quick-form {
        padding: 1.5rem;
    }
    
    .quick-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .quick-benefits {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .quick-benefits span {
        font-size: 0.8125rem;
    }
}

/* ===== MODERN DESPRE NOI STYLES ===== */

/* Our Story in Bucharest Section */
.our-story-bucharest {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}

.our-story-bucharest h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.our-story-bucharest h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-intro,
.story-evolution,
.local-expertise {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    text-align: left;
}

.story-intro a,
.story-evolution a,
.local-expertise a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.story-intro a:hover,
.story-evolution a:hover,
.local-expertise a:hover {
    border-bottom-color: var(--primary);
}

.mission-statement {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 3rem 0;
    border-left: 4px solid var(--primary);
}

.mission-statement h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.mission-statement p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

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

.local-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.local-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.local-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-sans);
}

.local-stats .stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expert-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

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

.expert-photo {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

/* Specific positioning for ionc.webp */
.expert-img[src*="ionc.webp"] {
    object-position: center 35%;
}

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

.expert-info {
    padding: 2rem;
}

.expert-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.expert-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.expert-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.expert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.expert-skills span {
    background: var(--muted);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.expert-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.expert-link:hover {
    color: var(--secondary);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--background);
}

.values-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Certifications Section */
.certifications-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
}

.certifications-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 1rem;
}

.certifications-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cert-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.cert-icon i {
    font-size: 1.75rem;
    color: var(--accent-foreground);
}

.cert-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cert-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .our-story-bucharest {
        padding: 3rem 0;
    }
    
    .our-story-bucharest h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .story-content {
        padding: 0 1rem;
    }
    
    .story-intro,
    .story-evolution,
    .local-expertise {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .mission-statement h3 {
        font-size: 1.25rem;
    }
    
    .mission-statement p {
        font-size: 1rem;
    }
    
    .local-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .local-stats .stat-item {
        padding: 1.25rem;
    }
    
    .local-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .expert-card {
        margin: 0 1rem;
    }
    
    .expert-photo {
        height: 200px;
    }
    
    .expert-img {
        object-position: center top;
    }
    
    .expert-img[src*="ionc.webp"] {
        object-position: center 35%;
    }
    
    .expert-info {
        padding: 1.5rem;
    }
    
    .expert-info h3 {
        font-size: 1.25rem;
    }
    
    .expert-skills {
        gap: 0.25rem;
    }
    
    .expert-skills span {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .values-section,
    .certifications-section {
        padding: 3rem 0;
    }
    
    .values-section h2,
    .certifications-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .values-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .value-card,
    .cert-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .value-icon i {
        font-size: 1.75rem;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
    
    .cert-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .cert-icon i {
        font-size: 1.5rem;
    }
    
    .cert-card h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .our-story-bucharest h2 {
        font-size: 1.75rem;
    }
    
    .story-intro,
    .story-evolution,
    .local-expertise {
        font-size: 0.9375rem;
        text-align: left;
    }
    
    .mission-statement {
        padding: 1.25rem;
    }
    
    .local-stats .stat-number {
        font-size: 2rem;
    }
    
    .expert-info h3 {
        font-size: 1.125rem;
    }
    
    .values-section h2,
    .certifications-section h2 {
        font-size: 1.75rem;
    }
    
    .value-card,
    .cert-card {
        padding: 1.25rem;
    }
}

/* Google Maps Coverage Area Styles */
.google-map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: #f5f5f5;
    min-height: 450px;
}

/* Ensure Leaflet map fills container */
.google-map-container .leaflet-container {
    width: 100% !important;
    height: 100% !important;
    border-radius: var(--radius-lg);
}

.coverage-map {
    position: relative;
    margin-bottom: 2rem;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    min-width: 200px;
}

.coverage-legend h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.legend-color.primary-zone {
    background-color: var(--primary);
}

.legend-color.secondary-zone {
    background-color: var(--secondary);
}

/* Zone Details Grid */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.zone-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.zone-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.zone-header i {
    font-size: 1.25rem;
    color: var(--primary);
}

.zone-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
}

.zone-content .response-time {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.zone-content .response-time strong {
    color: var(--primary);
    font-weight: 600;
}

.zone-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    background: var(--muted);
    color: var(--muted-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.area-tag:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Responsive adjustments for map */
@media (max-width: 768px) {
    .google-map-container {
        height: 350px;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        background: var(--card);
        backdrop-filter: none;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .zone-card {
        padding: 1.25rem;
    }
    
    .coverage-legend h4 {
        font-size: 0.85rem;
    }
    
    .legend-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .google-map-container {
        height: 300px;
        border-radius: var(--radius-md);
    }
    
    .zone-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .zone-header i {
        font-size: 1rem;
    }
    
    .zone-header h4 {
        font-size: 1rem;
    }
}

/* Leaflet Map Custom Styles */
.leaflet-container {
    font-family: var(--font-sans);
}

.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
    margin: 0;
    line-height: 1.4;
}

.leaflet-popup-tip {
    background: white;
}

.coverage-tooltip {
    background: rgba(86, 118, 178, 0.9);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    box-shadow: var(--shadow-md);
}

.coverage-tooltip:before {
    border-top-color: rgba(86, 118, 178, 0.9);
}

/* Custom marker styles */
.custom-main-marker,
.custom-location-marker {
    background: transparent !important;
    border: none !important;
}

/* Leaflet controls styling */
.leaflet-control-zoom a {
    background-color: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border);
}

.leaflet-control-zoom a:hover {
    background-color: var(--muted);
    color: var(--primary);
}

.leaflet-control-attribution {
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
}

/* Map loading animation */
.google-map-container:not(.loaded)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--muted);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: mapSpin 1s linear infinite;
    z-index: 1000;
    pointer-events: none;
}

.google-map-container.loaded::before {
    display: none !important;
}

@keyframes mapSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Contact Page - Coverage Areas */
.location-coverage {
    padding: 4rem 0;
    background: var(--background);
}

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

.coverage-area {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.coverage-area h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.zones-list .zone {
    background: var(--muted);
    color: var(--muted-foreground);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--border);
    list-style: none;
    display: inline-block;
}

.zones-list .zone:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-1px);
}

.coverage-area p {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coverage-area {
        padding: 1.5rem;
    }
    
    .coverage-area h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .zones-list .zone {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .coverage-area {
        padding: 1.25rem;
    }
    
    .coverage-area h3 {
        font-size: 1.1rem;
    }
    
    .zones-list .zone {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}
