/* ============================================
   SMART ZUGDIDI — GLOBAL STYLES
   ============================================ */

:root {
    --primary: #0066FF;
    --primary-dark: #0050CC;
    --primary-light: #E8F0FE;
    --accent: #00C853;
    --dark: #0A1628;
    --dark-secondary: #1A2A44;
    --text: #1A2A44;
    --text-secondary: #5A6B82;
    --text-light: #8896A6;
    --bg: #F4F7FC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
    --shadow-md: 0 4px 16px rgba(10,22,40,0.08);
    --shadow-lg: 0 8px 32px rgba(10,22,40,0.12);
    --shadow-xl: 0 16px 48px rgba(10,22,40,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans Georgian', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
}

.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.85rem;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

/* ===== HERO (base) ===== */
.hero {
    position: relative;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text { animation: fadeUp 0.8s ease; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge .pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual card */
.hero-visual { position: relative; animation: fadeUp 0.8s ease 0.2s both; }

.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.hero-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stat:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.hero-stat .stat-icon {
    width: 44px; height: 44px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.hero-stat .stat-num { font-size: 1.5rem; font-weight: 800; color: white; display: block; }
.hero-stat .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 16px rgba(0,102,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,102,255,0.45); }

.btn-outline {
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== CARDS (shared) ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card { composes: card; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.service-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== CONTACT GRID ===== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }

.contact-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.contact-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 4px; }
.contact-card a { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.contact-card a:hover { text-decoration: underline; }

/* ===== REPORT BANNER ===== */
.report-banner {
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.report-banner h3 { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 10px; position: relative; }
.report-banner p { color: rgba(255,255,255,0.6); margin-bottom: 24px; font-size: 0.95rem; position: relative; }
.report-banner .btn { position: relative; }

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 480px;
}

.map-container > div { width: 100%; height: 100%; }

/* ===== TABLE ===== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.data-table { width: 100%; border-collapse: collapse; min-width: 700px; }

.data-table thead th {
    background: var(--dark);
    color: white;
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.data-table thead th:first-child { border-radius: 11px 0 0 0; }
.data-table thead th:last-child { border-radius: 0 11px 0 0; }

.data-table tbody td {
    padding: 14px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--primary-light); }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 50px 24px 25px;
    color: rgba(255,255,255,0.5);
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.15rem;
}

.footer-brand-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.footer-brand-logo span { color: white; }
.footer-brand p { font-size: 0.85rem; margin-top: 12px; color: rgba(255,255,255,0.4); }

.footer-title {
    font-size: 0.8rem; font-weight: 600; color: white;
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links span {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: white; }
.footer-links i { font-size: 0.75rem; }

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: white; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== COLOR UTILITIES ===== */
.bg-blue { background: rgba(0,102,255,0.1); color: #0066FF; }
.bg-green { background: rgba(16,185,129,0.1); color: #10B981; }
.bg-orange { background: rgba(245,158,11,0.1); color: #F59E0B; }
.bg-purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.bg-cyan { background: rgba(6,182,212,0.1); color: #06B6D4; }
.bg-red { background: rgba(239,68,68,0.1); color: #EF4444; }
.bg-teal { background: rgba(0,150,136,0.1); color: #009688; }
.bg-rose { background: rgba(244,63,94,0.1); color: #F43F5E; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 12px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .navbar-links.open { display: flex; }
    .mobile-toggle { display: block; }
    .hero { padding: 120px 16px 60px; }
    .section { padding: 56px 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .map-container { height: 350px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}