/* ═══════════════════════════════════════════════════════════════
   İzmir 7/24 Market — Premium Purple & Gold Koyu Tema CSS
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-darkest:   #0b0714;
    --bg-dark:      #130c23;
    --bg-card:      #1a1033;
    --bg-card2:     #160e29;
    --bg-border:    #2b1b4d;
    --cyan:         #ffd700; /* Replaced with Gold */
    --cyan-dim:     #d4af37;
    --cyan-pale:    rgba(255,215,0,.08);
    --cyan-glow:    0 0 20px rgba(255,215,0,.4), 0 0 60px rgba(255,215,0,.15);
    --teal:         #ffc857;
    --orange:       #ffb347;
    --orange-glow:  0 0 18px rgba(255,179,71,.5), 0 0 50px rgba(255,179,71,.2);
    --white:        #ffffff;
    --text-main:    #fff8e7;
    --text-dim:     #c4aebd;
    --text-muted:   #8a7386;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.5);
    --shadow-md:    0 6px 24px rgba(0,0,0,.6);
    --shadow-lg:    0 12px 48px rgba(0,0,0,.7);
    --radius:       14px;
    --radius-sm:    8px;
    --radius-lg:    22px;
    --transition:   0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-darkest);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ═══ TOP BAR ════════════════════════════════════════════════════ */
.top-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--bg-border);
    color: var(--text-dim);
    font-size: .8rem;
    font-weight: 500;
    padding: 7px 0;
}
.top-bar .container {
    display: flex; align-items: center;
    justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.top-bar-left { display: flex; align-items: center; gap: 18px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar a {
    color: var(--text-dim); display: flex; align-items: center; gap: 5px;
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--cyan); }

/* Open Now Glow */
.open-now-text {
    display: inline-flex; align-items: center; gap: 6px;
    color: #00ff66; font-weight: 800; letter-spacing: 0.05em;
    animation: openNowPulse 1.5s infinite alternate;
}
.open-now-dot {
    width: 8px; height: 8px; background: #00ff66; border-radius: 50%;
    box-shadow: 0 0 10px #00ff66;
    animation: blink 1s step-end infinite;
}
@keyframes openNowPulse {
    from { text-shadow: 0 0 4px rgba(0,255,102,.4); }
    to { text-shadow: 0 0 12px rgba(0,255,102,1), 0 0 24px rgba(0,255,102,.8); }
}

/* Live Clock */
.live-clock {
    display: flex; align-items: center; gap: 6px;
    color: var(--cyan);
    font-size: .82rem; font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}
.clock-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ═══ HEADER ════════════════════════════════════════════════════ */
.main-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(19,12,35,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-border);
    box-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.header-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 20px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 0 12px rgba(255,215,0,.3)); }

/* Desktop Nav */
.desktop-nav ul { display: flex; align-items: center; gap: 4px; }
.desktop-nav ul li a {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: .88rem; font-weight: 600; color: var(--text-dim);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
    background: var(--cyan-pale); color: var(--cyan);
    box-shadow: inset 0 0 0 1px rgba(255,215,0,.2);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 0;
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius); min-width: 200px; padding: 8px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-8px);
    transition: all var(--transition); z-index: 500;
    box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.dropdown-menu li a {
    display: block !important; padding: 9px 14px !important;
    border-radius: var(--radius-sm) !important;
    font-size: .87rem !important; font-weight: 500 !important;
    color: var(--text-dim) !important;
}
.dropdown-menu li a:hover { background: var(--cyan-pale) !important; color: var(--cyan) !important; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call-header {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #c79e00, #ffea00);
    color: #111; border-radius: 50px;
    font-size: .88rem; font-weight: 800;
    box-shadow: var(--cyan-glow);
    transition: all var(--transition);
    white-space: nowrap;
    animation: glowPulse 2s ease-in-out infinite;
}
.btn-call-header:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 0 30px rgba(255,215,0,.7), 0 0 80px rgba(255,215,0,.2); }
.badge-724 {
    background: rgba(0,0,0,.25);
    color: #111; font-size: .68rem; font-weight: 900; letter-spacing: .06em;
    padding: 2px 7px; border-radius: 20px;
    animation: glowPulseText 1.5s ease-in-out infinite alternate;
    text-shadow: 0 0 8px #fff;
}
@keyframes glowPulse {
    0%,100% { box-shadow: 0 0 20px rgba(255,215,0,.5), 0 0 60px rgba(255,215,0,.2); }
    50%      { box-shadow: 0 0 35px rgba(255,215,0,.8), 0 0 100px rgba(255,215,0,.3); }
}
@keyframes glowPulseText {
    from { text-shadow: 0 0 4px #fff, 0 0 12px rgba(255,215,0,.6); }
    to   { text-shadow: 0 0 10px #fff, 0 0 30px rgba(255,215,0,1); }
}
.call-text-glow {
    animation: callTextGlow 2s ease-in-out infinite alternate;
}
@keyframes callTextGlow {
    from { text-shadow: 0 0 4px rgba(0,0,0,.4); }
    to   { text-shadow: 0 0 14px rgba(255,255,255,1), 0 0 28px rgba(255,215,0,.7); }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.mobile-menu-btn:hover { background: var(--cyan-pale); }
.mobile-menu-btn span {
    display: block; width: 22px; height: 2.5px;
    background: var(--text-dim); border-radius: 2px; transition: all var(--transition);
}
.mobile-nav {
    display: none; background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
    padding: 12px 20px 20px;
    flex-direction: column; gap: 4px;
}
.mobile-nav a {
    display: block; padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: .93rem; font-weight: 600; color: var(--text-dim);
    transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--cyan-pale); color: var(--cyan); }
.mobile-nav.open { display: flex; }
.mobile-nav-divider { height: 1px; background: var(--bg-border); margin: 8px 0; }

/* ═══ HERO ════════════════════════════════════════════════════════ */
.hero-section {
    position: relative; padding: 80px 0 70px; overflow: hidden;
    background: linear-gradient(to bottom, rgba(11,7,20,0.85), rgba(11,7,20,1)), url('../img/izmir-gece.jpg') no-repeat center center/cover;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(255,215,0,.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 60%, rgba(255,200,87,.06) 0%, transparent 55%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: .3;
}
.hero-container {
    display: grid; grid-template-columns: 1fr;
    gap: 48px; align-items: center;
    text-align: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,.1);
    border: 1px solid rgba(255,215,0,.25);
    color: var(--cyan); font-size: .8rem; font-weight: 700;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: pulseDot 1.6s infinite; box-shadow: 0 0 8px var(--cyan); }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900; line-height: 1.12; color: var(--text-main);
    margin-bottom: 20px;
}
.hero-title span { color: var(--cyan); text-shadow: 0 0 30px rgba(255,215,0,.5); }
.hero-desc {
    font-size: 1rem; color: var(--text-dim);
    margin: 0 auto 34px; max-width: 580px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #c79e00, #ffea00);
    color: #111; font-size: .97rem; font-weight: 800;
    border-radius: 50px;
    box-shadow: var(--cyan-glow);
    transition: all var(--transition);
    white-space: nowrap;
    animation: glowPulse 2s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 0 40px rgba(255,215,0,.8), 0 0 100px rgba(255,215,0,.3); }
.btn-whatsapp-hero {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 28px;
    background: #25d366; color: #fff;
    font-size: .97rem; font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(37,211,102,.4);
    transition: all var(--transition); white-space: nowrap;
}
.btn-whatsapp-hero:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 0 30px rgba(37,211,102,.6); }
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 1.8rem; font-weight: 900; color: var(--cyan); text-shadow: 0 0 20px rgba(255,215,0,.4); }
.hero-stat-lbl { font-size: .76rem; color: var(--text-dim); font-weight: 500; }
.hero-stat-sep { width: 1px; height: 44px; background: var(--bg-border); }

/* SEO Kutucuk */
.seo-box {
    margin: 0 auto; max-width: 640px;
    background: var(--bg-card);
    border: 1px solid rgba(255,215,0,.25);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    text-align: left;
    box-shadow: 0 0 30px rgba(255,215,0,.06), var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.seo-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.seo-box-title {
    font-size: .92rem; font-weight: 800; color: var(--cyan);
    margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.seo-box p {
    font-size: .88rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 14px;
}
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-tag {
    background: rgba(255,215,0,.1);
    border: 1px solid rgba(255,215,0,.2);
    color: var(--cyan);
    font-size: .77rem; font-weight: 600;
    padding: 5px 12px; border-radius: 20px;
    transition: all var(--transition);
}
.seo-tag:hover { background: rgba(255,215,0,.2); box-shadow: 0 0 10px rgba(255,215,0,.2); }

/* ═══ MARQUEE (KAYAN YAZI) ═══════════════════════════════════════ */
.marquee-container {
    width: 100%; overflow: hidden; background: #0b0714;
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    padding: 14px 0; display: flex; align-items: center;
}
.marquee-content {
    display: flex; white-space: nowrap; gap: 2rem;
    animation: scroll-marquee 25s linear infinite;
    font-size: .85rem; font-weight: 700; color: var(--text-dim);
}
.marquee-content span { color: var(--text-main); text-shadow: 0 0 10px rgba(255,215,0,.3); }
@keyframes scroll-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══ FEATURES STRIP ═════════════════════════════════════════════ */
.features-strip {
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    padding: 28px 0;
}
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 18px; background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.feature-item:hover {
    border-color: rgba(255,215,0,.35);
    box-shadow: 0 0 20px rgba(255,215,0,.1);
    transform: translateY(-3px);
}
.feature-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--cyan-pale);
    border: 1px solid rgba(255,215,0,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.feature-text strong { display: block; font-size: .87rem; font-weight: 700; color: var(--text-main); }
.feature-text span   { font-size: .77rem; color: var(--text-dim); }

/* ═══ SECTION HEADER ════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--cyan-pale);
    border: 1px solid rgba(255,215,0,.2);
    color: var(--cyan);
    font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-main); line-height: 1.2; margin-bottom: 12px; }
.section-desc { font-size: .95rem; color: var(--text-dim); max-width: 540px; margin: 0 auto; }

/* ═══ CATEGORIES ════════════════════════════════════════════════ */
.categories-section { padding: 70px 0; }
.categories-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.cat-card {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; padding: 28px 18px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; min-height: 150px; text-align: center;
    cursor: default;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--bg-border);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 0 30px rgba(255,215,0,.12); }
.cat-card.c1 { background: linear-gradient(135deg, #221240, #2d1854); }
.cat-card.c2 { background: linear-gradient(135deg, #261545, #331c5c); }
.cat-card.c3 { background: linear-gradient(135deg, #1b0e33, #241345); }
.cat-card.c4 { background: linear-gradient(135deg, #2a174f, #3a206b); }
.cat-card.c5 { background: linear-gradient(135deg, #1f113a, #28164a); }
.cat-card:hover { border-color: rgba(255,215,0,.3); }
.cat-icon { font-size: 2.6rem; line-height: 1; }
.cat-name { font-size: .95rem; font-weight: 700; color: var(--text-main); }
.cat-count { font-size: .76rem; color: var(--text-dim); font-weight: 500; }
.cat-glow { position: absolute; inset: 0; opacity: 0; background: radial-gradient(circle at center, rgba(255,215,0,.1) 0%, transparent 70%); transition: opacity var(--transition); }
.cat-card:hover .cat-glow { opacity: 1; }

/* ═══ HOW IT WORKS ══════════════════════════════════════════════ */
.how-section { padding: 70px 0; background: var(--bg-dark); border-top: 1px solid var(--bg-border); border-bottom: 1px solid var(--bg-border); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
    background: var(--bg-card); border: 1px solid var(--bg-border);
    border-radius: var(--radius-lg); padding: 28px 20px;
    text-align: center; position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,.3); box-shadow: 0 0 24px rgba(255,215,0,.1); }
.step-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #c79e00, #ffea00);
    color: #111; font-size: 1rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 0 16px rgba(255,215,0,.4);
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.step-title { font-size: .97rem; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.step-desc  { font-size: .84rem; color: var(--text-dim); line-height: 1.6; }
.step-arrow { position: absolute; top: 50%; right: -18px; transform: translateY(-50%); font-size: 1.2rem; color: var(--cyan); opacity: .6; z-index: 1; }

/* ═══ SERVICE AREAS ══════════════════════════════════════════════ */
.areas-section { padding: 70px 0; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
    background: var(--bg-card); border: 1px solid var(--bg-border);
    border-radius: var(--radius-lg); padding: 22px 20px;
    transition: all var(--transition);
}
.area-card:hover { border-color: rgba(255,215,0,.3); box-shadow: 0 0 20px rgba(255,215,0,.08); transform: translateY(-3px); }
.area-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.area-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--cyan-pale); border: 1px solid rgba(255,215,0,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.area-name { font-size: 1rem; font-weight: 700; color: var(--text-main); }
.area-list { display: flex; flex-wrap: wrap; gap: 6px; }
.area-tag {
    background: var(--bg-card2); color: var(--text-dim);
    font-size: .76rem; font-weight: 600;
    padding: 4px 10px; border-radius: 20px;
    border: 1px solid var(--bg-border);
    transition: all var(--transition);
}
.area-card:hover .area-tag { background: var(--cyan-pale); color: var(--cyan); border-color: rgba(255,215,0,.25); }

/* ═══ CTA SECTION ════════════════════════════════════════════════ */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0b0714 0%, #150a24 50%, #0b0714 100%);
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,215,0,.06) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(255,200,87,.04) 0%, transparent 55%);
    pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text .cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.cta-text .cta-desc { color: var(--text-dim); font-size: .95rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-phone {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #c79e00, #ffea00);
    color: #111; font-size: 1rem; font-weight: 800;
    border-radius: 50px;
    box-shadow: var(--cyan-glow);
    animation: glowPulse 2s ease-in-out infinite;
    transition: all var(--transition); white-space: nowrap;
}
.btn-cta-phone:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255,215,0,.8), 0 0 100px rgba(255,215,0,.3); }
.btn-cta-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: #25d366; color: #fff;
    font-size: 1rem; font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(37,211,102,.4);
    transition: all var(--transition); white-space: nowrap;
}
.btn-cta-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 0 30px rgba(37,211,102,.6); }

/* ═══ FAQ ════════════════════════════════════════════════════════ */
.faq-section { padding: 70px 0; background: var(--bg-dark); border-top: 1px solid var(--bg-border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--bg-border); overflow: hidden; }
.faq-question {
    width: 100%; text-align: left;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 18px 22px;
    font-size: .95rem; font-weight: 700; color: var(--text-main);
    cursor: pointer; transition: background var(--transition);
}
.faq-question:hover { background: var(--cyan-pale); }
.faq-icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--cyan-pale); color: var(--cyan);
    border: 1px solid rgba(255,215,0,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; flex-shrink: 0; transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--cyan); color: #000; transform: rotate(45deg); box-shadow: 0 0 14px rgba(255,215,0,.5); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: .9rem; color: var(--text-dim); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ═══ FOOTER ════════════════════════════════════════════════════ */
.main-footer { background: var(--bg-dark); border-top: 1px solid var(--bg-border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .footer-logo { height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .86rem; line-height: 1.7; color: var(--text-dim); max-width: 280px; }
.footer-col h4 {
    font-size: .9rem; font-weight: 700; color: var(--text-main);
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--cyan);
    display: inline-block;
    text-shadow: 0 0 12px rgba(255,215,0,.3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .85rem; color: var(--text-dim); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .85rem; }
.footer-contact-icon { font-size: 1.1rem; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-dim); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom {
    border-top: 1px solid var(--bg-border); padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
    font-size: .8rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--cyan); }

/* ═══ FLOATING BUTTONS ═══════════════════════════════════════════ */
.floating-buttons {
    position: fixed; bottom: 28px; right: 24px;
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px; z-index: 900;
}
.float-btn {
    display: flex; align-items: center; border-radius: 50px;
    box-shadow: var(--shadow-lg); transition: all var(--transition); overflow: hidden; cursor: pointer;
}
.float-btn-icon {
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.float-btn-label {
    white-space: nowrap; padding: 0 16px 0 4px;
    font-size: .88rem; font-weight: 700; color: #fff;
    max-width: 0; overflow: hidden;
    transition: max-width 0.35s ease, padding 0.35s ease;
}
.float-btn:hover .float-btn-label { max-width: 160px; padding: 0 16px 0 0; }
.float-btn:hover { transform: translateY(-2px); }
.float-btn-wa { background: #25d366; box-shadow: 0 0 20px rgba(37,211,102,.45); }
.float-btn-wa .float-btn-icon { background: #20bd5a; }
.float-btn-wa:hover { background: #1eab56; box-shadow: 0 0 32px rgba(37,211,102,.7); }
.float-btn-call { background: linear-gradient(135deg, #c79e00, #ffea00); box-shadow: var(--cyan-glow); animation: glowPulse 2s ease-in-out infinite; }
.float-btn-call .float-btn-icon { background: rgba(0,0,0,.2); }
.float-btn-call:hover { box-shadow: 0 0 40px rgba(255,215,0,.8); }
.float-btn-call .float-btn-label { color: #111; } /* Dark text for the call button */

/* ═══ RESPONSIVE ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
    .desktop-nav, .btn-call-header { display: none; }
    .mobile-menu-btn { display: flex; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { text-align: center; justify-content: center; flex-direction: column; }
    .step-arrow { display: none; }
    .seo-box { text-align: center; }
}
@media (max-width: 600px) {
    .top-bar .top-bar-left { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .float-btn-label { display: none; }
    .float-btn { border-radius: 50%; }
    .float-btn-icon { border-radius: 50%; }
}

@keyframes slideInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
