/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --color-bg: #0a0e14;
    --color-bg-soft: #111720;
    --color-bg-card: #161e2a;
    --color-accent: #2e6da4;
    --color-accent-light: #5ca0d3;
    --color-accent-glow: rgba(46, 109, 164, 0.18);
    --color-text: #e8edf2;
    --color-text-muted: #7a8fa3;
    --color-border: rgba(255,255,255,0.07);
    --color-phone: #5ca0d3;
    --color-btn-primary: #2e6da4;
    --color-btn-primary-hover: #245a8a;
    --color-btn-secondary: transparent;
    --color-btn-secondary-border: #5ca0d3;
    --color-btn-secondary-hover: rgba(92,160,211,0.12);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --shadow: 0 8px 40px rgba(0,0,0,0.45);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP PHONE BAR ===== */
.top-phone-bar {
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    padding: 10px 0;
}
.top-phone-bar a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-phone);
    letter-spacing: 2px;
    transition: color var(--transition);
}
.top-phone-bar a:hover { color: var(--color-accent-light); }
.top-phone-bar .phone-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10, 14, 20, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.site-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}
.site-logo span { color: #fff; }
.site-nav ul {
    display: flex;
    gap: 32px;
}
.site-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    transition: color var(--transition);
    position: relative;
}
.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 1px;
    background: var(--color-accent-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.site-nav a:hover { color: var(--color-text); }
.site-nav a:hover::after { transform: scaleX(1); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.burger span {
    width: 26px; height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.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); }

/* Mobile nav */
.mobile-nav {
    display: none;
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--color-accent-light); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-btn-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--color-btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,109,164,0.35);
}
.btn-secondary {
    background: var(--color-btn-secondary);
    color: var(--color-accent-light);
    border: 1.5px solid var(--color-btn-secondary-border);
}
.btn-secondary:hover {
    background: var(--color-btn-secondary-hover);
    transform: translateY(-2px);
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('http://xn--80addebc1cgrsg2jpc.xn--p1ai/wp-content/uploads/2026/03/photo_2026-01-29_10-1.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 8, 12, 0.88) 0%,
        rgba(10, 14, 20, 0.72) 60%,
        rgba(61, 139, 110, 0.08) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(61,139,110,0.15);
    border: 1px solid rgba(92,160,211,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-light);
    margin-bottom: 28px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-accent-light);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}
.hero h1 em {
    font-style: normal;
    color: #fff;
}
.hero-desc {
    font-size: 1.05rem;
    color: rgba(232,237,242,0.8);
    margin-bottom: 36px;
    max-width: 560px;
    font-weight: 300;
    line-height: 1.8;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--color-bg-soft); }
.section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent-light);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.section-title em { font-style: normal; color: #fff; }
.section-sub {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.stat-item {
    background: var(--color-bg-card);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: background var(--transition);
}
.stat-item:hover { background: var(--color-bg-soft); }
.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 2px;
    background: var(--color-accent);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-accent-light);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-img {
    position: relative;
}
.about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    filter: brightness(0.9);
}
.about-img::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--color-accent), transparent 60%);
    z-index: -1;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}
.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent-glow);
    border: 1px solid rgba(92,160,211,0.25);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-badge .icon {
    font-size: 1rem;
}
.about-text p {
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* ===== WHO WE HELP ===== */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.help-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.help-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.help-card:hover { border-color: rgba(92,160,211,0.25); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.help-card:hover::before { transform: scaleX(1); }
.help-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
}
.help-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.help-card p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.75; }

/* ===== RESULTS SECTION ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.results-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.results-img:hover { transform: scale(1.02); }
.results-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-bg-card);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    columns: 4;
    column-gap: 12px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.88);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-item::after {
    content: '⊕';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
    background: rgba(46,109,164,0.3);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 28px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
    border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(92,160,211,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== FAQ SECTION ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--color-accent-light); }
.faq-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: all var(--transition);
    color: var(--color-accent-light);
}
.faq-item.open .faq-arrow { background: var(--color-accent); border-color: var(--color-accent); transform: rotate(180deg); color: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
    padding: 0 0 24px;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0d1520 0%, #0a1220 50%, #0a0e14 100%);
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,109,164,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-section .section-sub { margin: 0 auto 40px; max-width: 520px; }
.cta-section .btn-group { justify-content: center; }
.cta-phone {
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.cta-phone a {
    color: var(--color-accent-light);
    font-weight: 600;
    font-size: 1.4rem;
    display: block;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    padding: 48px 0 24px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand .site-logo { font-size: 1.15rem; margin-bottom: 12px; }
.footer-brand p { color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--color-accent-light); }
.footer-phone { font-size: 1.4rem; font-weight: 700; color: var(--color-phone); font-family: var(--font-display); }
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--color-text-muted); }
.footer-legal { font-size: 0.8rem; color: var(--color-text-muted); }

/* ===== FLOATING PHONE BUTTON (Mobile) ===== */
.float-phone {
    display: none;
    position: fixed;
    bottom: 24px; right: 20px;
    z-index: 998;
    background: var(--color-accent);
    color: #fff;
    width: 58px; height: 58px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(46,109,164,0.5);
    animation: float-bounce 3s ease-in-out infinite;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { columns: 3; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .site-nav { display: none; }
    .burger { display: flex; }
    .help-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .float-phone { display: flex; }
    .section { padding: 64px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .top-phone-bar a { font-size: 1.4rem; }
    .gallery-grid { columns: 1; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 28px 20px; }
}

/* ===== SVG ICON FIXES ===== */
.help-icon svg {
    color: var(--color-accent-light);
    display: block;
}
.about-badge svg {
    color: var(--color-accent-light);
    flex-shrink: 0;
}
.btn-call svg {
    flex-shrink: 0;
}
.float-phone svg {
    color: #fff;
}

/* ===== ALL HEADINGS WHITE ===== */
h1, h2, h3, h4, h5, h6 { color: #fff; }
