:root {
    --primary: #C1A57B;
    --primary-light: #DDCAB4;
    --primary-dark: #9A7E56;
    --secondary: #F9F6F0;
    --accent: #A07855;
    --bg-light: #FCFAFA;
    --bg-warm: #F5F0EB;
    --text-dark: #2C2A29;
    --text-muted: #6C7A89;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 8px 32px 0 rgba(193, 165, 123, 0.07);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px 0 rgba(193, 165, 123, 0.18);
    --transition: all 0.35s cubic-bezier(.4,0,.2,1);
    --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Scroll Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Background Blobs ===== */
.blob-1, .blob-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -150px;
    left: -150px;
}
.blob-2 {
    width: 600px;
    height: 600px;
    background: #E8D8CE;
    bottom: 10%;
    right: -200px;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    transition: all 0.35s ease;
    overflow: hidden;
    max-height: 44px;
}

.top-bar.hidden {
    max-height: 0;
    opacity: 0;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.8rem;
}

a.top-bar-item:hover {
    color: var(--primary-light);
}

.top-bar-item i {
    font-size: 0.72rem;
    color: var(--primary);
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 10px;
}

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.top-bar-right a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== Main Navigation ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(193, 165, 123, 0.1);
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.35s ease;
}

nav.scrolled .nav-inner {
    height: 60px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(193, 165, 123, 0.3);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

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

.logo-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 6px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-dark);
    background: rgba(193, 165, 123, 0.08);
}

.nav-link.active {
    color: var(--primary-dark);
    background: rgba(193, 165, 123, 0.1);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-phone-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(193, 165, 123, 0.1);
    border: 1px solid rgba(193, 165, 123, 0.15);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-phone-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(193, 165, 123, 0.35);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    padding: 10px 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 10px;
    transition: background 0.3s ease;
    z-index: 200;
}

.hamburger:hover {
    background: rgba(193, 165, 123, 0.08);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(.68,-.55,.265,1.55);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(252, 250, 250, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    padding: 120px 32px 40px;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 14px;
    transition: var(--transition);
    transform: translateX(-20px);
    opacity: 0;
}

.mobile-menu.open .mobile-link {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.32s; }

.mobile-link:hover, .mobile-link:active {
    background: rgba(193, 165, 123, 0.1);
    color: var(--primary-dark);
}

.mobile-link i {
    width: 24px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
}

.mobile-menu-cta {
    margin-top: 24px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.38s;
}

.mobile-menu.open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-contact {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.44s;
}

.mobile-menu.open .mobile-menu-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(193, 165, 123, 0.08);
    border: 1px solid rgba(193, 165, 123, 0.12);
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-contact a:hover {
    background: rgba(193, 165, 123, 0.15);
    color: var(--primary-dark);
}

.mobile-menu-contact a i {
    color: var(--primary);
}

/* ===== Primary Button ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(193, 165, 123, 0.35);
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 120, 85, 0.45);
    filter: brightness(1.05);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    animation: fadeUp 0.8s ease forwards;
}

.subtitle {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 18px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(193, 165, 123, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(193, 165, 123, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeLeft 0.8s ease forwards;
}

.hero-image img {
    max-width: 100%;
    width: 440px;
    height: 580px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(193, 165, 123, 0.2);
    border: 8px solid var(--white);
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), #E8D8CE);
    border-radius: 30px;
    top: 20px;
    right: -20px;
    z-index: 1;
    max-width: 440px;
    max-height: 580px;
    opacity: 0.5;
}

/* ===== Info Banner ===== */
.info-banner {
    background: var(--white);
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    margin-top: -45px;
    border-radius: var(--radius);
    margin-left: 5%;
    margin-right: 5%;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(193, 165, 123, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.info-item:hover { transform: translateY(-3px); }

.info-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(193, 165, 123, 0.12), rgba(193, 165, 123, 0.05));
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

.info-text h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.info-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 10px;
}

/* ===== Services ===== */
.services {
    padding: 100px 5%;
}

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

.service-card {
    background: var(--white);
    border: 1px solid rgba(193, 165, 123, 0.08);
    padding: 35px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transition: height 0.4s ease;
}

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

.service-card:hover::before { height: 100%; }

.service-icon {
    width: 58px;
    height: 58px;
    background: rgba(193, 165, 123, 0.12);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===== Avant / Après Carousel ===== */
.ba-section {
    padding: 80px 5%;
    background: var(--bg-warm);
}

.ba-carousel {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 30px;
}

.ba-track {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    background: var(--white);
    overflow: hidden;
    border: 6px solid var(--white);
}

.ba-slide {
    display: none;
}

.ba-slide.active {
    display: block;
    animation: baFade 0.45s ease;
}

@keyframes baFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ba-slide img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: contain;
    display: block;
}

/* Carousel Counter */
.ba-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 42, 41, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 5;
}

/* Navigation Arrows */
.ba-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(193, 165, 123, 0.3);
    background: var(--white);
    color: var(--primary);
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-arrow:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(193, 165, 123, 0.3);
}

.ba-prev { left: -10px; }
.ba-next { right: -10px; }

/* Dot Indicators */
.ba-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: var(--primary-light);
    cursor: pointer;
    transition: var(--transition);
}

.ba-dot.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    width: 28px;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 5%;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(193, 165, 123, 0.06);
}

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

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(193, 165, 123, 0.1);
}

.stars {
    color: #F5B731;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

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

.author-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Map ===== */
#location {
    height: 400px;
    width: 100%;
    filter: grayscale(20%) contrast(1.05);
}

/* ===== SEO Content ===== */
.seo-content {
    padding: 80px 5%;
    background: var(--bg-light);
}

.seo-text-container {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(193, 165, 123, 0.06);
}

.seo-text-container h2 {
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-bottom: 22px;
    font-weight: 700;
}

.seo-text-container h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.seo-text-container p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 1.02rem;
    line-height: 1.85;
}

@media (max-width: 768px) {
    .seo-text-container {
        padding: 28px 20px;
    }
    .seo-text-container h2 { font-size: 1.5rem; }
}

/* ===== SEO Silo Link ===== */
.silo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.93rem;
    transition: var(--transition);
}

.silo-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* ===== Footer ===== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 240px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p {
    color: #9A9FB5;
    margin-bottom: 18px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-col h3 {
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

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

.footer-links a {
    color: #9A9FB5;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.92rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9A9FB5;
    font-size: 0.85rem;
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .top-bar { display: none; }
    .nav-links { display: none; }
    .nav-actions .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
        gap: 40px;
    }
    .hero-content p { margin: 0 auto 30px; }
    .hero-image::before { display: none; }
    .info-banner {
        flex-direction: column;
        text-align: center;
    }
    .info-item { flex-direction: column; }
    .section-title h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.3rem; }
    .services { padding: 70px 5%; }
    .testimonials { padding: 70px 5%; }
    .ba-section { padding: 60px 5%; }

    .nav-inner { height: 60px; }
    nav.scrolled .nav-inner { height: 54px; }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }
    .logo-name { font-size: 1.05rem; }
    .logo-tagline { font-size: 0.62rem; }
}

/* ===== Floating WhatsApp ===== */
.btn-whatsapp-pulse {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
    font-size: 28px;
    text-decoration: none;
}

.btn-whatsapp-pulse:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Sticky Mobile CTA ===== */
.sticky-footer-cta { display: none; }

@media (max-width: 768px) {
    .btn-whatsapp-pulse {
        bottom: 90px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .btn-whatsapp-pulse svg { width: 26px; height: 26px; }

    .sticky-footer-cta {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 380px;
        z-index: 2147483647;
        gap: 0;
        padding: 5px;
        background: rgba(44, 42, 41, 0.95);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.35);
    }

    .sticky-footer-cta a {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        height: 46px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.88rem;
        transition: var(--transition);
        color: rgba(255, 255, 255, 0.9);
    }

    .btn-call-sticky {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        box-shadow: 0 4px 14px rgba(193, 165, 123, 0.4);
    }

    .btn-map-sticky { background: transparent; }
    .btn-map-sticky:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
}

/* ===== Back to Top ===== */
#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9000;
    border: 1px solid rgba(193, 165, 123, 0.15);
    text-decoration: none;
}

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

#back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 150px;
        right: 18px;
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}
