/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #f59e0b;
  --gold2:   #d97706;
  --blue:    #1e3a5f;
  --blue2:   #2563eb;
  --dark:    #0d1117;
  --dark2:   #111827;
  --dark3:   #1f2937;
  --text:    #f1f5f9;
  --muted:   #94a3b8;
  --border:  rgba(255,255,255,0.08);
  --radius:  14px;
  --r-sm:    8px;
  --sans:    'Outfit', sans-serif;
  --body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.logo-icon {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: #111 !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: 50px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  background: rgba(13,17,23,0.97);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(37,99,235,0.1) 0%, transparent 60%),
    linear-gradient(135deg, #0d1117 0%, #111827 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--sans);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-gradient {
  background: linear-gradient(135deg, var(--gold), #fbbf24, var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
}
.stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeUp 0.6s 0.8s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── AD STRIP ──────────────────────────────────────────────────────────────── */
.ad-strip {
  background: #0a0e16;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ad-strip--top { border-top: none; }
.ad-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.6;
}
.ad-placeholder {
  width: 100%;
  max-width: 728px;
  height: 90px;
  background: var(--dark3);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  opacity: 0.5;
}

/* ── SECTIONS ──────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--dark { background: var(--dark2); }
.section--accent {
  background: linear-gradient(135deg, #0f1e35 0%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}
.section--accent::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}
.section-header--light h2 { color: var(--text); }
.section-header--light p { color: rgba(255,255,255,0.6); }

.section-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light { color: var(--gold); }

/* ── SERVICES GRID ─────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
  animation: fadeUp 0.5s var(--delay, 0ms) ease both;
}
.service-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--c);
}
.service-card h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ── ABOUT ─────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual { display: flex; justify-content: center; }
.about-img-card {
  position: relative;
  width: 280px;
  height: 320px;
  background: linear-gradient(135deg, var(--dark3), var(--dark));
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #111;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--sans);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}
.about-badge-card strong { display: block; font-size: 14px; font-weight: 800; }
.about-badge-card span { font-size: 12px; opacity: 0.7; }

.about-text h2 {
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
}
.about-text p strong { color: var(--text); }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-dot {
  width: 10px; height: 10px;
  min-width: 10px;
  background: var(--dc);
  border-radius: 50%;
  margin-top: 6px;
}
.about-feature strong { display: block; font-family: var(--sans); font-size: 15px; margin-bottom: 4px; }
.about-feature p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ── GALLERY ───────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  background: var(--bg);
  border-radius: var(--radius);
  height: 200px;
  background: var(--bg);
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: transform 0.3s;
}
.gallery-item {
  background-color: var(--bg, #1e3a5f);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7));
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item--wide { grid-column: span 2; }
@media (max-width: 480px) { .gallery-item--wide { grid-column: span 1; } }
.gallery-label {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ── WHY US ────────────────────────────────────────────────────────────────── */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .whyus-grid { grid-template-columns: 1fr; } }

.whyus-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s;
}
.whyus-item:hover { border-color: rgba(245,158,11,0.3); }
.whyus-num {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 800;
  color: rgba(245,158,11,0.2);
  margin-bottom: 12px;
  line-height: 1;
}
.whyus-item h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.whyus-item p { font-size: 14px; color: var(--muted); }

/* ── CONTACT ───────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(245,158,11,0.3); }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-card strong {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-card p { font-size: 14px; color: var(--muted); }
.contact-card a { color: var(--text); transition: color 0.2s; }
.contact-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--dark3); }
.form-note { font-size: 13px; color: var(--gold); margin-top: 10px; text-align: center; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  background: #080c12;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 60px 24px 40px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
