/* =========================================
   ESKİŞEHİR DAVUL ZURNA - MAIN STYLESHEET
   ========================================= */

:root {
    --gold: #c8933a;
    --gold-light: #e0a84a;
    --gold-pale: #f5e6c8;
    --dark: #0d0d0d;
    --dark-mid: #1a1208;
    --dark-warm: #2a1f10;
    --cream: #f0e6d3;
    --text-muted: #888;
    --red: #8b1a1a;
    --red-bright: #c02020;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Crimson Text', Georgia, serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ── PAGE TRANSITION ─────────────────── */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--dark-mid);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.page-transition.fade-out {
    opacity: 0;
    transform: scale(1.05);
}
.transition-logo {
    font-size: 5rem;
    animation: spinDrum 0.6s ease-in-out;
}
@keyframes spinDrum {
    0% { transform: rotate(-30deg) scale(0.5); opacity: 0; }
    60% { transform: rotate(10deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

/* ── TYPOGRAPHY ──────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ──────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }
.bg-dark { background: var(--dark-mid); }

/* ── ANIMATIONS ──────────────────────── */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s forwards;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── NAVBAR ──────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,147,58,0.2);
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(13,13,13,0.98);
    border-bottom-color: rgba(200,147,58,0.5);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.logo-icon { font-size: 1.8rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; color: var(--gold); line-height: 1.2; }
.logo-text small { font-size: 0.65rem; color: var(--text-muted); font-family: 'Crimson Text', serif; font-weight: 400; }

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--cream);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold);
    background: rgba(200,147,58,0.1);
}
.nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    font-weight: 700;
    padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 60% 40%, #2a1808 0%, #0d0d0d 70%);
    text-align: center;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(200,147,58,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139,26,26,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 60px,
        rgba(200,147,58,0.03) 60px, rgba(200,147,58,0.03) 61px
    ), repeating-linear-gradient(
        90deg, transparent, transparent 60px,
        rgba(200,147,58,0.03) 60px, rgba(200,147,58,0.03) 61px
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(200,147,58,0.5);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-family: 'Crimson Text', serif;
    margin-bottom: 1.5rem;
    background: rgba(200,147,58,0.08);
}
.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title em {
    display: block;
    color: var(--gold);
    font-size: 0.9em;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(240,230,211,0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240,230,211,0.4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(200,147,58,0.5);
    border-bottom: 2px solid rgba(200,147,58,0.5);
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ── BUTTONS ─────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Crimson Text', serif;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,147,58,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(240,230,211,0.4);
}
.btn-outline:hover {
    border-color: var(--cream);
    background: rgba(240,230,211,0.08);
}
.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(240,230,211,0.5);
}
.btn-outline-light:hover {
    background: rgba(240,230,211,0.12);
    border-color: var(--cream);
}
.btn-wa {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}
.btn-wa:hover {
    background: #1fb856;
    border-color: #1fb856;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-pulse { animation: pulse 2.5s infinite; }
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,147,58,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(200,147,58,0); }
}

/* ── SECTION HEADERS ─────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(200,147,58,0.4);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    background: rgba(200,147,58,0.05);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--cream);
}
.section-title.light { color: var(--cream); }

/* ── SERVICES ────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--dark-mid);
    border: 1px solid rgba(200,147,58,0.15);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover {
    border-color: rgba(200,147,58,0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.8rem; }
.service-card p { color: rgba(240,230,211,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-link {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition);
}
.service-link:hover { gap: 0.8rem; }

/* ── WHY US ──────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-desc { color: rgba(240,230,211,0.75); margin-bottom: 2rem; font-size: 1.05rem; }
.stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.why-visual { display: flex; align-items: center; justify-content: center; }
.drum-illustration { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.drum-shape { font-size: 8rem; z-index: 2; animation: drumBeat 2s ease-in-out infinite; }
@keyframes drumBeat { 0%,100%{transform:scale(1) rotate(-3deg)} 50%{transform:scale(1.08) rotate(3deg)} }
.drum-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.2;
    animation: ripple 3s linear infinite;
}
.drum-ring.r1 { width: 180px; height: 180px; border-color: var(--gold); animation-delay: 0s; }
.drum-ring.r2 { width: 230px; height: 230px; border-color: var(--gold); animation-delay: 0.7s; }
.drum-ring.r3 { width: 280px; height: 280px; border-color: var(--gold); animation-delay: 1.4s; }
@keyframes ripple { 0%{opacity:0.3;transform:scale(0.9)} 100%{opacity:0;transform:scale(1.1)} }

/* ── CTA SECTION ─────────────────────── */
.cta-card {
    background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark-warm) 100%);
    border: 1px solid rgba(200,147,58,0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '🥁';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    opacity: 0.05;
    pointer-events: none;
}
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; color: var(--cream); }
.cta-content p { color: rgba(240,230,211,0.7); margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(200,147,58,0.15);
}
.page-title { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--cream); margin: 0.5rem 0; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; }

/* ── GALLERY ─────────────────────────── */
.gallery-grid {
    columns: 3;
    column-gap: 1rem;
}
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 500px) { .gallery-grid { columns: 1; } }
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; display: block; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: white;
    font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-empty {
    text-align: center;
    padding: 5rem 2rem;
}
.empty-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.gallery-empty h3 { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.gallery-empty p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── LIGHTBOX ────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.2s;
    display: block;
}
.lightbox-counter {
    text-align: center;
    margin-top: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ── CONTACT PAGE ────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
    border-radius: var(--radius);
    border: 1px solid rgba(200,147,58,0.2);
    overflow: hidden;
    transition: all var(--transition);
}
.contact-card:hover {
    border-color: rgba(200,147,58,0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.main-card { background: var(--dark-mid); display: flex; align-items: center; gap: 0; }
.contact-card-icon {
    width: 80px;
    min-width: 80px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.phone-icon { background: rgba(200,147,58,0.15); color: var(--gold); }
.wa-icon { background: rgba(37,211,102,0.15); color: #25d366; }
.contact-card-body { padding: 1.5rem; flex: 1; }
.contact-card-body h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 0.3rem; }
.contact-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.contact-btn { margin-top: 0.5rem; }
.info-card { background: var(--dark-mid); padding: 1.5rem; }
.info-items { display: flex; flex-direction: column; gap: 1.2rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-item i { color: var(--gold); font-size: 1.1rem; margin-top: 0.2rem; min-width: 20px; }
.info-item strong { display: block; color: var(--cream); font-size: 0.95rem; }
.info-item span { color: var(--text-muted); font-size: 0.9rem; }
.contact-cta-big {
    background: var(--dark-mid);
    border: 1px solid rgba(200,147,58,0.25);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}
.contact-cta-big h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact-cta-big p { color: rgba(240,230,211,0.7); margin-bottom: 2rem; }
.cta-action-buttons { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.quick-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.qi-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(240,230,211,0.6);
}
.qi-item i { color: var(--gold); font-size: 0.8rem; }

/* ── FAQ ─────────────────────────────── */
.faq-section {
    background: var(--dark-mid);
    border: 1px solid rgba(200,147,58,0.15);
    border-radius: var(--radius);
    padding: 2rem;
}
.faq-section h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid rgba(200,147,58,0.15); border-radius: 10px; overflow: hidden; }
.faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--cream);
    padding: 1rem 1.2rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}
.faq-q:hover { background: rgba(200,147,58,0.06); }
.faq-q i { color: var(--gold); transition: transform 0.3s; min-width: 16px; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.2rem;
    color: rgba(240,230,211,0.7);
    font-size: 0.95rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.2rem 1.2rem; }

/* ── FOOTER ──────────────────────────── */
.footer {
    background: var(--dark-mid);
    border-top: 1px solid rgba(200,147,58,0.2);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.footer h4 { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-phone, .footer-wa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold); }
.footer-wa:hover { color: #25d366; }
.footer-city { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom {
    border-top: 1px solid rgba(200,147,58,0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── WHATSAPP FLOAT ──────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 999;
    transition: all var(--transition);
    animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
    background: #1fb856;
}
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1208;
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid rgba(200,147,58,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: 'Crimson Text', serif;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13,13,13,0.98);
        border-bottom: 1px solid rgba(200,147,58,0.2);
        flex-direction: column;
        padding: 1rem;
        gap: 0.3rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(12px);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu li { width: 100%; }
    .nav-menu a { padding: 0.9rem 1rem; justify-content: center; border-radius: 10px; }
    .hamburger { display: flex; }
    .section-pad { padding: 4rem 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .contact-cta-big { padding: 1.8rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .stats-row { justify-content: center; }
}
