/* ==========================================================================
   ALLOPROPRETE - Page Specific Styles
   ========================================================================== */

/* ===== HERO SECTIONS ===== */

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

.hero--home {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--color-off-white) 0%, var(--color-gray-100) 50%, var(--color-off-white) 100%);
}

.hero--home::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    border-radius: 0 0 0 40%;
    opacity: 0.05;
    transform: rotate(-12deg);
}

/* Hero Grid Layout */
.hero--home .container {
    max-width: 100%;
    padding-right: 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    padding-right: var(--space-8);
    padding-left: max(var(--gutter), calc((100vw - var(--container-xl)) / 2 + var(--gutter)));
}

/* Hero Visual - Image Container */
.hero__visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    clip-path: ellipse(95% 100% at 100% 50%);
    overflow: hidden;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Hero Grid */
@media (max-width: 1280px) {
    .hero__grid {
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 1024px) {
    .hero--home .container {
        padding-right: var(--space-4);
        padding-left: var(--space-4);
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .hero__content {
        padding: 0;
        text-align: center;
    }

    .hero__visual {
        min-height: 350px;
        width: 100%;
        margin-left: auto;
        margin-right: 0;
    }

    .hero__image-wrapper {
        clip-path: ellipse(100% 85% at 50% 100%);
        position: relative;
        height: 350px;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero__visual {
        min-height: 280px;
    }

    .hero__image-wrapper {
        height: 280px;
    }
}

.hero--page {
    background: var(--color-primary);
    padding: var(--space-16) 0;
}

.hero--page::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color-off-white);
    clip-path: ellipse(70% 100% at 50% 100%);
}

.hero--page .hero__title,
.hero--page .hero__subtitle {
    color: var(--color-white);
}

.hero--page .breadcrumb__link {
    color: var(--color-gray-300);
}

.hero--page .breadcrumb__current {
    color: var(--color-white);
}

.hero--page .breadcrumb__item:not(:last-child)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
}

/* Service page hero */
.hero--service {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-12) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.hero--service::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--color-secondary);
    opacity: 0.08;
    border-radius: 50%;
}

.hero--service::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-off-white);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.hero--service__inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-10);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero--service__content .breadcrumb__link {
    color: var(--color-gray-300);
}

.hero--service__content .breadcrumb__current {
    color: var(--color-white);
}

.hero--service__content .breadcrumb__item:not(:last-child)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
}

.hero--service .hero__title {
    font-size: var(--text-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.hero--service .hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-200);
    margin-bottom: var(--space-6);
    max-width: 500px;
}

.hero--service .hero__ctas {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero__badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-200);
}

.hero__badge-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary-light);
}

.hero--service__visual {
    display: flex;
    justify-content: flex-end;
}

.hero--service__card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 320px;
}

.hero--service__card-header {
    text-align: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-gray-100);
    margin-bottom: var(--space-4);
}

.hero--service__card-price {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--space-1);
}

.hero--service__card-amount {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-secondary);
}

.hero--service__card-amount small {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-gray-600);
}

.hero--service__card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5);
}

.hero--service__card-list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--color-gray-700);
}

.hero--service__card-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hero--service__inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .hero--service__visual {
        justify-content: center;
    }

    .hero--service .hero__title {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 640px) {
    .hero--service {
        padding: var(--space-8) 0 var(--space-12);
    }

    .hero--service .hero__title {
        font-size: var(--text-3xl);
    }

    .hero--service .hero__ctas {
        flex-direction: column;
    }

    .hero--service .hero__ctas .btn {
        width: 100%;
    }

    .hero__badges {
        flex-direction: column;
        gap: var(--space-2);
    }

    .hero--service__card {
        max-width: 100%;
    }
}

/* Hero background image (shared by local + service heroes) */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.18;
}

/* Local/geo pages hero (sans card) */
.hero--local {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-12) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.hero--local::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--color-secondary);
    opacity: 0.08;
    border-radius: 50%;
}

.hero--local::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-off-white);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.hero--local__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero--local .breadcrumb__link {
    color: var(--color-gray-300);
}

.hero--local .breadcrumb__current {
    color: var(--color-white);
}

.hero--local .breadcrumb__item:not(:last-child)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
}

.hero--local .hero__title {
    font-size: var(--text-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.hero--local .hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-200);
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.hero--local .hero__ctas {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.hero--local .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

@media (max-width: 640px) {
    .hero--local {
        padding: var(--space-8) 0 var(--space-12);
    }

    .hero--local .hero__title {
        font-size: var(--text-3xl);
    }

    .hero--local .hero__ctas {
        flex-direction: column;
    }

    .hero--local .hero__ctas .btn {
        width: 100%;
    }

    .hero--local .hero__badges {
        flex-direction: column;
        gap: var(--space-2);
    }
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    margin-bottom: var(--space-6);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    color: var(--color-primary);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    max-width: 700px;
}

.hero__title span {
    color: var(--color-secondary);
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 550px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero__trust {
    margin-top: var(--space-12);
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.hero__trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-12) 0 var(--space-16);
    }

    .hero--home {
        min-height: auto;
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__subtitle {
        font-size: var(--text-lg);
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .hero__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: var(--text-3xl);
    }

    .hero__subtitle {
        font-size: var(--text-base);
    }
}

/* ===== HOME PAGE ===== */

/* Services section */
.services-section .section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.services-section .section__title {
    margin-bottom: var(--space-4);
}

.services-section .section__subtitle {
    color: var(--color-gray-600);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline__line {
    position: absolute;
    top: 50px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary-light), var(--color-secondary));
    border-radius: 2px;
}

.process-timeline__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
}

.process-timeline__step {
    text-align: center;
    position: relative;
}

.process-timeline__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-5);
    background: var(--color-white);
    border: 3px solid var(--color-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
    transition: all 0.3s ease;
}

.process-timeline__step:hover .process-timeline__icon {
    background: var(--color-secondary);
    transform: scale(1.05);
}

.process-timeline__icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.process-timeline__step:hover .process-timeline__icon svg {
    color: var(--color-white);
}

.process-timeline__number {
    position: absolute;
    top: -8px;
    right: calc(50% - 64px);
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    z-index: 3;
}

.process-timeline__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.process-timeline__content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
    max-width: 200px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.stat-card {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-100);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.stat-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(5, 150, 105, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-secondary);
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.stat-card__label {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

@media (max-width: 1024px) {
    .process-timeline__line {
        display: none;
    }

    .process-timeline__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }

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

@media (max-width: 640px) {
    .process-timeline__steps {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .process-timeline__step {
        display: flex;
        text-align: left;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .process-timeline__icon {
        width: 64px;
        height: 64px;
        margin: 0;
        flex-shrink: 0;
    }

    .process-timeline__icon svg {
        width: 28px;
        height: 28px;
    }

    .process-timeline__number {
        top: -6px;
        right: auto;
        left: 44px;
        width: 26px;
        height: 26px;
        font-size: var(--text-xs);
    }

    .process-timeline__content {
        padding-top: var(--space-2);
    }

    .process-timeline__content p {
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-card {
        padding: var(--space-5) var(--space-3);
    }

    .stat-card__number {
        font-size: var(--text-2xl);
    }
}

/* ===== DEVIS PAGE ===== */

/* Hero Devis */
.hero-devis {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-16) 0 var(--space-20);
    position: relative;
    overflow: hidden;
}

.hero-devis::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: var(--color-secondary);
    opacity: 0.06;
    border-radius: 50%;
}

.hero-devis::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-white);
    opacity: 0.03;
    border-radius: 50%;
}

.hero-devis__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-12);
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-devis__content {
    padding-top: var(--space-4);
}

.hero-devis__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-white);
    margin-bottom: var(--space-5);
}

.hero-devis__badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary-light);
}

.hero-devis__title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    color: var(--color-white);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.hero-devis__title span {
    color: var(--color-secondary-light);
}

.hero-devis__subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-200);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 480px;
}

/* Features row */
.hero-devis__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-devis__feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero-devis__feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-devis__feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-secondary-light);
}

.hero-devis__feature-text strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
}

.hero-devis__feature-text span {
    font-size: var(--text-xs);
    color: var(--color-gray-300);
}

/* Trust stats */
.hero-devis__trust {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-devis__trust-stats {
    display: flex;
    gap: var(--space-8);
}

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

.hero-devis__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-secondary-light);
}

.hero-devis__stat-label {
    font-size: var(--text-xs);
    color: var(--color-gray-300);
}

/* Form wrapper */
.hero-devis__form-wrapper {
    position: relative;
}

/* Devis Form Card */
.devis-form-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.devis-form-card__header {
    background: var(--color-gray-50);
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-gray-100);
}

.devis-form-card__header h2 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.devis-form-card__header p {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.devis-form-card__body {
    padding: var(--space-6);
}

.devis-form-card__footer {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-gray-100);
}

.devis-form-card__reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--color-gray-500);
}

.devis-form-card__reassurance svg {
    width: 14px;
    height: 14px;
    color: var(--color-secondary);
}

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-field {
    margin-bottom: var(--space-4);
}

.form-field label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: var(--space-2);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--color-gray-900);
    background: var(--color-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--color-gray-400);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-3) center;
    padding-right: var(--space-10);
}

/* Services Quick Grid */
.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.service-quick-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-quick-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-quick-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-gray-100) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-quick-card:hover .service-quick-card__icon {
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
}

.service-quick-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.service-quick-card:hover .service-quick-card__icon svg {
    color: var(--color-white);
}

.service-quick-card h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.service-quick-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--space-3);
}

.service-quick-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-gray-50);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.service-quick-card:hover .service-quick-card__arrow {
    background: var(--color-secondary);
}

.service-quick-card__arrow svg {
    width: 16px;
    height: 16px;
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.service-quick-card:hover .service-quick-card__arrow svg {
    color: var(--color-white);
}

/* Devis Process */
.devis-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.devis-process__step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 var(--space-4);
}

.devis-process__number {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.devis-process__step h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.devis-process__step p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
}

.devis-process__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    margin-top: 32px;
    flex-shrink: 0;
}

/* Responsive Hero Devis */
@media (max-width: 1024px) {
    .hero-devis__grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .hero-devis__content {
        text-align: center;
        padding-top: 0;
    }

    .hero-devis__badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-devis__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-devis__features {
        align-items: center;
    }

    .hero-devis__trust-stats {
        justify-content: center;
    }

    .hero-devis__form-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-devis {
        padding: var(--space-10) 0 var(--space-14);
    }

    .hero-devis__title {
        font-size: var(--text-3xl);
    }

    .hero-devis__trust-stats {
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .hero-devis__stat {
        text-align: center;
    }

    .services-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .devis-process {
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }

    .devis-process__connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .services-quick-grid {
        grid-template-columns: 1fr;
    }

    .service-quick-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: var(--space-4);
        padding: var(--space-4);
    }

    .service-quick-card__icon {
        margin: 0;
        width: 48px;
        height: 48px;
    }

    .service-quick-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .service-quick-card p {
        display: none;
    }

    .service-quick-card__arrow {
        margin-left: auto;
    }
}

/* ===== SERVICE PAGES ===== */

.service-intro {
    font-size: var(--text-lg);
    color: var(--color-gray-700);
    line-height: var(--leading-relaxed);
}

.service-benefits {
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.service-benefits__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-5);
}

.service-method {
    position: relative;
}

.service-method__item {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.service-method__item:last-child {
    border-bottom: none;
}

.service-method__number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
}

.service-method__content h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.service-method__content p {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
}

/* Inline form CTA */
.inline-form-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    margin: var(--space-12) 0;
}

.inline-form-cta h3 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.inline-form-cta p {
    color: var(--color-gray-200);
    margin-bottom: var(--space-6);
}

/* Pricing hint */
.pricing-hint {
    background: var(--color-white);
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.pricing-hint__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-hint__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.pricing-hint__content strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.pricing-hint__content span {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

/* ===== CONTACT PAGE ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-12);
    align-items: start;
}

.contact-info {
    --flow-space: var(--space-8);
}

.contact-info__item {
    display: flex;
    gap: var(--space-4);
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.contact-info__content strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.contact-info__content span,
.contact-info__content a {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        position: static;
    }
}

/* ===== ABOUT PAGE ===== */

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.about-value {
    text-align: center;
    padding: var(--space-8);
}

.about-value__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value__icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
}

.about-value__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.about-value__text {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
}

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

/* ===== LEGAL PAGES ===== */

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

.legal-content h2 {
    font-size: var(--text-2xl);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
}

.legal-content h3 {
    font-size: var(--text-xl);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
}

.legal-content p {
    color: var(--color-gray-700);
    margin-bottom: var(--space-4);
}

.legal-content ul {
    list-style: disc;
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}

.legal-content li {
    color: var(--color-gray-700);
    margin-bottom: var(--space-2);
}

/* ===== VILLE HUB PAGES ===== */

.ville-hero {
    position: relative;
}

.ville-hero__map {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.services-in-ville {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

@media (max-width: 768px) {
    .services-in-ville {
        grid-template-columns: 1fr;
    }
}

/* ===== SUCCESS MESSAGE (form submitted) ===== */

.form-success {
    text-align: center;
    padding: var(--space-12);
}

.form-success__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--color-success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success__icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.form-success__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.form-success__text {
    color: var(--color-gray-600);
    max-width: 400px;
    margin: 0 auto;
}
