/* ===================================

   MONSIEUR FIX PHONE - STYLES CSS

   Mobile-First, Fast Loading, SEO Optimized

   =================================== */



/* CSS Reset & Base */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



:root {

    --primary-color: #141212;

    --golden-color: #7b9a6d;

    --primary-dark: #1e40af;

    --secondary-color: #10b981;

    --accent-color: #f59e0b;

    --text-dark: #1f2937;

    --text-light: #6b7280;

    --bg-light: #f9fafb;

    --white: #ffffff;

    --border-color: #e5e7eb;

    --whatsapp-green: #2FB463;

    --whatsapp-green-hover: #279653;

    --map-color: #6F8F88;

    --map-color-hover: #5E7B75;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    font-size: 16px;

    line-height: 1.6;

    color: var(--text-dark);

    background-color: var(--white);

}



/* Container */

.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



/* Typography */

h1, h2, h3, h4, h5, h6 {

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 1rem;

    color: var(--text-dark);

}



h1 {

    font-size: 2rem;

}



h2 {

    font-size: 1.75rem;

}



h3 {

    font-size: 1.5rem;

}



h4 {

    font-size: 1.25rem;

}



p {

    margin-bottom: 1rem;

}



a {

    color: var(--primary-color);

    text-decoration: none;

    transition: color 0.3s ease;

}



a:hover {

    color: var(--primary-dark);

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



/* Buttons */

.btn {

    display: inline-block;

    padding: 12px 24px;

    font-size: 1rem;

    font-weight: 600;

    text-align: center;

    border-radius: 8px;

    transition: all 0.3s ease;

    cursor: pointer;

    border: none;

    text-decoration: none;

}



.btn-primary {

    background-color: var(--golden-color);

    color: var(--white);

}



.btn-primary:hover {

    background-color: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);

}



.btn-secondary {

    background-color: var(--whatsapp-green);

    color: var(--white);

}



.btn-secondary:hover {

    background-color: var(--whatsapp-green-hover);

    transform: translateY(-2px);

}



.btn-map {

    background-color: var(--map-color);

    color: var(--white);

}



.btn-map:hover {

    background-color: var(--map-color-hover);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);

}



.btn-secondary-outline {

    background-color: transparent;

    color: var(--primary-color);

    border: 2px solid var(--primary-color);

}



.btn-secondary-outline:hover {

    background-color: var(--primary-color);

    color: var(--white);

}



.btn-large {

    padding: 16px 32px;

    font-size: 1.125rem;

}



.btn-full {

    width: 100%;

}



/* Sticky Contact Buttons */

.sticky-buttons {

    position: fixed;

    bottom: 20px;

    right: 20px;

    display: flex;

    flex-direction: column;

    gap: 12px;

    z-index: 1000;

}



.btn-call,

.btn-whatsapp {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    box-shadow: var(--shadow-lg);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.btn-call {

    background-color: var(--primary-color);

}



.btn-whatsapp {

    background-color: var(--whatsapp-green);

}



.btn-call:hover,

.btn-whatsapp:hover {

    transform: scale(1.1);

    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);

}



.btn-whatsapp:hover {

    background-color: var(--whatsapp-green-hover);

}



/* Header & Navigation */

header {

    background-color: var(--white);

    box-shadow: var(--shadow-sm);

    position: sticky;

    top: 0;

    z-index: 999;

}



nav {

    padding: 1rem 0;

}



nav .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo a {

    font-size: 1.5rem;

    font-weight: 800;

    color: var(--primary-color);

}



.nav-menu {

    display: none;

    list-style: none;

    gap: 2rem;

}



.nav-menu li a {

    color: var(--text-dark);

    font-weight: 500;

    transition: color 0.3s ease;

}



.nav-menu li a:hover,

.nav-menu li a.active {

    color: var(--primary-color);

}



/* Burger Menu */

.burger-menu {

    display: flex;

    flex-direction: column;

    gap: 4px;

    cursor: pointer;

}



.burger-menu span {

    width: 25px;

    height: 3px;

    background-color: var(--text-dark);

    transition: all 0.3s ease;

}



/* Hero Section */

.hero {

    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);

    color: var(--white);

    padding: 4rem 0;

    text-align: center;

}



.hero h1 {

    color: var(--white);

    font-size: 2rem;

    margin-bottom: 1rem;

}



.hero-subtitle {

    font-size: 1.125rem;

    margin-bottom: 2rem;

    opacity: 0.95;

}



.hero-buttons {

    display: flex;

    gap: 1rem;

    justify-content: center;

    flex-wrap: wrap;

    margin-bottom: 1.5rem;

}



.zone-service {

    font-size: 0.95rem;

    opacity: 0.9;

    margin-top: 1.5rem;

}



/* Atelier Showcase Section */

.atelier-showcase {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.atelier-showcase h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.atelier-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.atelier-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.atelier-image {
    background-color: #f1f3f5;
    border-radius: 18px;
    padding: 18px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.atelier-image img {
    width: 92%;
    height: 100%;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    display: block;
}

.atelier-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atelier-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.atelier-content p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.atelier-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .atelier-row {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    }

    .atelier-row.reverse {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

    .atelier-row.reverse .atelier-image {
        order: 2;
    }

    .atelier-row.reverse .atelier-content {
        order: 1;
    }

    .atelier-image {
        min-height: 420px;
        padding: 22px;
    }

    .atelier-image img {
        width: 90%;
        max-height: 500px;
    }
}

@media (min-width: 1024px) {
    .atelier-image {
        min-height: 470px;
        padding: 24px;
    }

    .atelier-image img {
        width: 88%;
        max-height: 540px;
    }

    .atelier-content {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .atelier-image {
        min-height: auto;
        padding: 12px;
    }

    .atelier-image img {
        width: 100%;
        height: auto;
        max-height: none;
    }
}

/* Why Us Section */

.why-us {

    padding: 4rem 0;

}



.why-us h2 {

    text-align: center;

    margin-bottom: 3rem;

}



.features-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 2rem;

}



.feature {

    text-align: center;

}



.feature-icon {

    font-size: 3rem;

    margin-bottom: 1rem;

}



.feature h3 {

    color: var(--primary-color);

    margin-bottom: 0.5rem;

}



/* CTA Section */

.cta-section {

    background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);

    color: var(--white);

    padding: 4rem 0;

    text-align: center;

}



.cta-section h2 {

    color: var(--white);

    margin-bottom: 1rem;

}



.cta-section p {

    font-size: 1.125rem;

    margin-bottom: 2rem;

}



.cta-buttons {

    display: flex;

    gap: 1rem;

    justify-content: center;

    flex-wrap: wrap;

}



/* Page Header */

.page-header {

    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);

    color: var(--white);

    padding: 3rem 0;

    text-align: center;

}



.page-header h1 {

    color: var(--white);

    margin-bottom: 0.5rem;

}



.page-header p {

    font-size: 1.125rem;

    opacity: 0.95;

}



/* Repairs Section */

.repairs-section {

    padding: 4rem 0;

}



.repair-category {

    margin-bottom: 4rem;

}



.repair-category h2 {

    margin-bottom: 1rem;

    padding-bottom: 1rem;

    border-bottom: 3px solid var(--primary-color);

}



.repair-list {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.5rem;

    margin-top: 2rem;

}



.repair-item {

    display: flex;

    gap: 1.5rem;

    background-color: var(--bg-light);

    padding: 1.5rem;

    border-radius: 12px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.repair-item:hover {

    transform: translateX(5px);

    box-shadow: var(--shadow-md);

}



.repair-item img {

    width: 100px;

    height: 100px;

    object-fit: cover;

    border-radius: 8px;

    flex-shrink: 0;

}



.repair-content h3 {

    color: var(--primary-color);

    margin-bottom: 0.5rem;

}



/* Pricing Section */

.pricing-section {

    padding: 4rem 0;

}



.pricing-table {

    margin-bottom: 4rem;

}



.pricing-table h2 {

    margin-bottom: 2rem;

    padding-bottom: 1rem;

    border-bottom: 3px solid var(--primary-color);

}



table {

    width: 100%;

    border-collapse: collapse;

    background-color: var(--white);

    box-shadow: var(--shadow-sm);

    border-radius: 12px;

    overflow: hidden;

}



thead {

    background-color: var(--primary-color);

    color: var(--white);

}



th, td {

    padding: 0.85rem 0.7rem;

    border-bottom: 1px solid var(--border-color);

    text-align: center;

    font-size: 0.95rem;

    line-height: 1.35;

    vertical-align: middle;

}



th {

    font-weight: 600;

    font-size: 0.92rem;

}



th:first-child,
td:first-child {

    text-align: left;

}



tbody tr:hover {

    background-color: var(--bg-light);

}



tbody tr:last-child td {

    border-bottom: none;

}



/* Other Services Pricing */

.other-services {

    margin: 4rem 0;

}



.services-pricing-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.5rem;

    margin-top: 2rem;

}



.service-price {

    background-color: var(--bg-light);

    padding: 1.5rem;

    border-radius: 12px;

    text-align: center;

    transition: transform 0.3s ease;

}



.service-price:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

}



.service-price h3 {

    color: var(--primary-color);

    margin-bottom: 0.5rem;

}



.service-price .price {

    font-size: 1.75rem;

    font-weight: 700;

    color: var(--secondary-color);

    margin: 0.5rem 0;

}



/* Warranty Section */

.warranty-info {

    margin: 4rem 0;

    background-color: var(--bg-light);

    padding: 3rem 2rem;

    border-radius: 12px;

}



.warranty-info h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.warranty-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 2rem;

}



.warranty-item {

    text-align: center;

}



.warranty-icon {

    font-size: 3rem;

    margin-bottom: 1rem;

    display: block;

}



.warranty-item h3 {

    color: var(--primary-color);

    margin-bottom: 0.5rem;

}



/* Contact Section */

.contact-section {

    padding: 4rem 0;

}



.contact-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 3rem;

}



.contact-info {

    background-color: var(--bg-light);

    padding: 2rem;

    border-radius: 12px;

}



.contact-item {

    display: flex;

    gap: 1.5rem;

    margin-bottom: 2rem;

    padding-bottom: 2rem;

    border-bottom: 1px solid var(--border-color);

}



.contact-item:last-child {

    border-bottom: none;

    margin-bottom: 0;

    padding-bottom: 0;

}



.contact-icon {

    font-size: 2rem;

    flex-shrink: 0;

}



.contact-details h3 {

    color: var(--primary-color);

    margin-bottom: 0.5rem;

    font-size: 1.25rem;

}



.contact-details p {

    margin-bottom: 0.25rem;

}



.small-text {

    font-size: 0.875rem;

    color: var(--text-light);

}



/* Contact Form */

.contact-form-wrapper {

    background-color: var(--white);

    padding: 2rem;

    border-radius: 12px;

    box-shadow: var(--shadow-sm);

}



.contact-form {

    margin-top: 1.5rem;

}



.form-group {

    margin-bottom: 1.5rem;

}



.form-group label {

    display: block;

    margin-bottom: 0.5rem;

    font-weight: 600;

    color: var(--text-dark);

}



.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 12px;

    border: 1px solid var(--border-color);

    border-radius: 8px;

    font-size: 1rem;

    font-family: inherit;

    transition: border-color 0.3s ease;

}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--primary-color);

}



.form-note {

    text-align: center;

    margin-top: 1rem;

    font-size: 0.95rem;

    color: var(--text-light);

}



/* Map Section */

.map-section {

    padding: 4rem 0;

    background-color: var(--bg-light);

}



.map-section h2 {

    text-align: center;

    margin-bottom: 2rem;

}



.map-container {

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--shadow-md);

}



.map-note {

    text-align: center;

    margin-top: 1rem;

    color: var(--text-light);

}



/* Quick Access */

.quick-access {

    padding: 4rem 0;

}



.quick-access h2 {

    text-align: center;

    margin-bottom: 3rem;

}



.quick-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 2rem;

}



.quick-item {

    background-color: var(--bg-light);

    padding: 1.5rem;

    border-radius: 12px;

    text-align: center;

}



.quick-item h3 {

    color: var(--primary-color);

    margin-bottom: 1rem;

}



/* Footer */

footer {

    background-color: var(--text-dark);

    color: var(--white);

    padding: 3rem 0 1.5rem;

}



.footer-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 2rem;

    margin-bottom: 2rem;

}



.footer-col h4 {

    color: var(--white);

    margin-bottom: 1rem;

}



.footer-col p {

    margin-bottom: 0.5rem;

    color: rgba(255, 255, 255, 0.8);

}



.footer-col ul {

    list-style: none;

}



.footer-col ul li {

    margin-bottom: 0.5rem;

}



.footer-col ul li a {

    color: rgba(255, 255, 255, 0.8);

    transition: color 0.3s ease;

}



.footer-col ul li a:hover {

    color: var(--white);

}



.footer-bottom {

    text-align: center;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

}



.footer-bottom p {

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.875rem;

}



/* ===================================

   RESPONSIVE - MOBILE TABLE

   =================================== */

@media (max-width: 767px) {

    table {

        font-size: 0.88rem;

    }



    th, td {

        padding: 0.7rem 0.5rem;

        font-size: 0.88rem;

        line-height: 1.3;

    }



    th {

        font-size: 0.84rem;

    }

}



/* ===================================

   RESPONSIVE - TABLET

   =================================== */

@media (min-width: 768px) {

    h1 {

        font-size: 2.5rem;

    }



    h2 {

        font-size: 2rem;

    }



    .hero h1 {

        font-size: 2.5rem;

    }



    .nav-menu {

        display: flex;

    }



    .burger-menu {

        display: none;

    }



    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .features-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .repair-list {

        grid-template-columns: repeat(2, 1fr);

    }



    .services-pricing-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .warranty-grid {

        grid-template-columns: repeat(3, 1fr);

    }



    .contact-grid {

        grid-template-columns: 1fr 1fr;

    }



    .quick-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    table {

        font-size: 0.95rem;

    }



    th, td {

        padding: 0.75rem 0.65rem;

        font-size: 0.93rem;

    }



    th {

        font-size: 0.9rem;

    }

}



/* ===================================

   RESPONSIVE - DESKTOP

   =================================== */

@media (min-width: 1024px) {

    h1 {

        font-size: 3rem;

    }



    .hero h1 {

        font-size: 3rem;

    }



    .services-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .features-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .services-pricing-grid {

        grid-template-columns: repeat(3, 1fr);

    }



    .quick-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    .footer-grid {

        grid-template-columns: repeat(4, 1fr);

    }



    table {

        font-size: 0.96rem;

    }



    th, td {

        padding: 0.85rem 0.7rem;

        font-size: 0.95rem;

    }



    th {

        font-size: 0.92rem;

    }

}

/* Button alignment fixes */
.hero-buttons,
.cta-buttons,
.atelier-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .hero-buttons .btn,
    .cta-buttons .btn,
    .atelier-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}


/* Contact page ordering and spacing */
@media (max-width: 767px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 1.5rem;
    }
}
