:root {
  --primary-navy: #0B1D39;
  --accent-red: #FF0000;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --border-color: #e2e8f0;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

body {
  background-color: #ffffff;
  background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
  background-size: 25px 25px;
}

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

.text-red {
  color: var(--accent-red);
}

/* ნავიგაცია */
.navbar {
  background: var(--light-gray);
  border-bottom: 2px solid var(--border-color);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-red);
}

/* მობილურისთვის – ლოგო და დიზაინი */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-links {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-img {
    width: 100px;
    height: auto;
  }

  .hero { padding: 80px 0; }
  .section-title { font-size: 26px; }
  .hero-description {
    max-width: 400px;
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-main, .btn-outline {
    width: 100%;
    max-width: 320px;
  }

  .services, .projects, .contact-simple {
    padding: 60px 0;
  }

  .contact-box {
    padding: 40px 20px;
  }
}

/* ჰერო */
.hero {
  padding: 140px 0;
  text-align: center;
  background: white;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 19px;
  color: #475569;
  max-width: 850px;
  margin: 0 auto 50px;
}

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

/* ღილაკები */
.btn-main,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-main {
  background: var(--primary-navy);
  color: white;
  padding: 18px 36px;
}

.btn-main:hover {
  background: var(--accent-red);
}

.btn-outline {
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
  padding: 16px 34px;
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: white;
}

/* სერვისები */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.service-card {
  padding: 40px 30px;
  background: var(--light-gray);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-red);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 45px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--primary-navy);
}

/* პროექტები */
.projects {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-image {
  height: 240px;
  background-color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-image--empty {
  color: #64748b;
  font-weight: 600;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-navy);
}

.project-content p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* კონტაქტი */
.contact-simple {
  padding: 100px 0;
}

.contact-box {
  background: var(--light-gray);
  padding: 80px 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
}

.contact-details {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  flex: 1;
  min-width: 250px;
}

.label {
  display: block;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.value {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}