/* ============================================================
   0. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --primary: #f2c40d;
  --primary-hover: #eab308;
  --navy: #1c2c4c;
  --bg-light: #f8f8f5;
  --text-900: #1e293b;
  --text-600: #475569;
  --text-500: #64748b;
  --text-400: #94a3b8;
  --text-300: #cbd5e1;
  --border-100: #f1f5f9;
  --border-200: #e2e8f0;
  --bg-slate-50: #f8fafc;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --max-w: 1280px;
  --max-w-4xl: 896px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans Georgian", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  background-color: var(--bg-light);
  color: var(--text-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   2. UTILITY – container
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  color: var(--navy);
  background-color: var(--primary);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  letter-spacing: 0.025em;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

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

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-xl);
}

.btn--lg:hover {
  transform: translateY(-2px);
}

/* ============================================================
   4. MATERIAL SYMBOLS
   ============================================================ */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  display: inline-block;
  line-height: 1;
}

/* ============================================================
   6. HERO BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  background-color: var(--navy);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-banner__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 44, 76, 0.85) 0%,
    rgba(28, 44, 76, 0.7) 100%
  );
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner__title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--transition);
}

.breadcrumb__link:hover {
  color: #fde047;
}

.breadcrumb__sep,
.breadcrumb__current {
  font-size: 0.875rem;
  font-weight: 500;
}

.breadcrumb__sep {
  color: var(--text-400);
}

.breadcrumb__current {
  color: #fff;
}

/* ============================================================
   7. ABOUT CONTENT
   ============================================================ */
.about-content__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
   .about-content__container{
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
   .about-content {
  background-color: #fff;
  padding: 6rem 1.5rem;
}

.about-content__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 767px) {
  .about-content__inner {
    grid-template-columns: 1fr;
  }
}

.about-content__text-section {
  text-align: left;
}

@media (max-width: 767px) {
  .about-content__text-section {
    text-align: center;
  }
}

.about-content__image-section {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-content__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-content__title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2rem;
}

.about-content__text {
  font-size: 1.125rem;
  color: var(--text-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-content__text:last-child {
  margin-bottom: 0;
}

/* ============================================================
   8. STATS SECTION
   ============================================================ */
.stats-section {
  background-color: var(--bg-slate-50);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border-100);
  border-bottom: 1px solid var(--border-100);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat__value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat__label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   9. VALUES
   ============================================================ */
.values {
  background-color: #fff;
  padding: 6rem 1.5rem;
}

.values__title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w-4xl);
  margin: 0 auto;
}

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

.value-card {
  position: relative;
  text-align: center;
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-100);
  background-color: var(--bg-slate-50);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  overflow: hidden;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card__image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.value-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(28, 44, 76, 0.1) 100%
  );
}

.value-card__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  margin: -1.75rem auto 1.5rem;
  border-radius: var(--radius-lg);
  background-color: rgba(28, 44, 76, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background-color var(--transition);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-card__icon-wrap {
  background-color: var(--primary);
}

.value-card__icon {
  font-size: 1.875rem;
}

.value-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding: 0 2rem;
}

.value-card__desc {
  font-size: 0.875rem;
  color: var(--text-600);
  line-height: 1.6;
  padding: 0 2rem 2rem 2rem;
}

/* ============================================================
  10. CTA BAND
   ============================================================ */
.cta {
  background-color: var(--navy);
  padding: 5rem 1.5rem;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta__inner {
    flex-direction: row;
    text-align: left;
  }
}

.cta__title {
  color: #fff;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta__subtitle {
  color: var(--text-400);
  font-size: 1.125rem;
}

.cta .btn--lg {
  flex-shrink: 0;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ============================================================
  11. FOOTER
   ============================================================ */
.footer {
  background-color: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1.2fr;
  }
}

.logo--light .logo__icon {
  color: var(--primary);
}

.logo--light .logo__text {
  color: #fff;
}

.footer__brand-desc {
  margin-top: 1.5rem;
  color: var(--text-400);
  line-height: 1.6;
  max-width: 22rem;
}

.footer__col-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  color: var(--text-400);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--primary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-400);
  font-size: 0.925rem;
  line-height: 1.5;
}

.footer__contact-icon {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--text-500);
}

.footer__socials {
  display: flex;
  gap: 1.5rem;
}

.footer__social {
  font-size: 0.875rem;
  color: var(--text-500);
  transition: color var(--transition);
}

.footer__social:hover {
  color: #fff;
}
