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

html,
body {
  font-family: "Noto Sans Georgian", sans-serif;
  background: white;
  color: #2d3e36;
  scroll-behavior: smooth;
}

/* Container Wrapper */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

.header.scrolled {
  background: rgba(45, 62, 54, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  height: 60px;
  object-fit: contain;
}

/* Contact Links */
.contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.contact a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.contact a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #ffc107;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact a:hover {
  color: #ffc107;
  transform: translateY(-3px);
}

.contact a:hover::after {
  transform: scaleX(1);
}

.contact a:hover .contact-icon {
  filter: brightness(0) saturate(100%) invert(76%) sepia(86%) saturate(497%) hue-rotate(359deg) brightness(103%) contrast(101%);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 62, 54, 0.7);
  z-index: 2;
}

.hero-content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-description {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* Hero Phones Container */
.hero-phones {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 28px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
}

.hero-phone-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-phone:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.18);
}

.hero-btn {
  background: #ffc107;
  color: #2d3e36;
  border: none;
  padding: 15px 45px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
}

/* Services Section */
.services {
  padding: 90px 0;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 70px;
  text-transform: uppercase;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* Individual Service Card */
.service {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient Bar on Hover */
.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #ffab00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service:hover::before {
  transform: scaleX(1);
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Number Badge */
.number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffc107, #ffab00);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
}

.service h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.service p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6c64;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact {
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
  }

  .contact-icon {
    width: 16px;
    height: 16px;
  }

  .hero h1 {
    font-size: 21px;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .hero-phones {
    flex-direction: column;
    gap: 12px;
  }

  .hero-phone {
    font-size: 18px;
    padding: 10px 24px;
  }

  .hero-phone-icon {
    width: 22px;
    height: 22px;
  }

  .services {
    padding: 60px 0;
  }

  .services h2 {
    margin-bottom: 50px;
    font-size: 28px;
  }

  .service {
    padding: 32px 28px;
  }

  .email-link {
    display: none !important;
  }
}