/* ============================================================
   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. CONTACT SECTION
   ============================================================ */
.contact-section {
  background-color: #fff;
  padding: 6rem 1.5rem;
}

.contact-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* ============================================================
   8. CONTACT FORM
   ============================================================ */
.contact-form__title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-form__subtitle {
  font-size: 1rem;
  color: var(--text-600);
  margin-bottom: 2rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-900);
  background-color: #fff;
  border: 1px solid var(--border-200);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242, 196, 13, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   9. CONTACT INFO
   ============================================================ */
.contact-info__title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-info__subtitle {
  font-size: 1rem;
  color: var(--text-600);
  margin-bottom: 2rem;
}

.contact-info__image-wrapper {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

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

.contact-info__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin-bottom: 3rem;
}

@media (max-width: 1023px) {
  .contact-info__list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-info__icon-wrap {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background-color: rgba(28, 44, 76, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.contact-info__icon {
  font-size: 1.5rem;
}

.contact-info__content {
  flex: 1;
}

.contact-info__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-info__text {
  font-size: 1rem;
  color: var(--text-600);
  line-height: 1.6;
}

.contact-info__map {
  width: 100%;
  max-width: var(--max-w-4xl);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--bg-alt);
}

.contact-info__map iframe {
  display: block;
  width: 100%;
}

/* ============================================================
  10. 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;
}
