/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Georgian', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav {
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.logo-icon {
  animation: pulse 2s infinite;
}

.logo-text {
  color: #F5A623;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F5A623;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #F5A623;
}

.lang-switcher {
  display: flex;
  gap: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
}

.lang-btn {
  color: #cccccc;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: #F5A623;
  background: rgba(245, 166, 35, 0.1);
}

.lang-btn.active {
  color: #F5A623;
  background: rgba(245, 166, 35, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #F5A623;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23F5A623" stroke-width="0.5" opacity="0.1"><rect x="1" y="3" width="15" height="13"/><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"/><circle cx="5.5" cy="18.5" r="2.5"/><circle cx="18.5" cy="18.5" r="2.5"/></svg>') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(17, 17, 17, 0.85) 100%);
}

.hero-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, transparent 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #cccccc;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
}

.btn-primary {
  background: #F5A623;
  color: #0a0a0a;
  border: 2px solid #F5A623;
}

.btn-primary:hover {
  background: #FF8C00;
  border-color: #FF8C00;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #0a0a0a;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #F5A623;
  margin: 20px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid rgba(245, 166, 35, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: #F5A623;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.service-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-description {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
}

/* Why Us Section */
.why-us {
  padding: 100px 0;
  background: #111111;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 30px;
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: #F5A623;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #F5A623 0%, #FF8C00 100%);
  text-align: center;
}

.contact-title {
  font-size: clamp(32px, 5vw, 48px);
  color: #0a0a0a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-subtitle {
  font-size: 18px;
  color: #0a0a0a;
  margin-bottom: 40px;
  opacity: 0.8;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.phone-large {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  color: #0a0a0a;
  transition: all 0.3s ease;
}

.phone-large:hover {
  transform: scale(1.05);
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(10, 10, 10, 0.1);
  border-radius: 30px;
  font-size: 18px;
  color: #0a0a0a;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 166, 35, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #F5A623;
}

.footer-phone-link:hover {
  color: #FF8C00;
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-lang-link {
  color: #cccccc;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-lang-link:hover,
.footer-lang-link.active {
  color: #F5A623;
}

.footer-lang-separator {
  color: #666666;
}

.footer-copyright {
  color: #888888;
  font-size: 14px;
}

/* Floating Phone Button */
.floating-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #F5A623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.floating-phone:hover {
  transform: scale(1.1);
  background: #FF8C00;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .lang-switcher {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .hero-stripe {
    width: 60%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .floating-phone {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
