/* ===== MOBILE PRIORITY RULES - FORCE DISPLAY ===== */
@media (max-width: 767px) {
    /* HAMBURGER - TOUJOURS VISIBLE SANS FOND NI CONTOUR */
    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        background: transparent !important;
        padding: 8px !important;
        border: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10001 !important;
    }
    
    .nav-toggle span {
        width: 25px !important;
        height: 3px !important;
        background: #fff !important;
        margin: 2px 0 !important;
        border-radius: 2px !important;
        display: block !important;
    }
    
    /* BOUTON TÉLÉPHONE - TOUJOURS VISIBLE ET CENTRÉ */
    .mobile-phone-btn {
        display: block !important;
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1000 !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        width: auto !important;
    }

    .phone-btn-mobile {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 16px 28px !important;
        background: linear-gradient(135deg, #D4AF37, #B8860B) !important;
        color: #fff !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4) !important;
        border: none !important;
        white-space: nowrap !important;
        font-size: 15px !important;
    }
    
    .phone-btn-mobile .phone-number {
        font-size: 15px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }
}

/* ===== MODERN DESIGN SYSTEM ===== */
:root {
    /* Couleurs principales */
    --primary-gold: #D4AF37;
    --primary-dark: #B8860B;
    --accent-rose: #E8B4B8;
    --accent-sage: #9CAF88;
    
    /* Couleurs neutres */
    --white: #FFFFFF;
    --cream: #FEFDF8;
    --light-gray: #F8F8F8;
    --gray: #888888;
    --dark-gray: #333333;
    --black: #1A1A1A;
    
    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espacements */
    --section-padding: 120px;
    --container-padding: 40px;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    background: var(--cream);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 400;
    color: var(--black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-gold));
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

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

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px var(--container-padding);
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.01em;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-weight: 400;
    color: var(--gray);
    position: relative;
    padding: 10px 0;
    transition: var(--transition-smooth);
    font-size: 15px;
}

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

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Header Phone Button */
.header-phone {
    margin-left: 3rem;
}

.phone-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.phone-text {
    white-space: nowrap;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.back-to-top-arrow {
    font-size: 20px;
    font-weight: bold;
}

/* Mobile Phone Button - Hidden by default, shown on mobile */
.mobile-phone-btn {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { scale: 1.1; }
    100% { scale: 1.2; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    position: relative;
}

/* OPTION 2: Style élégant classique */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--black);
    position: relative;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/5;
    background: var(--light-gray);
}

.portfolio-item.large {
    grid-column: span 2;
    aspect-ratio: 16/10;
}

.portfolio-item.tall {
    grid-row: span 2;
    aspect-ratio: 4/8;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(1) saturate(1.1);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(232, 180, 184, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

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

.about-text {
    max-width: 600px;
}

.about-subtitle {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid var(--light-gray);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.service-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    position: relative;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-header h3 {
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 400;
}

.service-price {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.service-features {
    text-align: left;
    margin-bottom: 3rem;
}

.service-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 2rem;
    color: var(--gray);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: bold;
    font-size: 16px;
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.author-info h4 {
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: var(--cream);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    margin-top: 0.25rem;
    color: var(--primary-gold);
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.contact-item a {
    color: var(--primary-gold);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-guarantee {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
}

.contact-guarantee p {
    margin: 0;
    color: var(--primary-gold);
    font-weight: 600;
}

/* ===== FORM STYLES ===== */
.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--black);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 16px;
    transition: var(--transition-smooth);
    font-family: inherit;
    background: var(--white);
    color: var(--dark-gray);
}

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

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--primary-gold);
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--gray);
}

.form-message {
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(156, 175, 136, 0.1);
    color: var(--accent-sage);
    border: 1px solid rgba(156, 175, 136, 0.3);
}

.form-message.error {
    background: rgba(232, 180, 184, 0.1);
    color: var(--accent-rose);
    border: 1px solid rgba(232, 180, 184, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 400;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.footer p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    z-index: 10001;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    display: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(212, 175, 55, 0.8);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition-smooth);
    border-radius: 50px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Tablette */
@media (max-width: 1023px) {
    :root {
        --section-padding: 80px;
        --container-padding: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .portfolio-item.large,
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/5;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card.featured {
        transform: scale(1.02);
    }
}

/* Small tablets */
@media (max-width: 900px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-price {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .header .container {
        padding: 6px 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 24px;
        color: var(--black);
    }
    
    /* Nav toggle active states */
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        background: var(--black);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        background: var(--black);
    }
    
    /* Header phone - hide on mobile */
    .header-phone {
        display: none;
    }
    
    /* Back to top button position */
    .back-to-top {
        bottom: 100px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    /* Hero */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Services - Stack on mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    /* Testimonials - Stack on mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* About */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Lightbox */
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-nav {
        position: static;
        transform: none;
        margin-top: 1rem;
        justify-content: center;
        gap: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        position: static;
        font-size: 20px;
        padding: 10px 15px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .contact-form,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .form-row {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-image {
        animation: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .lightbox,
    .btn,
    .mobile-phone-btn,
    .back-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        color: black !important;
        font-size: 24pt;
    }
}