/* Expert Pergola Hérault - Professional Mediterranean Design */

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

/* CSS Variables - Professional Color Palette */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #E67E22;
    --success-color: #27AE60;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --dark-gray: #343A40;
    --medium-gray: #6C757D;
    --light-gray: #E9ECEF;
    --accent-blue: #3498DB;
    --warning-red: #E74C3C;
    
    /* Mediterranean Colors */
    --mediterranean-blue: #006994;
    --terracotta: #D2691E;
    --olive-green: #8B9556;
    --sand-beige: #F5F5DC;
    
    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Container widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1200px;
    --container-xxl: 1400px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* Container System */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: var(--container-md);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    top: 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    min-height: 80px;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 45px;
    width: auto;
    margin-right: var(--spacing-xs);
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.phone-number:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    background: #38A169;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Navigation */
.nav {
    background-color: #4A5568;
    position: relative;
    width: 100%;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    background-color: rgba(230, 126, 34, 0.1);
}

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

/* Ensure navigation active states work properly */
.nav-link.active {
    color: #ED8936;
    background-color: rgba(237, 137, 54, 0.1);
}

.nav-link.active::after {
    background-color: #ED8936;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-heavy);
    list-style: none;
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: var(--spacing-xs) var(--spacing-md);
}

.dropdown-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    padding: var(--spacing-xs) 0;
    display: block;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.dropdown-link:hover {
    color: var(--secondary-color);
    background-color: var(--background-light);
    padding-left: var(--spacing-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: var(--spacing-xs);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.9) 0%, 
        rgba(52, 73, 94, 0.8) 50%, 
        rgba(230, 126, 34, 0.7) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pergola-grid" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="2" fill="rgba(255,255,255,0.1)"/><rect width="2" height="20" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pergola-grid)"/></svg>');
    background-size: cover, 40px 40px;
    background-position: center, center;
    color: var(--white);
    padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xxl);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(230, 126, 34, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(52, 152, 219, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.1rem;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature .icon {
    color: var(--success-color);
    font-size: 1.3rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 500;
}

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

/* Hero section specific secondary button */
.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

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

/* Button System */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

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

.btn:active {
    transform: translateY(0);
}

/* Section Layouts */
.section {
    padding: var(--spacing-xxl) 0;
}

/* Enhanced section spacing for product pages */
.technical-specs, .color-options, .installation-process, .pricing-section, .faq-section, .cta-section {
    border-top: 1px solid var(--light-gray);
    padding-top: calc(var(--spacing-xxl) + var(--spacing-lg));
}

/* Step number inline styling */
.step-content h3 .step-number {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
    font-weight: 700;
    margin-right: var(--spacing-sm);
    font-size: 1rem;
}

/* Pricing grid spacing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    align-items: stretch;
}

.pricing-card {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-header {
    flex-shrink: 0;
}

.pricing-price {
    flex-shrink: 0;
}

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-cta {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: var(--spacing-md);
}

/* Additional button styles for consistency */
.btn-large {
    font-size: 1.2rem;
    padding: var(--spacing-lg) var(--spacing-xl);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 500;
}

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

.sidebar-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.sidebar-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-heavy);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img,
.carousel-slide picture {
    width: 100%;
    display: block;
}

.carousel-slide img {
    height: 600px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Image loading optimization */
.carousel-slide img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

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

/* Responsive carousel heights */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        height: 300px;
    }
}

/* Optimized logo display */
.logo img {
    height: 45px;
    width: auto;
    margin-right: var(--spacing-xs);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* WebP support fallback */
.no-webp .carousel-slide picture source[type="image/webp"] {
    display: none;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: var(--spacing-lg);
    text-align: center;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.section-alt {
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    font-weight: 400;
    line-height: 1.5;
}

/* Grid Systems */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Card Components */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

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

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

.card-header {
    margin-bottom: var(--spacing-md);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--terracotta));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    word-wrap: break-word;
    hyphens: auto;
}

.card-text {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    background: linear-gradient(135deg, var(--background-light) 0%, #E8F5E8 100%);
    padding: var(--spacing-xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
}

.trust-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: var(--spacing-sm);
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.trust-text {
    font-weight: 600;
    color: var(--medium-gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Styles */
.form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-gray);
}

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

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-control:invalid {
    border-color: var(--warning-red);
}

.form-select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%236C757D" d="M8 11L3 6h10l-5 5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.form-checkbox input {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    color: var(--white);
    font-size: 1.1rem;
    padding: var(--spacing-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-light);
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.testimonial-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumb {
    background: var(--background-light);
    padding: var(--spacing-sm) 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 var(--spacing-sm);
    color: var(--medium-gray);
}

.breadcrumb-link {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2530 100%);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--success-color), var(--secondary-color));
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-success { color: var(--success-color); }
.text-muted { color: var(--medium-gray); }

.bg-light { background-color: var(--background-light); }
.bg-white { background-color: var(--white); }
.bg-primary { background-color: var(--primary-color); color: var(--white); }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

/* Quote Page Styles */
.quote-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

.quote-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-direct {
    margin: 1rem 0;
    line-height: 1.6;
}

.contact-direct a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-direct a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.quote-benefits {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-gray);
    position: sticky;
    top: 2rem;
}

.quote-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--radius-md);
}

.benefit-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.quote-form .form-control {
    background-color: #f8f9fa !important;
}

.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
    background-color: #f8f9fa !important;
}

@media (max-width: 768px) {
    .quote-form-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-benefits {
        position: static;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }
}

/* Legal Pages Styles */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

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

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: var(--primary-color);
}

/* Comparison Tables */
.comparison-table-container {
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 1.5rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.comparison-table th {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1.2rem 1rem;
    text-align: left;
    font-size: 1rem;
}

.comparison-table th:first-child {
    width: 35%;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    width: 32.5%;
    text-align: center;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
    vertical-align: top;
}

.comparison-table td:first-child {
    background-color: var(--background-light);
    font-weight: 500;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    text-align: center;
}

.comparison-table .advantage {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: rgba(230, 126, 34, 0.05);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
        padding: var(--spacing-sm) 0;
    }
    
    .header-contact {
        flex-direction: row;
        gap: var(--spacing-sm);
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        box-shadow: var(--shadow-heavy);
        max-height: 70vh;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-link {
        color: var(--white) !important;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: static;
        margin-left: auto;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0;
    }
    
    .dropdown-link {
        color: var(--white) !important;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .dropdown-link:hover {
        color: var(--secondary-color) !important;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero {
        min-height: 80vh;
        padding: calc(140px + var(--spacing-lg)) 0 var(--spacing-lg);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .grid {
        gap: var(--spacing-md);
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .phone-number {
        font-size: 1rem;
        padding: var(--spacing-xs);
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .hero-features {
        gap: var(--spacing-sm);
    }
    
    .hero-feature {
        font-size: 1rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-icon {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .cta-button,
    .btn,
    .footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: var(--dark-gray);
        padding: var(--spacing-lg) 0;
    }
    
    .section {
        padding: var(--spacing-md) 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #FF6600;
        --background-light: #FFFFFF;
        --medium-gray: #444444;
    }
}

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

/* ===========================
   QUOTE FORM STYLES
   =========================== */

/* Hero Conversion */
.hero-conversion {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.benefit-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Quote Form Section */
.quote-form-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.form-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Multi-step Form */
.quote-form {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

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

.form-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--background-light);
}

.form-step-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.step-indicator {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pergola Type Selection */
.pergola-type-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.type-option {
    position: relative;
}

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

.type-card {
    display: block;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.type-option input[type="radio"]:checked + .type-card {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
}

.type-option input[type="radio"]:checked + .type-card::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.type-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.type-card h4 {
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
    font-size: 1.25rem;
}

.type-card p {
    color: var(--medium-gray);
    margin: var(--spacing-sm) 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.type-price {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

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

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-smooth);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
    background: rgba(220, 53, 69, 0.05);
}

.field-error {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.field-error::before {
    content: "⚠";
    font-weight: bold;
}

/* Checkbox Options */
.checkbox-group {
    display: grid;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: all var(--transition-smooth);
}

.checkbox-option:hover {
    background: var(--background-light);
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all var(--transition-smooth);
}

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

.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Consent Checkbox */
.form-group.consent {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.consent .checkbox-option {
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.form-navigation .btn {
    min-width: 150px;
    position: relative;
}

.btn-loading {
    display: none;
}

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

/* Progress Bar */
.form-progress {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--success-color) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 25%;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
    animation: slideDown 0.4s ease-out;
}

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

.success-content {
    padding: var(--spacing-xl);
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.success-content h3 {
    margin: 0 0 var(--spacing-md) 0;
    font-size: 1.5rem;
}

.success-content p {
    margin: 0 0 var(--spacing-lg) 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

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

.success-actions .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.success-actions .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.success-actions .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.success-actions .btn-primary:hover {
    background: white;
}

/* Trust Section */
.trust-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.trust-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.trust-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

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

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.trust-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }
    
    .pergola-type-selection {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .quote-form {
        padding: var(--spacing-lg);
    }
    
    .form-step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .form-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .form-navigation .btn {
        width: 100%;
        min-width: unset;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* Secteur d'Intervention Styles */
.secteur-intervention {
    padding: 60px 20px;
    background: #fff;
}

.secteur-intervention .container {
    max-width: 1200px;
    margin: 0 auto;
}

.secteur-intervention .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.secteur-intervention .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.secteur-intervention .section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-summary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 50px;
}

.stats-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.zones-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.map-image:hover {
    transform: scale(1.02);
}

.zone-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: left;
    transition: transform 0.3s ease;
    border-left: 4px solid #3498db;
}

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

.zone-header {
    margin-bottom: 20px;
}

.zone-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.zone-stats {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 15px;
}

.zone-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.zone-communes {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.zone-communes strong {
    color: #2c3e50;
    font-weight: 600;
}

.zone-communes a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zone-communes a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cta-zone {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
}

.cta-zone h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-zone p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #2980b9;
    color: white;
}

.btn-outline {
    border: 2px solid #3498db;
    color: #3498db;
    padding: 13px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .secteur-intervention .section-title h2 {
        font-size: 2rem;
    }

    .zones-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .left-column, .right-column {
        gap: 20px;
    }

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

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .zone-card {
        padding: 25px 20px;
    }
}