:root {
  --accent: #d4af37;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 100px;
}

[lang="ru"] { --font-heading: 'Cormorant Garamond', serif; --font-body: 'Inter', -apple-system, sans-serif; }
[lang="ka"] { --font-heading: 'Noto Sans Georgian', sans-serif; --font-body: 'Noto Sans Georgian', sans-serif; }
[lang="en"] { --font-heading: 'Playfair Display', serif; --font-body: 'Montserrat', -apple-system, sans-serif; }

[data-theme="dark"] {
  --bg: #050505; --bg-elevated: #111111;
  --surface: rgba(255,255,255,0.03); --surface-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08); --border-light: rgba(255,255,255,0.15);
  --text: #ffffff; --text-soft: #a0a0a0; --text-muted: #666666;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.3); --shadow-md: 0 10px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(212,175,55,0.3);
}
[data-theme="light"] {
  --bg: #fafaf8; --bg-elevated: #ffffff;
  --surface: rgba(0,0,0,0.02); --surface-hover: rgba(0,0,0,0.04);
  --border: rgba(0,0,0,0.06); --border-light: rgba(0,0,0,0.12);
  --text: #1a1a1a; --text-soft: #555555; --text-muted: #888888;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06); --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(212,175,55,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; transition: background 0.5s, color 0.5s; }
html { scroll-behavior: smooth; }

.bg-shapes { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; animation: floatShape 25s infinite ease-in-out alternate; }
.shape:nth-child(1) { width: 600px; height: 600px; background: var(--accent); top: -20%; left: -10%; }
.shape:nth-child(2) { width: 500px; height: 500px; background: #2a2a2a; bottom: -10%; right: -10%; animation-delay: -5s; }
.shape:nth-child(3) { width: 400px; height: 400px; background: var(--accent); top: 40%; left: 30%; animation-delay: -10s; opacity: 0.08; }
@keyframes floatShape { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-30px) scale(1.1); } 100% { transform: translate(-30px,50px) scale(0.9); } }

.main-content { position: relative; z-index: 1; }

.theme-toggle { background: var(--surface); border: 1px solid var(--border); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--text-soft); transition: all 0.3s; }
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(180deg, var(--bg) 0%, transparent 100%); padding: 1.5rem 0; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.navbar.scrolled { padding: 1rem 0; background: var(--bg-elevated); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); opacity: 0.95; }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; letter-spacing: 3px; color: var(--text); text-decoration: none; white-space: nowrap; text-transform: uppercase; }
.logo span { color: var(--accent); font-style: italic; font-weight: 400; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-soft); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--text); } .nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.lang-switch { display: flex; gap: 4px; background: var(--surface); padding: 4px; border-radius: var(--radius-pill); border: 1px solid var(--border); }
.lang-btn { background: transparent; border: none; color: var(--text-soft); padding: 0.4rem 0.8rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.lang-btn.active { background: var(--accent); color: #050505; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--text); transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger.active span:nth-child(2) { opacity: 0; } .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: var(--bg); opacity: 0; transition: opacity 0.4s ease; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.active { display: flex; opacity: 1; }
.mobile-menu a { text-decoration: none; color: var(--text); font-family: var(--font-heading); font-size: 2.2rem; font-weight: 500; letter-spacing: 2px; transition: color 0.3s; text-transform: uppercase; }
.mobile-menu a:hover { color: var(--accent); font-style: italic; }
.mobile-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--text); cursor: pointer; transition: all 0.3s; z-index: 1002; }
.mobile-close:hover { background: var(--accent); color: #050505; border-color: var(--accent); }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 0 5%; overflow: hidden; }
.hero-video-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-video-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 50%, var(--bg) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 30%, transparent 80%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; margin-top: 5vh; }
.hero-badge { display: inline-block; background: var(--surface); color: var(--accent); padding: 0.5rem 1.2rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2rem; border: 1px solid var(--border-light); backdrop-filter: blur(10px); }
.hero-content h1 { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 600; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -1px; color: var(--text); }
.hero-content h1 .highlight { color: var(--accent); font-style: italic; font-weight: 400; }
.hero-content p { font-size: 1.15rem; color: var(--text-soft); margin-bottom: 2.5rem; max-width: 500px; line-height: 1.6; font-weight: 300; }
.btn-primary { display: inline-flex; align-items: center; gap: 1rem; background: var(--accent); color: #050505; padding: 1rem 2.5rem; border-radius: var(--radius-pill); text-decoration: none; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); border: 1px solid transparent; }
.btn-primary:hover { background: transparent; color: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-primary .arrow { transition: transform 0.3s; } .btn-primary:hover .arrow { transform: translateX(6px); }
.scroll-hint { position: absolute; bottom: 40px; left: 5%; display: flex; align-items: center; gap: 15px; color: var(--text-soft); font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; z-index: 2; }
.scroll-line { width: 50px; height: 1px; background: var(--text-soft); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--accent); transform: translateX(-100%); animation: scrollLineAnim 2s infinite; }
@keyframes scrollLineAnim { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }

section { padding: 8rem 5%; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }
.section-label { font-size: 0.75rem; letter-spacing: 5px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--accent); }
.section-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 500; margin-bottom: 4rem; line-height: 1.1; text-align: center; }

.about-wrapper { display: flex; flex-direction: column; gap: 2rem; }
.about-text-block { background: var(--surface); border-radius: var(--radius-md); padding: 2.5rem; border: 1px solid var(--border); backdrop-filter: blur(20px); transition: all 0.4s; }
.about-text-block:hover { border-color: var(--border-light); background: var(--surface-hover); }
.about-text-block p { font-size: 1rem; color: var(--text-soft); margin-bottom: 1rem; }
.about-text-block p strong { color: var(--text); font-weight: 600; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.4s; }
.stat-box:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 600; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.7rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 2px; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; perspective: 1000px; }
.project-card { text-decoration: none; color: inherit; display: block; background: var(--bg-elevated); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: transform 0.1s ease-out, box-shadow 0.4s, border-color 0.4s; cursor: pointer; transform-style: preserve-3d; position: relative; }
.project-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-light); }
.card-image-wrapper { overflow: hidden; height: 280px; position: relative; }
.card-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); filter: brightness(0.85); }
.project-card:hover .card-image { transform: scale(1.08); filter: brightness(1); }
.card-body { padding: 1.8rem; position: relative; z-index: 1; background: var(--bg-elevated); }
.card-tag { display: inline-block; border: 1px solid var(--accent); color: var(--accent); padding: 0.25rem 0.8rem; border-radius: var(--radius-pill); font-size: 0.6rem; font-weight: 600; letter-spacing: 2px; margin-bottom: 1rem; text-transform: uppercase; }
.card-body h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 500; }
.card-body p { color: var(--text-soft); font-size: 0.85rem; line-height: 1.5; }
.project-card::before { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(800px circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(255,255,255,0.06), transparent 40%); opacity: 0; transition: opacity 0.3s; }
.project-card:hover::before { opacity: 1; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card { background: var(--surface); border-radius: var(--radius-md); padding: 3rem 2rem; border: 1px solid var(--border); transition: all 0.4s; position: relative; overflow: hidden; text-align: center; }
.why-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.why-card:hover { background: var(--surface-hover); transform: translateY(-10px); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { width: 70px; height: 70px; border-radius: 50%; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.8rem; color: var(--accent); transition: all 0.4s; }
.why-card:hover .why-icon { background: var(--accent); color: #050505; border-color: var(--accent); box-shadow: var(--shadow-glow); transform: scale(1.1); }
.why-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 500; margin-bottom: 0.8rem; }
.why-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.5; }

.cta-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%); border-radius: var(--radius-lg); padding: 6rem 3rem; text-align: center; margin: 0 auto; max-width: 1400px; border: 1px solid var(--border); }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, var(--accent) 0%, transparent 50%); opacity: 0.03; animation: ctaGlow 8s infinite ease-in-out; }
@keyframes ctaGlow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(5%,-3%); } }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; font-weight: 500; }
.cta-content p { color: var(--text-soft); margin-bottom: 3rem; font-size: 1.1rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-btn { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--surface); color: var(--text); padding: 1rem 2rem; border-radius: var(--radius-pill); text-decoration: none; font-weight: 500; font-size: 0.9rem; border: 1px solid var(--border-light); transition: all 0.35s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden; }
.cta-btn::before { content: ''; position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); z-index: -1; border-radius: var(--radius-pill); }
.cta-btn:hover { color: #050505; border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.cta-btn:hover::before { transform: scaleX(1); }
.cta-btn.accent { background: var(--accent); border-color: var(--accent); color: #050505; font-weight: 600; }
.cta-btn.accent:hover { background: transparent; color: var(--accent); }
.cta-btn.accent::before { background: var(--bg); }
.contact-info-line { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.contact-info-item { display: flex; align-items: center; gap: 0.6rem; color: var(--text-soft); font-size: 0.9rem; transition: color 0.3s; text-decoration: none; cursor: pointer; background: none; border: none; font-family: inherit; }
.contact-info-item:hover { color: var(--accent); }
.contact-info-icon { font-size: 1.2rem; color: var(--accent); }

/* Contact Form Modal */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 3rem 2.5rem; max-width: 500px; width: 90%; position: relative; box-shadow: var(--shadow-md); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.modal-close:hover { background: var(--accent); color: #050505; border-color: var(--accent); }
.modal h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 0.5rem; font-weight: 500; }
.modal p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-soft); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.9rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--text); font-size: 0.9rem; font-family: var(--font-body); transition: all 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.form-group textarea { border-radius: var(--radius-sm); resize: vertical; min-height: 100px; }
.form-group select option { background-color: var(--bg-elevated); color: var(--text); }

.btn-submit { width: 100%; padding: 1rem; background: var(--accent); color: #050505; border: none; border-radius: var(--radius-pill); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); }
.btn-submit:hover { background: transparent; color: var(--accent); box-shadow: var(--shadow-glow); border: 1px solid var(--accent); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.floating-contact { position: fixed; bottom: 30px; right: 30px; z-index: 998; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; font-size: 1.5rem; box-shadow: var(--shadow-md); transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); }
.float-btn:hover { transform: scale(1.1) rotate(5deg); }
.float-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.float-btn.telegram { background: linear-gradient(135deg, #0088cc, #005580); }

footer { border-top: 1px solid var(--border); background: var(--bg-elevated); padding: 4rem 5% 2rem; margin-top: 4rem; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 3rem; }
.footer-brand { max-width: 300px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 3px; color: var(--text); margin-bottom: 0.8rem; }
.footer-logo span { color: var(--accent); font-style: italic; font-weight: 400; }
.footer-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 { color: var(--text); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; margin-bottom: 0.5rem; text-transform: uppercase; position: relative; padding-bottom: 0.8rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 20px; height: 1px; background: var(--accent); transition: width 0.3s ease; }
.footer-col:hover h4::after { width: 100%; }

/* --- განახლებული პრემიუმ ხაზის ეფექტი Footer-ის ლინკებისთვის --- */
.footer-col a { text-decoration: none; color: var(--text-soft); font-size: 0.85rem; transition: all 0.3s; position: relative; padding-left: 0; }
.footer-col a:hover { color: var(--accent); padding-left: 20px; }
.footer-col a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0; height: 1px; background-color: var(--accent); transition: all 0.3s; opacity: 0; }
.footer-col a:hover::before { width: 12px; opacity: 1; }

.footer-bottom { max-width: 1400px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }
.author-link { color: var(--accent); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.author-link:hover { opacity: 0.8; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) { 
  .stats-grid, .why-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); } 
  .footer-links { gap: 2rem; } 
  .stats-grid .stat-box:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .lang-switch, .theme-toggle { display: none; } .hamburger { display: flex; } .nav-inner { padding: 0 1.2rem; } .logo { font-size: 1.5rem; }
  section { padding: 5rem 1.2rem; } .hero { padding: 0 1.2rem; } .hero-content { margin-top: 6vh; text-align: center; } .hero-content h1 { font-size: 2.4rem; } .hero-content p { font-size: 0.95rem; max-width: 100%; } .hero-badge { margin-left: auto; margin-right: auto; } .btn-primary { margin: 0 auto; } .scroll-hint { left: 50%; transform: translateX(-50%); }
  .section-title { text-align: center; font-size: 1.8rem; margin-bottom: 2.5rem; } .about-wrapper { gap: 1.5rem; } .about-text-block { padding: 2rem 1.5rem; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; } .stat-box { padding: 1.5rem 1rem; } .stat-number { font-size: 2rem; }
  .projects-grid, .why-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cta-section { padding: 4rem 1.5rem; border-radius: var(--radius-md); margin: 0 0.5rem; } .cta-buttons { flex-direction: column; align-items: center; } .cta-btn { width: 100%; justify-content: center; } .contact-info-line { flex-direction: column; align-items: center; gap: 1rem; }
  .floating-contact { bottom: 16px; right: 16px; gap: 10px; transform: scale(0.85); transform-origin: bottom right; } .footer-inner { flex-direction: column; text-align: center; align-items: center; } .footer-brand { max-width: 100%; } .footer-links { justify-content: center; gap: 2.5rem; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); } .footer-col:hover h4::after { width: 40px; } .footer-col a:hover { padding-left: 0; } .footer-col a::before { display: none; } .footer-bottom { flex-direction: column; text-align: center; } .footer-desc { max-width: 100%; }
}

@media (max-width: 480px) { 
  .hero-content h1 { font-size: 2rem; } .hero-content p { font-size: 0.85rem; } 
  .stats-grid { grid-template-columns: 1fr; } .stats-grid .stat-box:last-child { grid-column: span 1; }
  .stat-number { font-size: 1.6rem; } .card-image-wrapper { height: 220px; } .cta-content h2 { font-size: 1.6rem; } .cta-content p { font-size: 0.95rem; } 
}

/* --- PRELOADER (ჩატვირთვის ეკრანი) --- */
#preloader {
  position: fixed; inset: 0; z-index: 9999; background: #050505;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; letter-spacing: 4px; 
  color: #fff; margin-bottom: 25px; text-transform: uppercase;
  opacity: 0; transform: translateY(20px); 
  animation: fadeUpPreloader 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.preloader-logo span { color: var(--accent); font-style: italic; font-weight: 400; }
.preloader-line { 
  width: 200px; height: 2px; background: rgba(255,255,255,0.1); 
  margin: 0 auto; position: relative; overflow: hidden; border-radius: 2px; 
}
.preloader-progress {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--accent);
  animation: progressAnim 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fadeUpPreloader { to { opacity: 1; transform: translateY(0); } }
@keyframes progressAnim { 0% { width: 0%; } 50% { width: 70%; } 100% { width: 100%; } }

/* --- TEXT REVEAL (უსაფრთხო და პრემიუმ ვერსია) --- */
.title-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(8px);
  transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease-out;
}
.title-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) var(--bg);
}

/* ========================================================================= */
/* --- სპეციალურად ქართული ენის შრიფტის ზომების კორექცია (!important) --- */
/* ========================================================================= */

html[lang="ka"] .hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4rem) !important;
  line-height: 1.2 !important;
}

html[lang="ka"] h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important; 
  line-height: 1.3 !important;
}

html[lang="ka"] .cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
}

@media (max-width: 768px) {
  html[lang="ka"] .hero-content h1 {
    font-size: 2rem !important; 
  }
  html[lang="ka"] h2.section-title, 
  html[lang="ka"] .cta-content h2 {
    font-size: 1.5rem !important;
  }
}
/* გალერეის მოდალის სტილები */
.gallery-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 2100;
}

.gallery-close-btn:hover {
  transform: rotate(90deg);
  color: var(--accent-color, #c5a880); /* თუ გაქვს აქცენტის ფერი კოდში */
}

.gallery-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1100px;
  height: 75vh;
}

.gallery-slide-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slide-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-slide-wrapper img.show {
  opacity: 1;
  transform: scale(1);
}

.gallery-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 44px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  user-select: none;
  margin: 0 20px;
}

.gallery-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.gallery-counter {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-top: 25px;
  letter-spacing: 2px;
}

/* კურსორი მიანიშნებს მომხმარებელს, რომ ქარდი კლიკებადია */
.project-card {
  cursor: pointer;
}

/* მობილურის ოპტიმიზაცია */
@media (max-width: 768px) {
  .gallery-container {
    width: 95%;
    height: 60vh;
  }
  .gallery-nav-btn {
    position: absolute;
    width: 45px;
    height: 45px;
    font-size: 30px;
    margin: 0;
    background: rgba(5, 5, 5, 0.6);
  }
  .prev-btn { left: 10px; z-index: 2050; }
  .next-btn { right: 10px; z-index: 2050; }
  .gallery-close-btn { top: 20px; right: 25px; font-size: 28px; }
}
/* Swiper Container Padding */
.projectsSwiper {
  width: 100%;
  padding-bottom: 60px !important;
  padding-top: 20px;
}

.projectsSwiper .swiper-slide {
  height: auto; 
}

.projectsSwiper .project-card {
  height: 100%;
  margin: 0; 
}

/* Custom Arrows */
.custom-nav-btn {
  color: var(--accent-color, #c5a880) !important;
  top: 50% !important;
  transform: translateY(-50%);
  width: 50px !important;
  height: 50px !important;
  background: rgba(20, 20, 20, 0.7);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.custom-nav-btn:hover {
  background: rgba(20, 20, 20, 0.9);
  border-color: var(--accent-color, #c5a880);
}

.custom-nav-btn::after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color, #c5a880) !important;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .custom-nav-btn {
    display: none !important; 
  }
}





/* =========================================
   PREMIUM OFFERS BANNER (Wide Horizontal)
========================================= */
.premium-offers-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.premium-banner {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}

.premium-banner:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

/* 5 Images Row */
.premium-images-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  height: 380px;
  gap: 4px;
  padding: 4px;
}

.premium-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}

.premium-img-wrap::after {
  content: '🔍';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.premium-img-wrap:hover::after {
  opacity: 1;
}

.premium-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
  filter: brightness(0.8);
}

.premium-img-wrap:hover img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

/* Content */
.premium-content {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.premium-top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5rem;
}

/* 🔥 ანიმირებული ბეჯი */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--accent);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: badgePulse 2.2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.premium-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(212, 175, 55, 0.25) 50%,
    transparent 60%
  );
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2),
                0 0 20px rgba(212, 175, 55, 0.08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.45),
                0 0 35px rgba(212, 175, 55, 0.15);
    transform: scale(1.04);
  }
}

@keyframes badgeShine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.premium-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
}

.premium-subtitle {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 400;
}

.premium-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.premium-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.premium-stat-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.premium-stat-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.premium-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.premium-stat-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* 🔥 მთავარი შესწორება - actions არ გადადის */
.premium-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.premium-growth {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.6rem 1rem;
  background: rgba(212, 175, 55, 0.07);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.18);
  white-space: nowrap;
  flex-shrink: 0;
}

.premium-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
  color: #050505;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.premium-cta-btn:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.premium-cta-btn .arrow {
  transition: transform 0.3s;
}

.premium-cta-btn:hover .arrow {
  transform: translateX(6px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .premium-images-row {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 160px;
    height: auto;
  }

  .premium-img-wrap:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
  .premium-img-wrap:nth-child(2) { grid-column: 2/3; grid-row: 1/2; }
  .premium-img-wrap:nth-child(3) { grid-column: 3/4; grid-row: 1/2; }
  .premium-img-wrap:nth-child(4) { grid-column: 2/3; grid-row: 2/3; }
  .premium-img-wrap:nth-child(5) { grid-column: 3/4; grid-row: 2/3; }

  .premium-content { padding: 2rem; gap: 1.5rem; }
  .premium-bottom-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .premium-offers-section { padding: 3rem 1.2rem; }

  .premium-images-row {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 150px 120px;
    gap: 3px;
    padding: 3px;
  }

  .premium-content { padding: 1.5rem; gap: 1.2rem; }
  .premium-top-row { flex-direction: column; gap: 0.8rem; }
  .premium-title { font-size: 1.6rem; }
  .premium-stats { flex-direction: column; gap: 1rem; }
  
  .premium-actions { 
    flex-direction: column; 
    align-items: stretch; 
    width: 100%; 
  }
  
  .premium-growth {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  
  .premium-cta-btn { 
    width: 100%; 
    justify-content: center; 
  }
}



/* =========================================
   INVESTMENT CALCULATOR
========================================= */
.calculator-section {
  padding: 5rem 5%;
  background: var(--bg);
  position: relative;
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.calculator-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.calculator-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.calculator-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.calculator-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.calculator-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}

.calculator-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.calculator-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.calculator-input-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.calc-input-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 350px;
}

.calc-input-wrap input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  outline: none;
  transition: all 0.3s;
  -moz-appearance: textfield;
}

.calc-input-wrap input::-webkit-outer-spin-button,
.calc-input-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.calc-currency {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  pointer-events: none;
}

.calc-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
  color: #050505;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
  white-space: nowrap;
}

.calc-btn:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Results */
.calc-results {
  margin-top: 2.5rem;
  animation: fadeInUp 0.5s ease;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.calc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.calc-table thead {
  background: var(--surface);
}

.calc-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

.calc-table td {
  padding: 1rem 1.2rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  font-weight: 500;
}

.calc-table tbody tr {
  transition: all 0.3s ease;
}

.calc-table tbody tr:hover {
  background: var(--surface-hover);
}

.calc-table tbody tr:last-child td {
  border-bottom: none;
}

.calc-table .district-name {
  color: var(--text);
  font-weight: 600;
}

.calc-table .roi-value {
  color: #4caf50;
  font-weight: 700;
  font-family: var(--font-heading);
}

.calc-table .roi-highlight {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-heading);
}

.calc-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .calculator-section { padding: 3rem 1.2rem; }
  .calculator-card { padding: 2rem 1.5rem; }
  
  .calculator-input-row {
    flex-direction: column;
  }
  
  .calc-input-wrap {
    max-width: 100%;
    width: 100%;
  }
  
  .calc-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .calc-table th,
  .calc-table td {
    padding: 0.7rem 0.8rem;
    font-size: 0.75rem;
  }
}