:root {
  --primary: #F26538;
  --secondary: #2F3542;
  --accent: #2ED573;
  --bg: #F8F9FD;
  --surface: #FFFFFF;
  --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.05);
  --shadow-hover: 0 25px 50px -12px rgba(0,0,0,0.1);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { box-sizing: border-box; overflow-x: hidden; }
body { margin: 0; padding: 0; position: relative; }

body {
  font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
  background-color: var(--bg);
  color: var(--secondary);
  overflow-x: hidden;
}

h1, h2, h3, h4, .nav-logo {
  font-family: 'Oswald', 'Noto Sans Georgian', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* --- DECORATIVE BLOBS --- */
.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}
.blob-1 { top: -10%; right: -10%; width: 500px; height: 500px; background: #E1F0FF; border-radius: 50%; }
.blob-2 { bottom: 10%; left: -10%; width: 400px; height: 400px; background: #FFE1E4; border-radius: 50%; }

/* --- NAVIGATION --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary);
  position: relative;
}

.nav-logo::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--primary);
  margin-top: 2px;
}

.lang-switcher {
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  gap: 12px;
}

.lang-btn {
  border: none;
  background: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #796a62;
  cursor: pointer;
  transition: color 0.3s;
  font-size: 0.9rem;
  text-decoration: none;
}

.lang-btn:hover { color: var(--secondary); }
.lang-btn.active { color: var(--primary); }

/* --- HERO SECTION --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  gap: 60px;
  position: relative;
}

/* BADGES STYLE */
.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(46, 213, 115, 0.15);
  color: #219c52;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
}

.badge.dark {
  background: #2F3542;
  color: white;
}

.badge.green {
  background: rgba(46, 213, 115, 0.15);
  color: #219c52;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--secondary);
}

.hero-content p {
  font-size: 1.2rem;
  color: #57606F;
  margin-bottom: 40px;
  max-width: 450px;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  /*height: 600px;*/
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-image-wrapper:hover .hero-image { transform: scale(1.03); }

/* Modern Pill Buttons */
.btn-group { display: flex; gap: 15px; flex-wrap: wrap; }

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.btn-primary {
  background-color: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
}
.btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--secondary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 2px solid #dfe4ea;
}
.btn-secondary:hover {
  background-color: #dfe4ea;
  border-color: #ced6e0;
  transform: translateY(-2px);
}

/* --- BENTO GRID FEATURES --- */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 80px 0 40px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto 100px;
}

.bento-item {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  position: relative;
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.bento-item.large {
  grid-column: span 2;
  background: linear-gradient(135deg, #2F3542 0%, #1e232b 100%);
  color: white;
}

.bento-item.large p { color: #a4b0be; }
.bento-item.large h3 { color: white; }

.bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.icon-box {
  font-size: 2.5rem;
}

.bento-item h3 { font-size: 1.4rem; margin-bottom: 8px; }
.bento-item p { font-size: 1rem; color: #747D8C; line-height: 1.5; }

.sub-text {
  margin-top: 10px;
  font-size: 0.9rem !important;
  color: var(--primary) !important;
  font-weight: 600;
}

/* --- BOOKING BANNER --- */
.booking-section {
  background: var(--surface);
  max-width: 1400px;
  margin: 0 auto 80px;
  border-radius: var(--radius);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.booking-deco {
  z-index: -1;
  position: absolute;
  right: -100px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.15;
}

.booking-text h2 { font-size: 2.5rem; margin-bottom: 10px; }
.booking-text p { color: #747D8C; max-width: 500px; }

/* --- FAQ SECTION --- */
.faq-section {
  max-width: 500px;
  margin: 0 auto 100px;
  padding: 0 5%;
}

.faq-grid {
  /*background: white;*/
  /*padding: 40px;*/
  /*border-radius: var(--radius);*/
  /*box-shadow: var(--shadow-soft);*/
}

.faq-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-link {
  color: #57606F;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.faq-link::before {
  content: '→';
  color: var(--primary);
  font-weight: bold;
}

/* --- FOOTER --- */
footer {
  background: white;
  padding: 60px 5%;
  border-top: 1px solid #f1f2f6;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; }
.footer-col p, .footer-col a {
  display: block;
  color: #747D8C;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }

/* Social Icons */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.social-link svg {
  width: 24px;
  height: 24px;
  fill: #747D8C;
  transition: fill 0.3s;
}
.social-link:hover svg {
  fill: var(--primary);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 40px; min-height: auto; padding-top: 40px; }
  .hero-badges { justify-content: center; }
  .hero-content h1 { font-size: 3rem; }
  .hero-content p { margin: 0 auto 30px; }
  .btn-group { justify-content: center; }
  /*.hero-image-wrapper { height: 400px; }*/
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large { grid-column: span 1; }
  .booking-section { flex-direction: column; text-align: center; gap: 30px; padding: 40px; }
}
