.hero {
    position: relative;
    min-height: 100vh;
    background-color: #0a3d40;
    background-image: url('/images/home-hero.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 45, 46, 0.62);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 80px 28px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 18px;
}

.hero-text h1 span {
    color: #f5a623;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-badges-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 400;
}

.hero-badge-item svg {
    flex-shrink: 0;
    color: #f5a623;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-top: 12px;
    font-weight: 400;
}

.hero-form-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}

.hero-form-box .form-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d6b6e;
    margin-bottom: 4px;
    line-height: 1.6;
}

.hero-form-box .form-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background-color: #fafafa;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d6b6e;
    outline: none;
    background-color: #fff;
}

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

.form-submit-btn {
    width: 100%;
    background-color: #f5a623;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    margin-top: 6px;
}

.form-submit-btn:hover {
    background-color: #e09518;
    box-shadow: 0 4px 14px rgba(245,166,35,0.35);
}

.form-success {
    background-color: #e6f5f5;
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 16px;
    color: #0d6b6e;
    font-weight: 700;
    font-size: 15px;
}

.page-section {
    padding: 72px 0;
}

.page-section-alt {
    padding: 72px 0;
    background-color: #f7fafa;
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d6b6e;
    margin-bottom: 10px;
    line-height: 1.6;
}

.section-heading p {
    font-size: 17px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(13,107,110,0.15);
    transform: translateY(-3px);
}

.service-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card__body {
    padding: 20px 20px 22px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-card__title a {
    color: #0d6b6e;
    text-decoration: none;
    transition: color 0.2s;
}

.service-card__title a:hover {
    color: #0a4f52;
}

.service-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.stats-section {
    background-color: #0d6b6e;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 20px 16px;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #f5a623;
    line-height: 1.6;
    display: block;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.zone-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px 12px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.zone-item:hover {
    border-color: #0d6b6e;
    box-shadow: 0 2px 8px rgba(13,107,110,0.12);
}

.zone-item svg {
    color: #0d6b6e;
    margin-bottom: 8px;
}

.zone-item p {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.zone-item small {
    font-size: 12px;
    color: #888;
}

.zone-info-text {
    text-align: center;
    margin-top: 28px;
    font-size: 15px;
    color: #555;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.tarif-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.tarif-card:hover {
    box-shadow: 0 4px 16px rgba(13,107,110,0.12);
}

.tarif-card.featured {
    border-color: #0d6b6e;
    background-color: #f0f9f9;
}

.tarif-card__icon {
    width: 52px;
    height: 52px;
    background-color: #e6f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #0d6b6e;
}

.tarif-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.tarif-card__price {
    font-size: 28px;
    font-weight: 700;
    color: #0d6b6e;
    margin-bottom: 8px;
    line-height: 1.6;
}

.tarif-card__price span {
    font-size: 14px;
    font-weight: 400;
    color: #777;
}

.tarif-card__desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tarif-note {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #888;
}

.comparison-section {
    padding: 72px 0;
}

.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.comparison-table thead th {
    background-color: #0d6b6e;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 20px;
    text-align: center;
    border-bottom: none;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody tr {
    transition: background-color 0.2s;
}

.comparison-table tbody tr:hover {
    background-color: #f7fafa;
}

.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    color: #333;
    text-align: center;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: #333;
}

.check-yes {
    color: #0d6b6e;
    font-size: 18px;
}

.check-no {
    color: #aaa;
    font-size: 18px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    counter-reset: process-step;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.process-step__num {
    width: 52px;
    height: 52px;
    background-color: #0d6b6e;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-step__title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.process-step__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.map-section {
    padding: 72px 0;
    background-color: #f7fafa;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.hours-table-box {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hours-table-box table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table-box td {
    padding: 13px 20px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.hours-table-box td:last-child {
    text-align: right;
    font-weight: 700;
    color: #0d6b6e;
}

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

.hours-info-box {
    background-color: #0d6b6e;
    border-radius: 8px;
    padding: 28px 24px;
    color: #fff;
}

.hours-info-box p {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.hours-info-box strong {
    color: #fff;
}

.hours-info-box .contact-email {
    display: inline-block;
    color: #f5a623;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    word-break: break-all;
    transition: color 0.2s;
}

.hours-info-box .contact-email:hover {
    color: #e09518;
}

.gallery-section {
    padding: 72px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background-color: #e0e0e0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,107,110,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay p {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 0 12px;
    margin: 0;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background-color: #fff;
    border-radius: 8px;
    max-width: 860px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #555;
    background: none;
    border: none;
    padding: 4px 8px;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #0d6b6e;
}

.modal-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: contain;
    background-color: #111;
}

.modal-caption {
    padding: 16px 20px;
    font-size: 15px;
    color: #555;
    font-weight: 400;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13,107,110,0.85);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.modal-nav:hover {
    background-color: #0d6b6e;
}

.modal-nav.prev {
    left: 12px;
}

.modal-nav.next {
    right: 12px;
}

.cta-band {
    background-color: #0d6b6e;
    padding: 60px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cta-band p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-band .btn-cta {
    font-size: 17px;
    padding: 15px 36px;
}

@keyframes countUp {
    from { opacity: 1; }
    to { opacity: 1; }
}

.stat-number[data-target] {
    display: inline-block;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 100px 20px 52px;
    }
    .hero-text h1 {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-form-box {
        padding: 24px 20px;
    }
    .section-heading h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        padding: 90px 16px 44px;
    }
    .hero-text h1 {
        font-size: 26px;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-cta-row .btn-cta {
        width: 100%;
        text-align: center;
    }
    .page-section,
    .page-section-alt,
    .gallery-section,
    .comparison-section,
    .map-section {
        padding: 48px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 34px;
    }
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .map-wrapper {
        padding-bottom: 70%;
    }
    .hours-grid {
        grid-template-columns: 1fr;
    }
    .modal-nav {
        display: none;
    }
    .cta-band h2 {
        font-size: 23px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 22px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}