/* ============================================================
   МОЙ ДОМ — moidom_taraz
   Dark + Orange Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --bg:        #0D0D0D;
    --bg-2:      #141414;
    --bg-card:   #1A1A1A;
    --bg-card-2: #222222;
    --accent:    #FF6B00;
    --accent-h:  #FF8C00;
    --accent-s:  rgba(255,107,0,.12);
    --white:     #FFFFFF;
    --text:      #E8E8E8;
    --muted:     #888888;
    --border:    rgba(255,255,255,.08);
    --shadow:    0 8px 32px rgba(0,0,0,.5);
    --radius:    12px;
    --radius-lg: 20px;
    --tr:        .3s ease;
    --max-w:     1200px;
    --header-h:  72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ---------- Utilities ---------- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.accent { color: var(--accent); }
.section-tag {
    display: inline-block;
    background: var(--accent-s);
    color: var(--accent);
    border: 1px solid rgba(255,107,0,.3);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Scroll Animations ---------- */
.fade-up, .fade-left, .fade-right {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}
.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: none;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--tr);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,0,.35);
}
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,.45); }

.btn-wa-hero {
    background: rgba(37,211,102,.15);
    color: #25D366;
    border: 1.5px solid #25D366;
}
.btn-wa-hero:hover { background: #25D366; color: #fff; transform: translateY(-2px); }

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--accent-s);
    color: var(--accent);
    border: 1px solid rgba(255,107,0,.3);
    font-size: .875rem;
    font-weight: 600;
    transition: var(--tr);
    margin-top: 6px;
}
.btn-service:hover { background: var(--accent); color: #fff; }

.btn-wa-full {
    flex: 1;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa-full:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-call-full {
    flex: 1;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(255,107,0,.3);
}
.btn-call-full:hover { background: var(--accent-h); transform: translateY(-2px); }

.btn-faq-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 100px;
    background: rgba(37,211,102,.12);
    color: #25D366;
    border: 1px solid rgba(37,211,102,.3);
    font-size: .875rem;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--tr);
}
.btn-faq-wa:hover { background: #25D366; color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background var(--tr), box-shadow var(--tr);
}
.header.scrolled {
    background: rgba(13,13,13,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.header .container {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--white); }
.logo-sub  { font-size: .7rem; color: var(--accent); font-weight: 600; letter-spacing: .05em; }

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav-link {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
    transition: var(--tr);
}
.nav-link:hover { color: var(--accent); background: var(--accent-s); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text);
    font-weight: 600;
    font-size: .9rem;
    transition: var(--tr);
}
.header-phone:hover { color: var(--accent); }
.btn-wa-header {
    background: #25D366;
    color: #fff;
    border-radius: 100px;
    padding: 8px 18px;
    font-size: .875rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    transition: var(--tr);
}
.btn-wa-header:hover { background: #1ebe5d; transform: translateY(-1px); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span {
    display: block; width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--tr);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay (mobile) */
.nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 998;
}
.nav-overlay.show { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.65) 60%, rgba(13,13,13,.55) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: var(--header-h); }

.hero-content { max-width: 700px; padding: 80px 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,0,.15);
    border: 1px solid rgba(255,107,0,.4);
    color: var(--accent);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: clamp(.95rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 2px; }
.hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: 1.1rem;
    animation: bounce 2s infinite;
    z-index: 1;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 40px;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}
.stat-sep { width: 1px; height: 56px; background: var(--border); }
.stat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--accent-s);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.stat-body { display: flex; flex-direction: column; }
.stat-num, .stat-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.stat-text { font-size: 1.6rem; color: var(--accent); }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--tr);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: rgba(255,107,0,.4);
    box-shadow: 0 12px 40px rgba(255,107,0,.15);
    transform: translateY(-4px);
}
.service-wide {
    grid-column: 1 / -1;
    flex-direction: row;
}
.service-wide .service-img { width: 380px; flex-shrink: 0; }

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center top;
    position: relative;
}
.service-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
    color: var(--accent);
    border: 1px solid rgba(255,107,0,.4);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
}
.service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.service-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
}
.service-body p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.price-big {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
}
.price-per { font-size: .85rem; color: var(--muted); margin-left: 3px; }
.price-alt { font-size: .8rem; color: var(--muted); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
    padding: 100px 0;
    background: var(--bg-2);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-content { display: flex; flex-direction: column; gap: 0; }
.why-content .section-title { margin-bottom: 12px; text-align: left; }
.why-desc { color: var(--muted); margin-bottom: 36px; line-height: 1.7; }

.advantages { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.adv-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--accent-s);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}
.adv-text { display: flex; flex-direction: column; gap: 2px; }
.adv-text strong { font-size: .95rem; font-weight: 700; color: var(--white); }
.adv-text span   { font-size: .875rem; color: var(--muted); }

.why-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.why-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.why-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--accent);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(255,107,0,.4);
}
.why-badge-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.why-badge-txt { font-size: .75rem; color: rgba(255,255,255,.85); font-weight: 600; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 100px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.g-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.07); }
.g-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--tr);
    color: #fff;
}
.g-overlay i { font-size: 1.5rem; }
.g-overlay span { font-size: .85rem; font-weight: 600; }
.g-item:hover .g-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.open { display: flex; }
.lb-close {
    position: absolute;
    top: 20px; right: 24px;
    color: #fff;
    font-size: 1.8rem;
    opacity: .7;
    transition: var(--tr);
    z-index: 1;
}
.lb-close:hover { opacity: 1; transform: scale(1.1); }
.lb-inner {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
#lb-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lb-cap { color: rgba(255,255,255,.7); font-size: .9rem; text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: 100px 0;
    background: var(--bg-2);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--tr);
}
.faq-item.open { border-color: rgba(255,107,0,.35); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    gap: 12px;
    transition: var(--tr);
}
.faq-q:hover { color: var(--accent); }
.faq-q i {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--tr);
}
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
    display: none;
    padding: 0 24px 20px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.75;
}
.faq-a.open { display: block; }
.faq-a p  { margin-bottom: 10px; }
.faq-a ul { padding-left: 20px; }
.faq-a ul li { list-style: disc; margin-bottom: 4px; }
.faq-a strong { color: var(--text); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--tr);
}
.ci-item:hover { border-color: rgba(255,107,0,.3); }
.ci-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--accent-s);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}
.ci-wa  { background: rgba(37,211,102,.12); color: #25D366; }
.ci-ig  { background: rgba(225,48,108,.12); color: #e1306c; }
.ci-body { display: flex; flex-direction: column; gap: 2px; }
.ci-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.ci-val { font-size: .95rem; color: var(--white); font-weight: 600; transition: var(--tr); }
a.ci-val:hover { color: var(--accent); }

/* Contact card */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: sticky;
    top: 96px;
}
.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.contact-card p { color: var(--muted); font-size: .9rem; margin-bottom: 24px; line-height: 1.6; }
.contact-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.contact-promise {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .82rem;
}
.contact-promise i { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand > p { color: var(--muted); font-size: .875rem; line-height: 1.6; max-width: 300px; }

.footer-socials { display: flex; gap: 10px; }
.fsoc {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    transition: var(--tr);
    border: 1px solid var(--border);
    color: var(--muted);
}
.fsoc:hover { transform: translateY(-3px); }
.fsoc-ig:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.fsoc-wa:hover { background: #25D366; border-color: #25D366; color: #fff; }
.fsoc-ph:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-nav h4, .footer-contacts h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .875rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
    color: var(--muted);
    font-size: .875rem;
    transition: var(--tr);
}
.footer-nav a:hover { color: var(--accent); }

.footer-contacts { display: flex; flex-direction: column; gap: 0; }
.fci {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: .875rem;
}
.fci:last-child { border-bottom: none; }
.fci i { color: var(--accent); width: 16px; text-align: center; flex-shrink: 0; }
.fci a, .fci span { color: var(--muted); transition: var(--tr); }
.fci a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: var(--muted);
    font-size: .82rem;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-ig-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    transition: var(--tr);
}
.footer-ig-link:hover { color: #e1306c; }
.footer-ig-link i { font-size: 1rem; }

/* ============================================================
   FLOAT WHATSAPP BUTTON
   ============================================================ */
.float-wa {
    position: fixed;
    bottom: 32px;
    right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: var(--tr);
    animation: pulse-wa 2.5s infinite;
}
.float-wa:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.float-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0,0,0,.85);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--tr);
}
.float-wa:hover .float-tooltip { opacity: 1; }

@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    /* Header */
    .nav { display: none; }
    .header-phone span { display: none; }
    .burger { display: flex; margin-left: auto; }

    /* Mobile nav */
    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: rgba(13,13,13,.98);
        backdrop-filter: blur(16px);
        padding: 24px 24px 32px;
        gap: 6px;
        border-bottom: 1px solid var(--border);
        z-index: 999;
        animation: slideDown .3s ease;
    }
    @keyframes slideDown {
        from { opacity:0; transform: translateY(-10px); }
        to   { opacity:1; transform: translateY(0); }
    }
    .nav.open .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Services */
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-wide { flex-direction: column; }
    .service-wide .service-img { width: 100%; }

    /* Why us */
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-img-wrap img { height: 360px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { position: static; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    /* Stats */
    .stat-sep { display: none; }
    .stats-grid { gap: 8px; }
    .stat-item { padding: 16px 20px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 580px)
   ============================================================ */
@media (max-width: 580px) {
    :root { --header-h: 64px; }

    .header-actions { display: none; }
    .header-phone   { display: none; }

    .hero-content { padding: 60px 0; }
    .hero-stats   { gap: 16px; }
    .hero-divider { display: none; }

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

    .gallery-grid { grid-template-columns: 1fr; }
    .g-item { aspect-ratio: 16/9; }

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

    .float-wa { width: 52px; height: 52px; font-size: 1.4rem; bottom: 24px; right: 20px; }

    .stats-grid { flex-direction: column; }
    .stat-item  { width: 100%; padding: 16px; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }

    .contact-btns { flex-direction: column; }
    .btn-wa-full, .btn-call-full { flex: none; }
}
