/* ========================================
   GAZOMVA.GE — Redesigned Stylesheet
   Nino Mtavruli + Modern Architecture
   ======================================== */

/* ── Georgian Fonts ───────────────────── */
@font-face {
    font-family: 'NinoMtavruli';
    src: url('../fonts/BPGSquareMtavruli.woff') format('woff'),
         url('../fonts/BPGSquareMtavruli.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BPGSquare';
    src: url('../fonts/BPGSuperSquare2013.woff') format('woff'),
         url('../fonts/BPGSuperSquare2013.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BPGBold';
    src: url('../fonts/bold.woff2') format('woff2'),
         url('../fonts/bold.woff') format('woff');
    font-weight: bold;
    font-display: swap;
}

/* ── Variables ────────────────────────── */
:root {
    --primary:    #13547a;
    --primary-dk: #0b3a57;
    --primary-lt: #1a6b9a;
    --accent:     #80d0c7;
    --accent2:    #f0a500;
    --dark:       #0d1b2a;
    --dark2:      #1a2a3a;
    --gray:       #6c757d;
    --light-bg:   #f4f7fa;
    --white:      #ffffff;
    --border:     #e2e8f0;
    --radius:     14px;
    --radius-sm:  8px;
    --shadow:     0 4px 24px rgba(13,27,42,0.10);
    --shadow-lg:  0 12px 48px rgba(13,27,42,0.18);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --font-ka:    'NinoMtavruli', 'BPGSquare', 'Segoe UI', sans-serif;
    --font-main:  'Open Sans', 'BPGSquare', 'Segoe UI', sans-serif;
    --font-head:  'NinoMtavruli', 'Montserrat', 'BPGBold', sans-serif;
}

/* ── Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: #2d3748;
    background: var(--white);
    line-height: 1.75;
    padding-top: 68px;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Prevent text overflow globally */
p, li, td, th, span, label {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-break: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ka);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-lt); }
img { max-width: 100%; height: auto; }
section { padding: 80px 0; }

/* ── Top Info Bar ────────────────────── */
#siteTopbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    height: 36px;
    display: none; /* mobile: hidden */
    transition: transform 0.35s ease, opacity 0.35s ease;
}

#siteTopbar.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

#siteTopbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.topbar-item i { color: var(--accent); font-size: 0.78rem; }
.topbar-item:hover, a.topbar-item:hover { color: var(--accent); }

/* ── Navbar ──────────────────────────── */
#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;    /* will be moved down by JS when topbar visible */
    z-index: 1040;
    background: linear-gradient(90deg, var(--dark) 0%, var(--primary-dk) 100%);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: top 0.35s ease, background 0.35s ease, padding 0.3s ease;
}

#mainNav.scrolled {
    background: rgba(11,58,87,0.97);
    backdrop-filter: blur(14px);
    padding: 6px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Desktop: push navbar below topbar */
@media (min-width: 992px) {
    #siteTopbar { display: block; }
    body { padding-top: calc(36px + 62px); }
    #mainNav { top: 36px; }
    #mainNav.scrolled { top: 0; }
}

/* Mobile */
@media (max-width: 991px) {
    body { padding-top: 62px; }
    #mainNav { top: 0; }
}

/* Navbar brand — ALWAYS LEFT */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
}

.navbar-brand img { height: 40px; border-radius: 8px; }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
    overflow: hidden;
}

.brand-name {
    font-family: var(--font-ka);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-sub {
    font-size: 0.58rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Toggler */
.navbar-toggler {
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 5px 9px;
    width: 40px;
    height: 36px;
    flex-shrink: 0;
    margin-left: 4px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile phone icon in navbar */
.topbar-mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1.5px solid rgba(128,208,199,0.4);
    background: rgba(128,208,199,0.1);
    transition: var(--transition);
    flex-shrink: 0;
}
.topbar-mobile-icon:hover {
    color: var(--accent);
    background: rgba(128,208,199,0.2);
    border-color: var(--accent);
}

/* Mobile nav collapse */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark2);
        border-radius: var(--radius-sm);
        padding: 10px;
        margin-top: 8px;
        border: 1px solid rgba(255,255,255,0.08);
    }
    .nav-actions { padding: 8px 4px 4px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 4px; }
}

/* Nav links */
.nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-family: var(--font-ka);
    font-size: 0.83rem;
    font-weight: 600;
    padding: 7px 12px !important;
    border-radius: 7px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: rgba(255,255,255,0.12);
}

.nav-link.active { border-bottom: 2px solid var(--accent); }

/* Right action buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent) !important;
    font-family: var(--font-ka);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 12px;
    border: 1.5px solid rgba(128,208,199,0.4);
    border-radius: 20px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-phone-btn:hover {
    background: rgba(128,208,199,0.15);
    border-color: var(--accent);
}

.nav-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent2);
    color: var(--dark) !important;
    font-family: var(--font-ka);
    font-size: 0.83rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-order-btn:hover {
    background: #e09400;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(240,165,0,0.4);
}

/* Lang switch */
.lang-switch {
    background: rgba(255,255,255,0.1);
    color: var(--white) !important;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255,255,255,0.22);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-switch:hover { background: rgba(255,255,255,0.22); }

/* ── Hero ────────────────────────────── */
.hero-section {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

/* ── Hero Slider ─────────────────────── */
/* ── Hero static background ──────────── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(135deg, rgba(11,58,87,0.92) 0%, rgba(19,84,122,0.82) 50%, rgba(0,0,0,0.7) 100%),
        url('../images/businesswoman-using-tablet-analysis.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ── Card Slider (inside hero-card) ──── */
.card-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--dark2);
}

.card-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.card-slide.active { opacity: 1; }

.card-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.card-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    outline: none;
}

.card-dot.active {
    background: var(--accent);
    width: 22px;
    border-radius: 4px;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.hero-section h1 {
    font-family: var(--font-ka);
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-section h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-family: var(--font-ka);
}

.hero-badge i { color: var(--accent); }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent2);
    color: var(--dark) !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-ka);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(240,165,0,0.35);
}

.btn-hero-primary:hover {
    background: #e09400;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(240,165,0,0.45);
}

.btn-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-phone:hover {
    background: rgba(255,255,255,0.22);
    border-color: var(--accent);
    color: var(--accent) !important;
}

/* Hero Image Card */
.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    opacity: 0.9;
}

.hero-stats-row {
    display: flex;
    gap: 0;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
    font-family: var(--font-ka);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
    font-family: var(--font-ka);
}

/* ── Scroll indicator ────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    letter-spacing: 2px;
}
@media (max-width: 767px) { .scroll-indicator { display: none; } }

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Buttons ─────────────────────────── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ka);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dk);
    border-color: var(--primary-dk);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19,84,122,0.3);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ka);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── Section Titles ──────────────────── */
.section-title {
    text-align: center;
    margin-bottom: 52px;
}

.section-title .pre-label {
    display: inline-block;
    font-family: var(--font-ka);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(19,84,122,0.08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: var(--font-ka);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.98rem;
}

.section-title .line {
    width: 52px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ── Page Header ─────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-family: var(--font-ka); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.breadcrumb-item a { color: rgba(255,255,255,0.65); }
.breadcrumb-item.active { color: var(--white); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Featured Overlay Block ──────────── */
.featured-block {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 420px;
}
.featured-block img { width: 100%; height: 100%; object-fit: cover; }
.featured-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--white);
}
.featured-overlay h5 { font-family: var(--font-ka); font-size: 1.2rem; margin-bottom: 8px; }
.featured-overlay p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 14px; }

/* ── Service Cards ───────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(19,84,122,0.3);
}

.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(19,84,122,0.25);
}

.service-card h5 {
    font-family: var(--font-ka);
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p { color: var(--gray); font-size: 0.88rem; flex: 1; }

.service-card-link {
    color: var(--primary);
    font-family: var(--font-ka);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ── Steps ───────────────────────────── */
.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step-num {
    font-family: var(--font-ka);
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h5 { font-family: var(--font-ka); color: var(--primary); margin-bottom: 10px; font-size: 1rem; }
.step-card p { color: var(--gray); font-size: 0.88rem; margin: 0; }

/* ── Values ──────────────────────────── */
.value-card {
    text-align: center;
    padding: 36px 22px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.value-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(19,84,122,0.25);
}

.value-card h5 { font-family: var(--font-ka); color: var(--dark); margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 0.88rem; margin: 0; }

/* ── Stats ───────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-item { text-align: center; padding: 36px 20px; position: relative; }
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-num {
    font-family: var(--font-ka);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-label { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-top: 8px; font-family: var(--font-ka); }

/* ── FAQ ─────────────────────────────── */
.accordion-button {
    font-family: var(--font-ka);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark) !important;
    background: var(--light-bg);
}

.accordion-button:not(.collapsed) {
    background: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after { filter: brightness(10); }

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

/* ── Contact ─────────────────────────── */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-info-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(19,84,122,0.2);
}

.contact-info-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    margin-bottom: 3px;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-ka);
}

.contact-info-item a, .contact-info-item p {
    color: var(--dark); font-weight: 700; margin: 0;
    font-size: 0.98rem; font-family: var(--font-ka);
}

.contact-info-item a:hover { color: var(--primary); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font-ka);
    font-size: 0.92rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(19,84,122,0.1);
}

label.form-label {
    font-family: var(--font-ka);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 6px;
}

/* ── Service Features ────────────────── */
.service-features li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark2);
    font-family: var(--font-ka);
    font-size: 0.92rem;
}

.service-features li i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.service-features li:last-child { border-bottom: none; }

/* ── CTA Box ─────────────────────────── */
.cta-box {
    background: linear-gradient(135deg, var(--primary-dk), var(--primary-lt));
    border-radius: var(--radius);
    padding: 48px 40px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-box h4 { font-family: var(--font-ka); margin-bottom: 10px; font-size: 1.5rem; position: relative; }
.cta-box p  { opacity: 0.88; margin-bottom: 24px; position: relative; }

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-ka);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
}

.btn-cta:hover {
    background: var(--accent2);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ── Order Page ──────────────────────── */
.order-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.order-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.order-step-badge {
    width: 32px; height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    margin-right: 10px;
    flex-shrink: 0;
}

.order-info-card {
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    border-radius: var(--radius);
    padding: 32px;
    color: var(--white);
    height: 100%;
}

.order-info-card h4 { font-family: var(--font-ka); margin-bottom: 16px; }
.order-info-card p  { opacity: 0.85; font-size: 0.9rem; }

.order-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.order-info-item:last-child { border-bottom: none; }
.order-info-item i { color: var(--accent); font-size: 1.1rem; }
.order-info-item span { color: rgba(255,255,255,0.85); font-family: var(--font-ka); font-size: 0.92rem; }

/* ── Map ─────────────────────────────── */
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 360px; border: none; display: block; }

/* ── Footer ──────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.72);
    padding: 68px 0 32px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
}

.footer-brand span {
    color: var(--white);
    font-family: var(--font-ka);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-desc { font-size: 0.88rem; line-height: 1.75; }

.footer-heading {
    color: var(--white);
    font-family: var(--font-ka);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-family: var(--font-ka);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: 0.75rem; color: var(--accent); }

.footer-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-ka);
}

.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent); }
.footer-contact i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-divider { border-color: rgba(255,255,255,0.08); margin: 40px 0 22px; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-family: var(--font-ka); }

/* ── Back to Top ─────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(19,84,122,0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    font-size: 1.1rem;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dk); color: var(--white); transform: translateY(-3px); }

/* ── Section BG ──────────────────────── */
.section-bg { background: var(--light-bg); }

/* ── Fade Animations ─────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Success/Error Alert ─────────────── */
.alert-success { border-left: 4px solid #198754; border-radius: var(--radius-sm); }
.alert-danger  { border-left: 4px solid #dc3545; border-radius: var(--radius-sm); }

/* ── Floating phone button (mobile) ──── */
.float-call-btn {
    position: fixed;
    bottom: 88px;
    right: 28px;
    background: #25D366;
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2.5s ease infinite;
}
.float-call-btn:hover { background: #1da556; color: var(--white); transform: scale(1.1); }

@keyframes pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ── Gallery ─────────────────────────── */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.gallery-filter-btn {
    padding: 7px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    color: var(--gray);
    font-family: var(--font-ka);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    background: var(--white);
    text-decoration: none;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--light-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(19,84,122,0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: var(--white);
    gap: 8px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.gallery-overlay span {
    font-family: var(--font-ka);
    font-size: 0.82rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    padding: 0 12px;
    text-align: center;
}

/* ── Service Sidebar Fix ─────────────── */
.sidebar-service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--dark2);
    font-family: var(--font-ka);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
    margin-bottom: 8px;
    background: var(--white);
    text-decoration: none;
}

.sidebar-service-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.sidebar-service-link:hover i { color: var(--white) !important; }

.sidebar-service-link i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 14px 20px;
    font-family: var(--font-ka);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card-body { padding: 16px; }

/* ── Service Image Lightbox ─────────── */
.service-img-wrap { }
.service-img-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 0.78rem;
    font-family: var(--font-ka);
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity .3s;
}
.service-img-wrap:hover .service-img-zoom-hint { opacity: 0; }

/* ══════════════════════════════════════
   RESPONSIVE — Mobile First
   ══════════════════════════════════════ */

/* ── 992px and below (tablet/mobile) ── */
@media (max-width: 991px) {
    section { padding: 56px 0; }
    .hero-section { min-height: 75vh; }
    .hero-section h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .btn-hero-primary, .btn-hero-phone { padding: 11px 20px; font-size: 0.92rem; }
    .contact-form-card, .order-card { padding: 24px 18px; }
    .cta-box { padding: 32px 20px; }
    .nav-phone-btn { display: none; }

    /* ── NAVBAR HAMBURGER FIX ─────────── */
    /* wrap=wrap so collapse div drops to next row correctly */
    #mainNav .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
        width: 100%;
    }
    /* Brand: shrinks to make room for phone + lang + toggler (≈140px) */
    .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 140px);
        overflow: hidden;
    }
    .brand-text {
        min-width: 0;
        overflow: hidden;
    }
    .brand-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    /* Mobile icon group: fixed size, never shrinks, always right */
    #mainNav .d-flex.d-lg-none {
        flex: 0 0 auto;
        gap: 6px;
        margin-left: auto;
    }
    /* Toggler: fixed size */
    .navbar-toggler {
        flex: 0 0 40px;
        width: 40px;
        min-width: 40px;
        margin-left: 4px;
    }
    /* Collapse: takes full width row — drops BELOW brand+toggler row */
    .navbar-collapse {
        flex: 0 0 100%;
        width: 100%;
        overflow: visible;
    }
    .navbar-collapse .nav-link {
        white-space: normal;
        word-break: break-word;
    }
    .nav-actions {
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 4px;
    }
    .nav-order-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── 767px and below ─────────────────── */
@media (max-width: 767px) {
    .hero-section { min-height: 68vh; }
    .hero-section h1 { font-size: 1.5rem; }
    .hero-badges { display: none; }
    .hero-card img { height: 200px; }
    .featured-block { height: 240px; }
    .step-num { font-size: 2.2rem; }
    .stat-num { font-size: 2rem; }

    /* Hero stats — 4 items */
    .hero-stat-num   { font-size: 1.05rem; }
    .hero-stat-label { font-size: 0.58rem; }
    .hero-stat       { padding: 12px 5px; }

    /* Stats section — remove vertical dividers */
    .stat-item + .stat-item::before { display: none; }

    /* Cards text overflow */
    .service-card, .step-card, .value-card,
    .sidebar-card, .contact-info-item, .cta-box {
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .footer-links a, .footer-contact li { word-break: break-word; }

    /* Section heading sizes */
    .section-title  { font-size: 1.5rem; }
}

/* ── 480px and below ─────────────────── */
@media (max-width: 480px) {
    body { padding-top: 60px; }
    .hero-section h1 { font-size: 1.3rem; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-hero-primary, .btn-hero-phone { width: 100%; justify-content: center; }
    .float-call-btn { bottom: 82px; right: 16px; width: 46px; height: 46px; font-size: 1.2rem; }
    .back-to-top    { right: 16px; bottom: 22px; width: 40px; height: 40px; }
    .hero-card img  { height: 180px; }
    .order-card, .contact-form-card { padding: 20px 14px; }

    /* Brand smaller */
    .navbar-brand img { height: 34px; }
    .brand-name       { font-size: 0.95rem; }

    /* Lang switch smaller */
    .lang-switch { font-size: 0.7rem; padding: 3px 8px; }
}

/* ── 400px and below ─────────────────── */
@media (max-width: 400px) {
    .navbar-brand { max-width: calc(100% - 125px); }
    .navbar-brand img { height: 30px; }
    /* Shrink phone icon and lang switch to save space */
    .topbar-mobile-icon { font-size: 0.95rem; padding: 3px 5px; }
    .lang-switch { font-size: 0.65rem; padding: 3px 7px; }
    #mainNav .d-flex.d-lg-none { gap: 4px; }
}

/* ── 360px and below ─────────────────── */
@media (max-width: 360px) {
    .hero-section h1 { font-size: 1.1rem; }
    .brand-name      { font-size: 0.85rem; }
    .brand-sub       { display: none; }
    .lang-switch     { font-size: 0.65rem; padding: 3px 6px; }
    /* Toggler right at edge */
    .navbar-toggler  { margin-left: 4px; }
}
