/* ============================================================
   Garagat — Global Styles
   Brand: Navy #030c54, Yellow #fff200, Alexandria font
   ============================================================ */

:root {
  --navy: #030c54;
  --navy-light: #0a1a6b;
  --navy-dark: #020940;
  --yellow: #fff200;
  --yellow-hover: #e6d900;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(3, 12, 84, 0.1);
  --shadow-xl: 0 20px 50px rgba(3, 12, 84, 0.15);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Alexandria', sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--gray-600); }
.section-subtitle {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-500);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.2rem;
}
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}
nav a:hover, nav a.active { color: var(--navy); }
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}
nav a:hover::after, nav a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--navy-light); }
.nav-cta::after { display: none !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a237e 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 242, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 242, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--yellow); }
.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge i { font-size: 1.5rem; color: var(--yellow); }
.hero-badge .num { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.hero-badge .label { font-size: 0.8rem; color: var(--gray-500); }

/* Stats bar */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { padding: 100px 0; }
section:nth-child(even) { background: var(--gray-50); }
.section-header {
  text-align: center;
  margin-bottom: 16px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(3, 12, 84, 0.06);
  color: var(--navy);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(3, 12, 84, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--navy), var(--yellow));
  opacity: 0.3;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(3, 12, 84, 0.2);
}
.step h3 { margin-bottom: 10px; text-align: center; }
.step p { font-size: 0.95rem; text-align: center; max-width: 280px; margin: 0 auto; }

/* ============================================================
   WHY GARAGAT
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-list .check {
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(3, 12, 84, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  margin-top: 2px;
}
.why-list h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-list p { font-size: 0.9rem; }

/* ============================================================
   FOR PARTNERS (CTA)
   ============================================================ */
.partners-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.partners-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 242, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.partners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.partners-cta h2 { color: var(--white); margin-bottom: 16px; }
.partners-cta p { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; margin-bottom: 24px; }
.partners-cta ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.partners-cta li {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}
.partners-cta li i { color: var(--yellow); }
.partner-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.partner-image img { width: 100%; height: 400px; object-fit: cover; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.8; max-width: 300px; }
.footer-brand .logo { margin-bottom: 4px; }
.footer-brand .logo { color: var(--white); }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--yellow); color: var(--navy); }

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255, 255, 255, 0.7); font-size: 1rem; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--gray-800); }
.legal-content a { color: var(--navy); text-decoration: underline; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.value-card i {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-info-card i {
  font-size: 1.3rem;
  color: var(--navy);
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(3, 12, 84, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(3, 12, 84, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .why-grid, .about-grid, .partners-inner, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  .menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-image img { height: 300px; }
}
