:root {
    /* Couleurs principales - Palette moderne et neutre */
    --primary-bronze: #9B7653;
    --primary-bronze-light: #B8956A;
    --primary-bronze-dark: #7D5E3F;
    --accent-beige: #D4C4B0;
    --accent-cream: #F5F0E8;
    --accent-warm: #C8A882;
    
    /* Couleurs secondaires */
    --light-bronze: #E8DDD0;
    --light-bronze-bg: #FAF7F2;
    --light-cream-bg: #FFFCF7;
    
    /* Couleurs neutres modernes */
    --gray-50: #FAFAF9;
    --gray-100: #F5F5F4;
    --gray-200: #E7E5E4;
    --gray-300: #D6D3D1;
    --gray-400: #A8A29E;
    --gray-500: #78716C;
    --gray-600: #57534E;
    --gray-700: #44403C;
    --gray-800: #292524;
    --gray-900: #1C1917;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border radius moderne */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ombres douces */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    letter-spacing: -0.011em;
}

/* Typographie moderne pour les titres */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.form-page-title,
.form-main-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-family: 'Georgia', serif;
    letter-spacing: 0.02em;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 400;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-bronze);
    transition: width var(--transition-normal);
}

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

.nav-links a:hover::after {
    width: 100%;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(rgba(250, 247, 242, 0.92), rgba(250, 247, 242, 0.88)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23E8DDD0" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--gray-900);
    margin: 0;
    max-width: 100%;
    min-height: 90vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding-bottom: 8rem;
    z-index: 100;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
}

.hero-content {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
    padding-left: 5rem;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out;
    color: var(--gray-900);
    line-height: 1.15;
    font-family: 'Georgia', serif;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: var(--gray-600);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 400;
    line-height: 1.6;
}

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

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    z-index: 10;
    pointer-events: none;
    max-width: 550px;
    margin-top: 6rem;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all var(--transition-normal);
    pointer-events: auto;
    /* Faire déborder l'image vers le bas */
    margin-bottom: -10rem;
}

.hero-image-container:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: fadeInDown 0.8s ease-out 0.5s both;
}

.badge-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.badge-rating {
    color: var(--primary-bronze);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.hero-search {
    background: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    border: 1px solid var(--gray-200);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    z-index: 100;
}

.hero-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-search h2 {
    color: var(--gray-900);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.search-form {
    display: flex;
    gap: 0;
}

.search-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    z-index: 200;
}

.search-input {
    flex: 1;
    padding: 1.2rem 5rem 1.2rem 1.5rem;
    font-size: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: all var(--transition-normal);
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 3px rgba(155, 118, 83, 0.08);
    transform: none;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.7rem 1.5rem;
    background: var(--primary-bronze);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-weight: 500;
}

.search-btn:hover {
    background: var(--primary-bronze-dark);
    transform: translateY(-50%);
    box-shadow: none;
}

.search-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.search-btn:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.5;
}

.search-btn:disabled:hover {
    background: var(--gray-400);
    transform: translateY(-50%);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-300);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    max-height: 400px;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    animation: slideDown var(--transition-fast);
    pointer-events: auto;
}

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

.suggestion-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    color: var(--primary-bronze);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--light-bronze-bg);
    color: var(--primary-bronze-dark);
    border-left: 3px solid var(--primary-bronze);
    padding-left: calc(1.5rem - 3px);
    transform: translateX(2px);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--gray-800);
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-bronze);
    border-radius: 1px;
}

.reviews-section {
    background: transparent;
    padding-top: 12rem;
    position: relative;
    z-index: 1;
}

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

.review-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

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

.review-rating {
    color: var(--primary-bronze);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.review-author {
    color: var(--gray-400);
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 500;
}

.steps-section {
    background: transparent;
}

.steps-section .section-title {
    color: var(--gray-800);
}

.steps-section .section-title::after {
    background: var(--primary-bronze);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
}

.step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.step-image-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 300px;
    margin-bottom: 1.5rem;
}

.step-item:last-child .step-image {
    height: 300px;
}

.step-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(0 10px 20px rgba(42, 75, 141, 0.15));
}

.step-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(42, 75, 141, 0.25));
}

.step-content {
    flex: 1;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-item p {
    color: #4b5563;
    line-height: 1.7;
}

.about-section {
    background: transparent;
}

.about-section .section-title {
    color: var(--gray-800);
}

.about-section .section-title::after {
    background: var(--primary-bronze);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: transparent;
    padding: var(--spacing-xl);
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    position: relative;
    transition: all var(--transition-normal);
}

.about-text:hover {
    transform: none;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-signature {
    font-style: italic;
    color: var(--primary-bronze);
    font-weight: 500;
    margin-top: 2rem;
}

.cta-section {
    background: var(--light-bronze-bg);
    color: var(--gray-900);
    padding: 5rem 2rem;
    text-align: center;
    margin: 0;
    max-width: 100%;
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .section-title {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--gray-600);
}

.cta-search {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.cta-search .search-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    z-index: 2000;
}

.cta-search .suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-300);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    max-height: 350px;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: var(--shadow-xl);
}

.cta-search .search-input {
    border-color: var(--gray-300);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.cta-search .search-input:focus {
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 3px rgba(155, 118, 83, 0.08);
}


.stats-section {
    background: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

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

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--primary-bronze);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 118, 83, 0.05), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-bronze-dark);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
    display: block;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-page {
    background: #f3f4f6;
    padding: 8rem 2rem 6rem;
    margin-top: 0;
    min-height: 100vh;
}

.form-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

body:has(.form-page) {
    background: #f3f4f6;
}

body:has(.form-page) header {
    background: #f3f4f6;
}

body:has(.form-page) .logo {
    color: var(--gray-900);
}

body:has(.form-page) .nav-links a {
    color: var(--gray-700);
}

body:has(.form-page) .nav-links a:hover {
    color: var(--primary-bronze);
}

body:has(.form-page) footer {
    background: #1f2937;
}

.form-intro {
    display: none;
}

.form-section {
    background: transparent;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.form-main-title {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #A9C9FF;
    box-shadow: 0 4px 15px rgba(42, 75, 141, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.benefit-card h4 {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.progress-container {
    position: sticky;
    top: 0;
    background: #f3f4f6;
    padding: 1.5rem 0;
    z-index: 50;
    margin-bottom: 2rem;
}

.progress-title {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-align: left;
}

.project-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-bronze);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-step {
    display: none;
}

.form-step {
    display: none;
    transition: all 0.4s ease-in-out;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

.form-step.completed {
    display: block;
    max-height: 150px;
    overflow: hidden;
    opacity: 0.7;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.form-step.completed:hover {
    opacity: 0.9;
    border-bottom-color: var(--primary-bronze);
}

.form-step.completed .form-main-title {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.form-step.completed .form-group label {
    display: none;
}

.form-step.completed .form-group input {
    background: #f9fafb;
    border-color: #d1d5db;
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
}

.form-step.completed button,
.form-step.completed .postal-suggestions {
    display: none !important;
}

.form-step.completed .work-details-section {
    margin-top: 0.5rem;
}

.form-step.completed .postal-suggestions-title {
    display: none;
}

.form-step.completed .postal-suggestion-item {
    display: none;
}

.form-step.completed .postal-suggestion-item.selected {
    display: block;
    background: #f9fafb;
    border-color: #d1d5db;
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 0;
    transform: translateX(0);
}

.form-step.completed .file-upload-section {
    display: none;
}

.form-step.completed textarea {
    background: #f9fafb;
    border-color: #d1d5db;
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
    min-height: 60px;
    cursor: pointer;
}

.form-step.completed .form-group {
    margin-bottom: 0.5rem;
}

.form-step.completed .form-group:last-child {
    margin-bottom: 0;
}

.form-step.completed .work-cards-container {
    display: flex;
    gap: 0;
    margin-top: 0.5rem;
}

.form-step.completed .work-card {
    display: none;
}

.form-step.completed .work-card.selected {
    display: flex;
    flex-direction: row;
    padding: 0.6rem 0.9rem;
    background: #f9fafb;
    border-color: #d1d5db;
    gap: 0.75rem;
    border-radius: 8px;
    transform: none;
    box-shadow: none;
}

.form-step.completed .work-card.selected:hover {
    transform: none;
    box-shadow: none;
}

.form-step.completed .work-card-icon {
    width: 20px;
    height: 20px;
}

.form-step.completed .work-card.selected .work-card-icon {
    filter: none;
}

.form-step.completed .work-card-label {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 500;
}

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

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.postal-code-wrapper {
    position: relative;
}

.postal-code-wrapper input.highlighted {
    background: var(--light-bronze-bg);
    border-color: var(--primary-bronze);
    font-weight: 600;
}

.postal-suggestions {
    margin-top: 2rem;
    transition: all 0.3s ease-in-out;
}

.postal-suggestions-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.postal-suggestion-item {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
    color: #1f2937;
    font-weight: 500;
}

.postal-suggestion-item:hover {
    background: var(--light-bronze-bg);
    border-color: var(--primary-bronze);
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
}

.postal-suggestion-item.selected {
    background: var(--light-bronze);
    border-color: var(--primary-bronze);
    color: var(--gray-900);
    font-weight: 600;
    transform: translateX(0);
}

.postal-suggestion-item.highlighted {
    background: var(--light-bronze);
    border-color: var(--primary-bronze);
    color: var(--gray-900);
    font-weight: 600;
}

.postal-code {
    display: none;
}

.work-details-section {
    margin-top: 0;
}

.work-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.work-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-900);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.work-card > * {
    position: relative;
    z-index: 1;
}

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

.work-card.selected::before {
    opacity: 1;
}

.work-card.selected {
    border-color: var(--gray-900);
    color: white;
}

.work-card.selected .work-card-label {
    color: white;
    font-weight: 600;
}

.work-card.highlighted {
    background: var(--gray-900);
    border-color: var(--gray-900);
    color: white;
}

.work-card-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.work-card.selected .work-card-icon {
    filter: brightness(0) invert(1);
}

.work-card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

@media (max-width: 768px) {
    .work-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .work-card {
        padding: 1.5rem 1rem;
    }
}

.file-upload-section {
    margin-top: 2rem;
    padding: 2rem;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.file-upload-section:hover {
    border-color: var(--primary-bronze);
    background: var(--gray-100);
}

.file-upload-label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-700);
}

.file-upload-label svg {
    color: var(--primary-bronze);
}

.file-upload-label span {
    font-size: 1rem;
    font-weight: 500;
}

.file-item {
    padding: 0.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 0.5rem;
    text-align: left;
    color: #1f2937;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-bronze);
    box-shadow: 0 0 0 3px rgba(155, 118, 83, 0.08);
}

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

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

.radio-option {
    position: relative;
}

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

.radio-option label {
    display: block;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.radio-option input[type="radio"]:checked + label {
    background: var(--gray-900);
    color: white;
    border-color: var(--gray-900);
}

.radio-option label:hover {
    border-color: var(--primary-bronze);
}

.help-text {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    line-height: 1.5;
}

.required {
    color: var(--primary-bronze);
    font-weight: 500;
}

.form-description {
    text-align: center;
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-prev,
.btn-next {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-prev {
    background: #f3f4f6;
    color: #374151;
}

.btn-prev:hover {
    background: #e5e7eb;
}

.btn-next {
    background: white;
    color: var(--gray-900);
    border: 1.5px solid var(--gray-900);
    box-shadow: none;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.btn-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-900);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: -1;
}

.btn-next:hover::before {
    transform: scaleX(1);
}

.btn-next:hover {
    color: white;
    border-color: var(--gray-900);
    box-shadow: none;
}

.btn-step {
    width: auto;
    min-width: 140px;
    padding: 0.85rem 2rem;
    background: white;
    color: var(--gray-900);
    border: 1.5px solid var(--gray-900);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: none;
    margin-top: var(--spacing-lg);
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-900);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: -1;
}

.btn-step:hover::after {
    transform: scaleX(1);
}

.btn-step:hover {
    color: white;
    border-color: var(--gray-900);
    box-shadow: none;
}

.btn-step:active {
    transform: scale(0.98);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: white;
    color: var(--gray-900);
    border: 1.5px solid var(--gray-900);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-900);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: -1;
}

.btn-submit:hover::before {
    transform: scaleX(1);
}

.btn-submit:hover {
    color: white;
    border-color: var(--gray-900);
    box-shadow: none;
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.form-note a {
    color: var(--primary-bronze);
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
    color: var(--primary-bronze-dark);
}

footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: var(--gray-300);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    margin-top: var(--spacing-2xl);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-bronze), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    margin: 0 var(--spacing-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-bronze);
    transition: width var(--transition-normal);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-guides {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-guides p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-guides a {
    color: var(--gray-300);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-guides a:hover {
    color: var(--primary-bronze);
}

/* Pages d'information */
.info-page {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--light-cream-bg) 0%, var(--gray-50) 100%);
    position: relative;
}

.info-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-bronze) 0%, var(--primary-bronze-dark) 100%);
    opacity: 0.05;
    z-index: 0;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid var(--gray-200);
}

.info-container h1 {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-bronze) 0%, var(--primary-bronze-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.info-intro {
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--light-bronze) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-bronze);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.info-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-bronze);
    opacity: 0.05;
    border-radius: 50%;
}

.info-intro p {
    margin: 0.75rem 0;
    font-size: 1.15rem;
    color: var(--gray-800);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.info-intro p strong {
    color: var(--primary-bronze-dark);
    font-weight: 700;
}

.info-content {
    line-height: 1.9;
    color: var(--gray-700);
    font-size: 1.05rem;
}

.info-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-bronze);
    position: relative;
    padding-left: 1rem;
}

.info-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-bronze);
    border-radius: 2px;
}

.info-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-bronze-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-warm);
}

.info-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.info-content ul {
    margin: 1.5rem 0 2rem 1rem;
    list-style-type: none;
    background: var(--gray-50);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-bronze);
}

.info-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.info-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-bronze);
    font-weight: bold;
    font-size: 1.1rem;
}

.info-content strong {
    color: var(--gray-900);
    font-weight: 700;
}

.info-cta {
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-bronze) 0%, var(--primary-bronze-dark) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px -10px rgba(155, 118, 83, 0.4);
    position: relative;
    overflow: hidden;
}

.info-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
    50% { transform: translate(-30%, -30%) scale(1.2); opacity: 1; }
}

.info-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.info-cta .btn-cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--primary-bronze);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.info-cta .btn-cta-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.3);
    background: var(--accent-cream);
}

.info-cta .btn-cta-contact svg {
    transition: transform var(--transition-normal);
}

.info-cta .btn-cta-contact:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .info-page {
        padding: 5rem 1rem 3rem;
    }
    
    .info-container {
        padding: 2rem 1.5rem;
    }
    
    .info-container h1 {
        font-size: 2rem;
    }
    
    .info-content h2 {
        font-size: 1.5rem;
    }
    
    .info-content h3 {
        font-size: 1.2rem;
    }
    
    .footer-guides {
        font-size: 0.85rem;
    }
    
    .footer-guides a {
        display: inline-block;
        margin: 0.25rem 0.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 5rem 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .reviews-section {
        padding-top: 4rem;
        background: transparent;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .hero-image-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
        top: 15px;
        left: 15px;
    }
    
    .badge-name {
        font-size: 0.85rem;
    }
    
    .badge-rating {
        font-size: 0.8rem;
    }

    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.35rem;
    }

    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-search {
        padding: 1.25rem;
        margin-top: 1rem;
        position: relative;
        z-index: 100;
    }
    
    .search-wrapper {
        z-index: 10000;
    }
    
    .hero-search h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .step-image-container {
        min-height: 200px;
    }
    
    .steps-grid {
        gap: 2rem;
    }
    
    .step-item {
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn-prev {
        order: 2;
    }

    .btn-next {
        order: 1;
    }
    
    .form-page {
        padding: 6rem 1.5rem 5rem;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
}

/* Très petits écrans (smartphones en portrait) */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 4.5rem 0.75rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-search {
        padding: 1rem;
        position: relative;
        z-index: 100;
    }
    
    .search-wrapper {
        z-index: 10000;
    }
    
    .hero-search h2 {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .nav-links {
        gap: 0.75rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-rating {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    
    .form-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input {
        padding: 1rem 4rem 1rem 1rem;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 0.6rem 1rem;
    }
    
    .search-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .suggestions-list {
        position: absolute;
        border-radius: 0 0 12px 12px;
        z-index: 10000;
    }
    
    .cta-search {
        flex-direction: column;
    }
    
    .cta-search .search-input {
        border-bottom: none;
        border-radius: 12px 12px 0 0;
    }
    
    .cta-search .search-btn {
        border-top: none;
        border-radius: 0 0 12px 12px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .step-item:last-child .step-image {
        height: 250px;
    }
    
    .form-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-main-title {
        font-size: 1.5rem;
    }
    
    .btn-step {
        width: 40%;
        min-width: 100px;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .progress-container {
        top: 0;
        padding: 1rem 0;
    }
    
    .progress-title {
        font-size: 1rem;
    }
    
    .form-page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
}

/* Contact Page Styles */
.contact-page {
    background: var(--gray-50);
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-bronze);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--light-bronze-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bronze);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.contact-info-content a {
    color: var(--primary-bronze);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.contact-info-content a:hover {
    color: var(--primary-bronze-dark);
    text-decoration: underline;
}

.contact-info-hours {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.contact-stat-item {
    text-align: center;
}

.contact-stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-bronze);
    font-family: 'Georgia', serif;
    margin-bottom: 0.5rem;
}

.contact-stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

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

.form-consent {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-submit-contact {
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--gray-900);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.01em;
}

.btn-submit-contact:hover {
    background: var(--primary-bronze);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-top: 1rem;
    text-align: center;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.contact-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-bronze-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.contact-cta h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.btn-cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-bronze);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-normal);
    letter-spacing: 0.01em;
}

.btn-cta-contact:hover {
    background: var(--primary-bronze-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 6rem 1.5rem 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .form-row-contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta h2 {
        font-size: 1.5rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 5rem 1rem 2rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-stat-number {
        font-size: 2rem;
    }
}
