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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

  background: #000;
  padding: 12px 15px;

  position: sticky;
  top: 0;
  z-index: 1000;

  border-radius: 5px;
  cursor: pointer;
}


.brand {
  color: #FFD400;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  padding:15px;
}


.brand #time-hours {
  font-size: 30px;
  color: #FFD400;
  display: block;
  line-height: 1;
  margin-bottom: 4px;

  letter-spacing: 1px;
}

.brand-sub {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}
.brand h1{
  font-size: 20px;
  color: #FFD400;
}
.menu-btn {
  color: #FFD400;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}
.hero-section {
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  height: 200px;
  transition: transform 0.6s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

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

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 8px;
  font-size: clamp(12px, 2.5vw, 18px);

  background: rgba(0,0,0,0.65);
  color: white;
  text-align: center;

  border-radius: 12px;
  box-sizing: border-box;
}
.contact-section {
  padding: 30px 20px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: white;

}
.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #FFD400;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: auto;
}


.contact-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 8px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffd700;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}


.contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  color: #fff;
}


.contact-item span {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* title */
.contact-title {
  grid-column: 2; /* მარჯვნივ გადავა */
  background: rgba(255,255,255,0.05);
  padding: 12px 15px;
  border-radius: 10px;
  font-weight: bold;
}

/*  mobile */
@media (max-width: 600px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-title {
    grid-column: auto;
  }
}

.services-section {
  padding: 40px 20px;
  background: white;
  text-align: center;
  color: black;
}

.services-title {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: bold;
}

.services-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.service-card p {
  font-size: 14px;
  padding: 0 10px 15px;
  color: #555;
}

/*  mobile */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}

.experience-section {
  padding: 40px 20px;
  background: #111;
  text-align: center;
  border-radius: 10px;
}
.experience-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #FFD400;
}
.experience-text {
  font-size: 22px;
  margin-bottom: 30px;
  color: yellow;
}
.experience-item {
  margin: 20px 0;
}

.experience-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #FFD400;
  line-height: 1;
}

.experience-text {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 390px) {
  .experience-number {
    font-size: 32px;
  }

  .experience-text {
    font-size: 18px;
  }
}

.map-section {
  padding: 40px 20px;
  text-align: center;
  background: #f5f5f5;
}
.map-section button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #000;
  color: #FFD400;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
#map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  margin-bottom: 15px;
}
.site-footer {
  background: #000;
  color: #fff;
  padding-top: 30px;
  margin-top: 40px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 25px;

  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand h3 {
  color: #FFD400;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #ddd;
  line-height: 1.4;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #FFD400;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: #bbb;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

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

.menu-btn {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu {
  position: absolute;
  top: 60px;
  right: 10px;
  background: white;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  width: 180px;
  border-radius: 8px;
}

.menu.active {
  display: flex;
}

.menu a {
  padding: 12px;
  cursor: pointer;
  text-decoration: none;
}


@media (min-width: 1024px) {

  .top-header {
    padding: 20px 40px;
  }

  .brand #time-hours {
    font-size: 40px;
  }

  .brand-sub {
    font-size: 20px;
  }


  .slider {
    height: 420px;
  }


  .services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .service-card {
    width: 100%;
    border-radius: 16px;
    transform: scale(1);
    transition: 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
  }

  .service-card img {
    height: 220px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 15px;
  }


  .experience-section {
    padding: 80px 40px;
  }

  .experience-section h2 {
    font-size: 36px;
  }

  .experience-number {
    font-size: 60px;
  }

  .experience-text {
    font-size: 24px;
  }


  .contact-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
  }

  .contact-item {
    font-size: 18px;
    padding: 14px;
  }

 
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
  }

  .footer-brand h3 {
    font-size: 22px;
  }

  
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  background: rgba(228, 59, 59, 0.897);
  color:#f5f5f5;

  font-size: 22px;
  font-weight: bold;
  cursor: pointer;

  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}