/* ===== VARIABLES ===== */
:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #F5F3FF;
    --accent: #06B6D4;
    --accent-warm: #F59E0B;
    --dark: #1E1B4B;
    --dark-secondary: #312E81;
    --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);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Noto Sans Georgian', sans-serif;
    background: var(--bg); color: var(--text);
    line-height: 1.6; overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92); 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;
    text-decoration: none; font-weight: 700; font-size: 1.15rem; color: var(--dark);
}
.navbar-brand .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;
}
.navbar-brand .logo-icon svg { stroke: white; }
.navbar-links { display: flex; align-items: center; gap: 6px; }
.navbar-links a {
    text-decoration: none; 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;
    color: var(--text); cursor: pointer; padding: 8px;
    border-radius: 8px; transition: background 0.2s;
}
.mobile-toggle:hover { background: var(--primary-light); }

/* ===== HERO WITH BACKGROUND IMAGE ===== */
.hero {
    position: relative; padding: 140px 24px 80px; overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=1920&q=80');
    background-size: cover; background-position: center;
    opacity: 0.25;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
    background:
        linear-gradient(165deg, rgba(30,27,75,0.92) 0%, rgba(49,46,129,0.88) 50%, rgba(55,48,163,0.85) 100%),
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139,92,246,0.2), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6,182,212,0.1), transparent);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 80px; background: var(--bg); z-index: 2;
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
    max-width: 1280px; margin: 0 auto; position: relative; z-index: 3;
    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;
    background: rgba(139,92,246,0.15); color: #C4B5FD;
    padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
    margin-bottom: 20px; border: 1px solid rgba(139,92,246,0.25);
}
.hero-badge .pulse-dot {
    width: 8px; height: 8px; background: #C4B5FD;
    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 h1 span {
    background: linear-gradient(135deg, #8B5CF6, #C4B5FD);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.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; }

/* ===== 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; text-decoration: none;
    border: none; cursor: pointer; transition: all 0.3s ease;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 4px 16px rgba(139,92,246,0.35);
}
.btn-primary svg { stroke: white; }
.btn-primary:hover {
    background: var(--primary-dark); transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139,92,246,0.45);
}
.btn-outline {
    background: rgba(255,255,255,0.06); color: white;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline svg { stroke: white; }
.btn-outline:hover {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3);
}

/* ===== HERO VISUAL ===== */
.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: 48px; height: 48px; margin: 0 auto 12px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.hero-stat .stat-icon.purple { background: rgba(139,92,246,0.15); }
.hero-stat .stat-icon.purple svg { stroke: #C4B5FD; }
.hero-stat .stat-icon.cyan { background: rgba(6,182,212,0.15); }
.hero-stat .stat-icon.cyan svg { stroke: #67E8F9; }
.hero-stat .stat-icon.orange { background: rgba(245,158,11,0.15); }
.hero-stat .stat-icon.orange svg { stroke: #FBBF24; }
.hero-stat .stat-icon.green { background: rgba(16,185,129,0.15); }
.hero-stat .stat-icon.green svg { stroke: #6EE7B7; }
.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; }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-container { max-width: 1280px; margin: 0 auto; }
.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-label svg { stroke: var(--primary); }
.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;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.service-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;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.service-icon.purple { background: var(--primary-light); }
.service-icon.purple svg { stroke: var(--primary); }
.service-icon.cyan { background: rgba(6,182,212,0.08); }
.service-icon.cyan svg { stroke: var(--accent); }
.service-icon.orange { background: rgba(245,158,11,0.08); }
.service-icon.orange svg { stroke: var(--accent-warm); }
.service-icon.green { background: rgba(16,185,129,0.08); }
.service-icon.green svg { stroke: #10B981; }
.service-icon.blue { background: rgba(0,102,255,0.08); }
.service-icon.blue svg { stroke: #0066FF; }
.service-icon.rose { background: rgba(244,63,94,0.08); }
.service-icon.rose svg { stroke: #F43F5E; }
.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; }

/* ===== PROJECTS ===== */
.projects-section { background: var(--white); }
.projects-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px;
}
.project-card {
    background: var(--bg); border-radius: var(--radius-lg); padding: 28px;
    border: 1px solid var(--border); transition: all 0.3s ease;
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.project-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.project-title { font-weight: 700; font-size: 1rem; color: var(--dark); }
.project-status { padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }
.project-status.done { background: rgba(16,185,129,0.1); color: #10B981; }
.project-status.progress { background: rgba(139,92,246,0.1); color: var(--primary); }
.project-status.planned { background: rgba(245,158,11,0.1); color: var(--accent-warm); }
.project-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.project-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.project-meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: var(--text-secondary);
}
.project-meta-item svg { stroke: var(--text-light); flex-shrink: 0; }
.progress-bar { width: 100%; height: 6px; background: var(--border); border-radius: 3px; margin-top: 14px; overflow: hidden; }
.progress-bar .fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transition: width 0.8s ease; }

/* ===== MAP ===== */
.map-section { background: var(--white); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 480px; }
#beautify-map { width: 100%; height: 100%; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 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;
    margin: 0 auto 16px;
}
.contact-icon.purple { background: var(--primary-light); }
.contact-icon.purple svg { stroke: var(--primary); }
.contact-icon.cyan { background: rgba(6,182,212,0.08); }
.contact-icon.cyan svg { stroke: var(--accent); }
.contact-icon.orange { background: rgba(245,158,11,0.08); }
.contact-icon.orange svg { stroke: var(--accent-warm); }
.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); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.contact-card a:hover { text-decoration: underline; }
.contact-address { font-size: 0.85rem; color: var(--text); }

/* ===== REPORT BANNER ===== */
.report-banner {
    background: linear-gradient(135deg, var(--dark), var(--dark-secondary));
    border-radius: var(--radius-xl); padding: 48px; text-align: center;
    margin-top: 48px; position: relative; overflow: hidden;
}
.report-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.15), transparent);
}
.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; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.5); text-align: center; padding: 32px 24px; font-size: 0.8rem; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer 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); }