/*
Theme Name: ETS Koulouk
Theme URI: https://etskoulouk.com
Author: ETS Koulouk
Author URI: https://etskoulouk.com
Description: Thème officiel de ETS KOULOUK - Imprimerie, Sérigraphie, Gadgeterie, Broderie, Secrétariat & Formation à Yaoundé, Cameroun.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: etskoulouk
Tags: business, printing, custom-colors, custom-logo, responsive-layout
*/

/* =====================================================
   VARIABLES CSS — IDENTITÉ DE MARQUE ETS KOULOUK
   ===================================================== */
:root {
    --violet:        #3D2D8E;
    --violet-dark:   #2a1f6b;
    --violet-light:  #5540b5;
    --orange:        #F47920;
    --orange-dark:   #d4651a;
    --orange-light:  #ff8f3a;
    --white:         #ffffff;
    --light-gray:    #f5f5f8;
    --gray:          #e0e0e8;
    --dark:          #1a1a2e;
    --text:          #333344;
    --text-light:    #666680;
    --font-main:     'Poppins', sans-serif;
    --font-alt:      'Montserrat', sans-serif;
    --radius:        8px;
    --radius-lg:     16px;
    --shadow:        0 4px 20px rgba(61, 45, 142, 0.12);
    --shadow-lg:     0 8px 40px rgba(61, 45, 142, 0.2);
    --transition:    all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

a:hover { color: var(--orange); }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-alt);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

p { margin-bottom: 1rem; }

/* =====================================================
   UTILITAIRES
   ===================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .label {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--violet);
    margin-bottom: 16px;
}

.section-title h2 span {
    color: var(--orange);
}

.section-title p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--orange));
    border-radius: 2px;
    margin: 16px auto 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 121, 32, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--violet);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--violet);
    border-color: var(--violet);
}

.btn-outline:hover {
    background: var(--violet);
    color: var(--white);
    transform: translateY(-2px);
}

.text-orange { color: var(--orange); }
.text-violet { color: var(--violet); }
.text-center { text-align: center; }
.bg-light { background: var(--light-gray); }
.bg-violet { background: var(--violet); }

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

#site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .name {
    font-family: var(--font-alt);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--violet);
    line-height: 1.1;
}

.logo-text .tagline {
    font-size: 0.68rem;
    color: var(--orange);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation principale */
#main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

#main-nav ul li a {
    display: block;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

#main-nav ul li a:hover,
#main-nav ul li.current-menu-item > a {
    color: var(--violet);
    background: rgba(61, 45, 142, 0.07);
}

.header-cta .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--violet);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet) 50%, var(--violet-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.08;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.04;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(244, 121, 32, 0.15) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 121, 32, 0.2);
    border: 1px solid rgba(244, 121, 32, 0.4);
    color: var(--orange-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--orange);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    font-family: var(--font-alt);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.hero-image {
    position: relative;
}

.hero-image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.15);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(244,121,32,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-float .icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--violet), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.hero-badge-float .info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--violet);
    font-weight: 800;
}

.hero-badge-float .info span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* =====================================================
   SERVICES RAPIDES (BARRE)
   ===================================================== */
#quick-services {
    background: var(--white);
    padding: 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 3px solid var(--orange);
}

.qs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid var(--gray);
    transition: var(--transition);
    cursor: default;
}

.qs-item:last-child { border-right: none; }

.qs-item:hover {
    background: var(--violet);
}

.qs-item:hover .qs-icon,
.qs-item:hover .qs-label {
    color: var(--white);
}

.qs-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--orange);
    transition: var(--transition);
}

.qs-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    transition: var(--transition);
}

/* =====================================================
   SECTION À PROPOS
   ===================================================== */
#about {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--violet), var(--violet-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--orange);
    color: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-accent .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-alt);
    line-height: 1;
}

.about-accent .years-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-content .section-title .divider {
    margin: 16px 0 0;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    margin: 24px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: 0.95rem;
}

.about-list li .check {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--violet), var(--orange));
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =====================================================
   SECTION SERVICES
   ===================================================== */
#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(61, 45, 142, 0.1), rgba(244, 121, 32, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--violet), var(--orange));
    color: white;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--violet);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-tag {
    display: inline-block;
    margin-top: 16px;
    background: var(--light-gray);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services détaillés sous-items */
.service-sub-list {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray);
}

.service-sub-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
}

.service-sub-list li::before {
    content: '›';
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    flex-shrink: 0;
}

/* =====================================================
   SECTION DEVIS / CTA
   ===================================================== */
#cta-devis {
    background: linear-gradient(135deg, var(--violet-dark), var(--violet));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#cta-devis::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.07;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner h2 span { color: var(--orange); }

.cta-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* =====================================================
   SECTION GALERIE
   ===================================================== */
#gallery {
    background: var(--light-gray);
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    background: var(--gray);
}

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

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(61, 45, 142, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* =====================================================
   SECTION CONTACT
   ===================================================== */
#contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--violet);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--violet), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-info strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item-info span,
.contact-item-info a {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--gray);
}

.social-link:hover {
    background: var(--violet);
    color: white;
    border-color: var(--violet);
    transform: translateY(-2px);
}

/* Formulaire de contact */
.contact-form {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.4rem;
    color: var(--violet);
    margin-bottom: 8px;
}

.contact-form .form-subtitle {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 0.93rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(61, 45, 142, 0.1);
}

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

/* =====================================================
   MAP
   ===================================================== */
#map-section {
    background: var(--light-gray);
    padding: 0;
}

.map-wrapper {
    height: 380px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .logo-area img {
    height: 50px;
}

.footer-brand .logo-text .name {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-brand .logo-text .tagline {
    color: var(--orange);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-list li .icon {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: var(--orange);
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8); }
}

.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: var(--dark);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* =====================================================
   PAGE DEVIS
   ===================================================== */
.devis-hero {
    background: linear-gradient(135deg, var(--violet-dark), var(--violet));
    padding: 80px 0 60px;
    margin-top: 80px;
    text-align: center;
    color: white;
}

.devis-hero h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.devis-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.devis-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    margin: -40px auto 60px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
    background: var(--light-gray);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray);
    margin-top: 80px;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb-inner a {
    color: var(--text-light);
}

.breadcrumb-inner a:hover { color: var(--violet); }

.breadcrumb-inner .sep { color: var(--orange); }

.breadcrumb-inner .current { color: var(--violet); font-weight: 600; }

/* =====================================================
   PAGE BANNER (pages internes)
   ===================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--violet-dark), var(--violet));
    padding: 70px 0 60px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.08;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    position: relative;
    z-index: 2;
}

.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
#testimonials {
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    color: var(--violet);
    opacity: 0.08;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.93rem;
    color: var(--text);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--orange);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }

    #main-nav,
    .header-cta { display: none; }

    #main-nav.open {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 2px solid var(--orange);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        z-index: 999;
    }

    #main-nav.open ul {
        flex-direction: column;
        gap: 4px;
    }

    #main-nav.open ul li a {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .hamburger { display: flex; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0 40px;
    }

    .hero-image { display: none; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { display: none; }

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

    .quick-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

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

    .testimonials-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .devis-form-wrap { padding: 30px 20px; margin: -20px 16px 40px; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .quick-services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stat .number { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .whatsapp-float a { width: 50px; height: 50px; font-size: 1.3rem; }
    .whatsapp-float { bottom: 20px; right: 20px; }
}
