/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #14230c;
    --primary-light: #1f3512;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d466;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-color);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.logo h1 span {
    color: var(--primary-color);
    font-weight: 800;
}

.baseline {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
    text-transform: none;
    opacity: 0.75;
}

/* Logo text styling (replaces inline styles) */
.logo-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo-accent {
    color: var(--accent-gold);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 650px;
    background: linear-gradient(135deg, rgba(20, 35, 12, 0.98) 0%, rgba(15, 25, 10, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23142310" width="1200" height="600"/><g fill-opacity="0.08"><path fill="%23d4af37" d="M1200 300L900 450l-300-150-300 150L0 300V0h1200z"/></g></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button.btn-primary {
    background: var(--accent-gold);
    color: var(--text-color);
    border-color: var(--accent-gold);
}

button.btn-primary:hover,
button.btn-primary:focus {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    transform: translateY(-2px);
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Hero phone button (white background) */
.btn-hero-phone {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-hero-phone:hover,
.btn-hero-phone:focus {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

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

/* Bloc Engagements */
.engagements-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.engagements-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.engagements-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.engagement-item p {
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .engagements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .engagements-section {
        padding: 2rem 0;
    }
}

/* Services */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 0.8rem;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-card p strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.2rem;
}

/* Pricing Section */
.pricing {
    background: var(--bg-color);
    padding: 80px 0;
}

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

.pricing-category {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.pricing-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-gold);
    text-align: center;
    font-weight: 700;
}

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

.pricing-table tr {
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-table td {
    padding: 1rem 0.5rem;
    color: var(--text-color);
}

.pricing-table td:first-child {
    font-weight: 500;
}

.pricing-table td.price {
    text-align: right;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.1rem;
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

/* Pricing Grid pour pages services */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--accent-gold);
}

.pricing-card.premium {
    border: 3px solid var(--primary-color);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.pricing-card.premium .badge {
    background: var(--primary-color);
}

.pricing-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    margin-top: 12px;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    margin: 1rem 0;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
}

.pricing-content {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.pricing-footer .btn {
    width: 100%;
    text-align: center;
}

.additional-services {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.additional-services h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.extra-name {
    font-weight: 500;
    color: var(--text-color);
}

.extra-price {
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

.service-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Location/Itinéraire Section */
.location-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.info-card a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.cta-map {
    margin-top: 1rem;
}

.cta-map .btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Location About Section */
.location-about-section {
    background: var(--bg-color);
    padding: 80px 0;
}

.location-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.about-preview {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-preview h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-preview p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-badge:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.map-square {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay-square {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.map-overlay-square:hover {
    background: var(--primary-light);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

/* Google Maps Section */
.maps-section {
    background: var(--bg-color);
    padding: 60px 0;
}

.map-container {
    position: relative;
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.map-overlay:hover {
    background: var(--primary-light);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.map-overlay-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-icon {
    font-size: 2rem;
}

.map-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.google-rating {
    text-align: center;
    margin: 3rem 0;
}

.rating-score {
    display: inline-block;
    background: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.rating-score .score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.rating-score .stars {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-stars {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* About */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: none;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-image img {
        max-width: 100%;
    }
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
    gap: 1rem;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 1rem;
}

/* Contact */
.contact {
    background: var(--bg-light);
}

.contact-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 1.5rem 0 2rem;
    font-weight: 500;
}

.phone-highlight {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-gold);
    transition: var(--transition);
}

.phone-highlight:hover {
    color: var(--accent-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-icon svg {
    width: 26px;
    height: 26px;
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--accent-gold);
}

/* Horaires structurés */
.horaires-grid {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.horaires-grid .jour {
    font-weight: 500;
    color: var(--text-color);
    margin: 0.5rem 0 0;
}

.horaires-grid .jour:first-child {
    margin-top: 0;
}

.horaires-grid .horaire {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-gold-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: #888;
    font-size: 0.95rem;
}

/* Services Details Page */
.hero-small {
    min-height: 400px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-link.active {
    color: var(--accent-gold);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.services-detailed {
    padding: 80px 0;
    background: var(--bg-light);
}

.cleaning-section {
    background: var(--bg-color);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Nouvelle grille 2 colonnes pour services-mecanique.html */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* Variante 3 colonnes pour "Entretien courant" */
.service-cards-grid-3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .service-cards-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards-grid,
    .service-cards-grid-3col {
        grid-template-columns: 1fr;
    }
}

.service-detail-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-detail-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cleaning-section .service-detail-card {
    background: var(--bg-light);
}

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

.service-detail-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-list {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.8rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(15, 25, 10, 0.95) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

/* Boutons dans CTA section (fond vert) - tous en blanc pour visibilité */
.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus {
    background: transparent;
    color: white;
    border-color: white;
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover,
.cta-section .btn-secondary:focus {
    background: white;
    color: var(--primary-color);
    border-color: white;
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-text .section-title {
        text-align: center;
    }

    .contact-form {
        grid-column: 1;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        height: calc(100vh - 70px);
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        height: 350px;
    }

    .location-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-preview {
        padding: 2rem;
    }

    .about-preview h3 {
        font-size: 1.5rem;
    }

    .map-square {
        min-height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-table td {
        padding: 0.8rem 0.3rem;
        font-size: 0.9rem;
    }

    .pricing-table td.price {
        font-size: 1rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Form Confirmation Message */
.form-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    text-align: center;
}

.form-confirmation.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.confirmation-content svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.confirmation-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.confirmation-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Category titles for services pages */
.services-category-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 3.5rem 0 0 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-gold);
    max-width: 100%;
}

.services-category-title:first-of-type {
    margin-top: 2rem;
}

.section-footer-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 3rem;
    font-style: italic;
}

/* Pricing Cards - services-nettoyage.html */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    border-color: var(--accent-gold);
}

.pricing-card.premium {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.pricing-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.premium .badge {
    background: var(--primary-color);
}

.pricing-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--bg-light);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-header .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-header .price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.pricing-header .price .ttc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-content {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.8rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Section divider */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 4rem 0;
}

/* Extra service block (Rénovation optiques) */
.extra-service-block {
    margin: 3rem 0;
}

.extra-service-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-gold);
    max-width: 800px;
    margin: 0 auto;
}

.extra-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.extra-service-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.extra-service-header .price .amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.extra-service-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.extra-service-footer {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .extra-service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .extra-service-card {
        padding: 2rem;
    }
}

/* Tarifs page - tarifs.html */
.pricing {
    background: var(--bg-color);
    padding: 4rem 0;
}

.pricing-category {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-gold);
}

.category-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Forfaits Entretien en cards */
.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .forfaits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.forfait-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.forfait-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.forfait-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.forfait-price {
    margin: 1rem 0;
}

.forfait-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.forfait-price .ttc {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 0.3rem;
}

.forfait-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Pricing tables */
.pricing-tables {
    display: grid;
    gap: 3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table tr {
    border-bottom: 1px solid var(--bg-light);
}

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

.pricing-table td {
    padding: 1rem 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-table td:first-child {
    text-align: left;
}

.pricing-table td.price {
    text-align: right;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
    font-size: 1.1rem;
}

.ttc-inline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 3rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-table td {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .pricing-table td.price {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

/* Price List Structure - tarifs.html */
.price-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bg-light);
}

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

.price-item .label {
    flex: 1;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.price-item .price {
    font-weight: 700;
    white-space: nowrap;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* 2-column layout for longer lists on desktop */
@media (min-width: 768px) {
    .price-list.two-columns {
        columns: 2;
        column-gap: 0;
    }

    .price-list.two-columns .price-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

@media (max-width: 767px) {
    .price-item {
        padding: 0.9rem 1rem;
        gap: 0.75rem;
    }

    .price-item .label {
        font-size: 0.95rem;
    }

    .price-item .price {
        font-size: 1rem;
    }
}
