:root {
    --bg-dark: #141414;
    --bg-cream: #fafafa;
    --bg-white: #ffffff;
    --accent-color: #ed5ea6; 
    --accent-hover: #d81b60;
    --text-dark: #141414;
    --text-light: #f2f2f2;
    --text-grey: #888888;
    
    --font-heading: 'Italiana', serif;
    --font-body: 'Lato', sans-serif;
    --font-script: 'Kaushan Script', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

.accent-script {
    font-family: var(--font-script);
    color: var(--accent-color);
    font-weight: 400;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.mt-4 { margin-top: 1rem; }
.mt-auto { margin-top: auto; }
.mb-section { margin-bottom: 2rem; }
.mt-section { margin-top: 3rem; }
.w-100 { width: 100%; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-hollow {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-hollow:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 5%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: transparent;
    color: var(--text-light);
}

.navbar.scrolled {
    background-color: var(--bg-dark);
    padding: 0 5%;
    height: 65px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-logo-img {
    height: 270px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, height 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    transform-origin: top left;
}

.navbar.scrolled .navbar-logo-img {
    height: 120px;
}

.navbar-logo-img:hover {
    transform: scale(1.04);
}

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

.nav-links li a {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 500px;
    background-image: url('img/fond.jpeg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 20, 20, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0px;
}

.hero-content .accent-script {
    display: block;
    font-size: 3rem;
    margin-bottom: 2rem;
    transform: translateY(-15px) rotate(-2deg);
}

.hero-content h2 {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Base Sections: Expertise / Galerie / Contact = Dark */
.fears, .about, .gallery, .contact, .footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Prestations = Light */
.pricing {
    background-color: var(--bg-cream);
    color: var(--text-dark);
}

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

/* Cards (Fears) */
.card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.card p {
    color: var(--text-grey);
}

/* About Section */
.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-img-mask {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.badge-exp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.skills-list {
    margin-top: 2rem;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 15px;
}

.skill-item .icon {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.skill-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.skill-item p {
    color: var(--text-grey);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 3rem 2rem;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card.popular {
    background-color: var(--bg-dark);
    color: var(--text-light);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 2;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.pricing-card.popular .pricing-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-list li span.pink {
    color: var(--accent-color);
    font-weight: bold;
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s ease;
}

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

.subtitle-text a {
    color: var(--accent-color);
    font-weight: bold;
}

.subtitle-text a:hover {
    text-decoration: underline;
}

/* Contact */
.contact-flex {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-details {
    font-size: 1.1rem;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-form {
    flex: 1;
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.footer-desc {
    color: var(--text-grey);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links {
    text-align: right;
}

.footer-links a {
    display: block;
    color: var(--text-grey);
    margin-bottom: 0.5rem;
}
.footer-links a:hover {
    color: var(--accent-color);
}

/* WhatsApp Floater */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    flex: 1;
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 10rem;
    font-family: var(--font-heading);
    color: rgba(237, 94, 166, 0.08);
    position: absolute;
    top: -2rem;
    left: 1rem;
    line-height: 1;
    z-index: 0;
}

.review-card-content {
    position: relative;
    z-index: 1;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

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

.review-author {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mariages.net Awards Badges */
.mariages-awards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.mariages-badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.mariages-badge-link:hover {
    transform: scale(1.06);
}

.badge-recommande {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #f4f4f4;
    border: 3px solid #c0c0c0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    gap: 2px;
}

.badge-heart {
    color: #c0c0c0;
    font-size: 1.3rem;
}

.badge-recommande-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
}

.badge-brand {
    font-size: 0.65rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.5px;
}

.badge-stars-sm {
    color: #FFD700;
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.badge-opinions {
    font-size: 0.55rem;
    color: #555;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-awards {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #141414;
    border: 3px solid #c9a84c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    gap: 2px;
}

.badge-brand-white {
    font-size: 0.6rem;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
}

.badge-awards-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.badge-awards-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 3px;
    font-family: var(--font-heading);
}

/* Partners Carousel */
.partners {
    background-color: var(--bg-cream);
    overflow: hidden;
}

.partners-track-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-partners 22s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-card {
    display: block;
    min-width: 240px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--text-light);
    flex-shrink: 0;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.partner-card-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.12);
}

.partner-card-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

.partner-card:hover img {
    transform: scale(1.06);
}

.partner-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(20,20,20,0.82));
    padding: 1.2rem 1rem 0.8rem;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.partner-category {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* SEO Intro Section (hero background, text overlay) */
.hero-seo {
    position: relative;
    background-image: url('img/fond.jpeg');
    background-position: center 65%;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 0;
    color: var(--text-light);
    text-align: center;
}

.hero-seo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.78);
}

.hero-seo-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-seo-title {
    font-size: 2.6rem;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    line-height: 1.35;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow:
        0 0 80px rgba(237, 94, 166, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-seo-title .accent-script {
    font-size: 3.2rem;
    text-shadow: 0 0 50px rgba(237, 94, 166, 0.7);
}

.hero-seo-content p {
    color: rgba(242, 242, 242, 0.82);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
    text-align: left;
}

.hero-seo-content strong {
    color: var(--text-light);
    font-weight: 600;
}

.hero-seo-zones {
    font-size: 0.92rem !important;
    color: rgba(242, 242, 242, 0.5) !important;
    font-style: italic;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
    margin-top: 0.3rem;
}

/* Services section subtitle */
.services-subtitle {
    color: var(--text-grey);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -0.8rem;
    margin-bottom: 0;
}

/* Footer SEO text block */
.footer-seo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: rgba(136, 136, 136, 0.75);
    font-size: 0.82rem;
    line-height: 1.9;
}

.footer-seo p {
    margin-bottom: 0.4rem;
}

.footer-seo strong {
    color: rgba(242, 242, 242, 0.45);
    font-weight: 600;
}

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

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content .accent-script {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    /* Tablet */
    .navbar {
        padding: 0 3%;
    }
    .navbar-logo-img {
        height: 200px;
    }
    .navbar.scrolled .navbar-logo-img {
        height: 100px;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content .accent-script {
        font-size: 2.2rem;
    }
    .hero-content h2 {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .about-flex, .contact-flex, .footer-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-flex { text-align: center; }
    .footer-links { text-align: center; }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .review-card {
        min-width: 300px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .badge-exp {
        width: 100px;
        height: 100px;
        font-size: 1rem;
        padding: 15px;
    }
    .mariages-awards {
        gap: 1.5rem;
    }
    .badge-recommande, .badge-awards {
        width: 110px;
        height: 110px;
    }
    .badge-recommande-label {
        font-size: 0.5rem;
    }
    .badge-brand {
        font-size: 0.55rem;
    }
    .badge-awards-title {
        font-size: 0.65rem;
    }
    .badge-awards-year {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Large / Small Tablet */
    .navbar {
        padding: 0 4%;
    }
    .navbar-logo-img {
        height: 160px;
    }
    .navbar.scrolled .navbar-logo-img {
        height: 80px;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        max-width: 300px;
        transition: 0.4s;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .nav-links li a {
        font-size: 1.1rem;
    }
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    .hamburger.active span {
        background-color: var(--accent-color);
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero {
        height: 100vh;
        min-height: 600px;
        background-image: url('img/fond.jpeg');
        background-position: center 35%;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    .hero-seo {
        background-attachment: scroll;
        padding: 4.5rem 0;
    }
    .hero-seo-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    .hero-seo-title .accent-script {
        font-size: 2.4rem;
    }
    .hero-seo-content p {
        font-size: 0.98rem;
    }
    .hero-overlay {
        background: rgba(20, 20, 20, 0.5);
    }
    .hero-content {
        padding: 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .accent-script {
        font-size: 1.8rem;
        transform: translateY(-10px) rotate(-2deg);
    }
    .hero-content h2 {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 3.5rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .container {
        width: 92%;
    }

    .about-flex {
        gap: 2rem;
    }
    .about-image {
        max-width: 400px;
    }
    .about-img-mask {
        aspect-ratio: 4 / 5;
    }
    .about-text {
        font-size: 1rem;
    }
    .skill-item h4 {
        font-size: 1.1rem;
    }
    .skill-item p {
        font-size: 0.95rem;
    }
    .badge-exp {
        width: 90px;
        height: 90px;
        font-size: 0.9rem;
        padding: 12px;
        bottom: -15px;
        right: -15px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    .price {
        font-size: 1.6rem;
    }
    .pricing-list li {
        font-size: 0.95rem;
    }

    .reviews-grid {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    .review-card {
        min-width: 280px;
        padding: 2rem 1.5rem;
    }
    .quote-icon {
        font-size: 6rem;
    }
    .review-text {
        font-size: 0.95rem;
    }
    .review-author {
        font-size: 1rem;
    }

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

    .partners-track {
        gap: 1rem;
    }
    .partner-card {
        min-width: 200px;
        height: 140px;
    }
    .partner-name {
        font-size: 1rem;
    }
    .partner-category {
        font-size: 0.7rem;
    }

    .contact-flex {
        gap: 2.5rem;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
    .form-group input, .form-group textarea {
        padding: 0.8rem;
    }
    .form-group label {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0;
    }
    .footer-logo {
        font-size: 1.3rem;
    }
    .footer-desc {
        font-size: 0.85rem;
    }
    .footer-links a {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .mariages-awards {
        gap: 1rem;
        margin-top: 2rem;
    }
    .badge-recommande, .badge-awards {
        width: 100px;
        height: 100px;
    }
    .badge-heart {
        font-size: 1.1rem;
    }
    .badge-recommande-label {
        font-size: 0.45rem;
    }
    .badge-brand {
        font-size: 0.5rem;
    }
    .badge-stars-sm {
        font-size: 0.55rem;
    }
    .badge-opinions {
        font-size: 0.45rem;
    }
    .badge-brand-white {
        font-size: 0.5rem;
    }
    .badge-awards-title {
        font-size: 0.55rem;
    }
    .badge-awards-year {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Small Mobile */
    .navbar {
        padding: 0 4%;
    }
    .navbar-logo-img {
        height: 120px;
    }
    .navbar.scrolled .navbar-logo-img {
        height: 60px;
    }
    .hamburger span {
        width: 22px;
    }

    .hero-content {
        padding: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content .accent-script {
        font-size: 1.5rem;
        transform: translateY(-8px) rotate(-2deg);
    }
    .hero-content h2 {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .container {
        width: 90%;
    }

    .about-image {
        max-width: 300px;
    }
    .about-img-mask {
        aspect-ratio: 3 / 4;
    }
    .about-text {
        font-size: 0.95rem;
    }
    .skills-list {
        margin-top: 1.5rem;
    }
    .skill-item {
        margin-bottom: 1rem;
    }
    .skill-item .icon {
        font-size: 1.2rem;
    }
    .skill-item h4 {
        font-size: 1rem;
    }
    .skill-item p {
        font-size: 0.85rem;
    }
    .badge-exp {
        width: 75px;
        height: 75px;
        font-size: 0.8rem;
        padding: 10px;
        bottom: -12px;
        right: -12px;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }
    .pricing-card h3 {
        font-size: 1.2rem;
    }
    .price {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    .pricing-list {
        margin-bottom: 1.5rem;
    }
    .pricing-list li {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    .badge {
        top: -12px;
        padding: 4px 12px;
        font-size: 0.7rem;
    }

    .reviews-grid {
        gap: 1rem;
        padding: 1rem 0;
    }
    .review-card {
        min-width: 250px;
        padding: 1.5rem 1rem;
    }
    .quote-icon {
        font-size: 5rem;
        top: -1.5rem;
        left: 0.5rem;
    }
    .review-stars {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .review-author {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
    .subtitle-text {
        font-size: 0.9rem;
    }
    .hero-seo {
        padding: 3.5rem 0;
    }
    .hero-seo-title {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    .hero-seo-title .accent-script {
        font-size: 2rem;
    }
    .hero-seo-content p {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .partners-track {
        gap: 0.8rem;
    }
    .partner-card {
        min-width: 160px;
        height: 110px;
        border-radius: 8px;
    }
    .partner-card-overlay {
        padding: 0.8rem 0.6rem;
    }
    .partner-name {
        font-size: 0.85rem;
    }
    .partner-category {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .contact-info h2 {
        font-size: 1.6rem;
    }
    .contact-info p {
        font-size: 0.95rem;
    }
    .contact-details {
        font-size: 1rem;
    }
    .contact-item {
        margin-bottom: 0.8rem;
    }
    .contact-form {
        padding: 1.5rem 1rem;
    }
    .form-group {
        margin-bottom: 1rem;
    }
    .form-group label {
        font-size: 0.95rem;
    }
    .form-group input, .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    .btn-whatsapp {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    .btn-whatsapp svg {
        width: 20px;
        height: 20px;
    }

    .footer {
        padding: 1.5rem 0;
    }
    .footer-flex {
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 1.2rem;
    }
    .footer-desc {
        font-size: 0.8rem;
        max-width: 100%;
    }
    .footer-links a {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .mariages-awards {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    .badge-recommande, .badge-awards {
        width: 85px;
        height: 85px;
    }
    .badge-heart {
        font-size: 1rem;
    }
    .badge-recommande-label {
        font-size: 0.4rem;
    }
    .badge-brand {
        font-size: 0.45rem;
    }
    .badge-stars-sm {
        font-size: 0.5rem;
    }
    .badge-opinions {
        font-size: 0.4rem;
    }
    .badge-brand-white {
        font-size: 0.45rem;
    }
    .badge-awards-title {
        font-size: 0.5rem;
    }
    .badge-awards-year {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    /* Extra Small Mobile */
    .hero-content h1 {
        font-size: 1.75rem;
    }
    .hero-content .accent-script {
        font-size: 1.3rem;
    }
    .hero-content h2 {
        font-size: 0.65rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .about-image {
        max-width: 260px;
    }
    .pricing-card h3 {
        font-size: 1.1rem;
    }
    .review-card {
        min-width: 220px;
    }
    .partner-card {
        min-width: 140px;
        height: 100px;
    }
}