/*
 * DigitalPicsel – Main Stylesheet
 * ─────────────────────────────────────────────────────────────────
 * To change the colour scheme globally, edit the CSS variables in
 * the :root block below. All colours throughout the site reference
 * these variables, so a single edit updates everything at once.
 *
 * Brand colours (from logo):
 *   Primary red  : #AA0505
 *   Gold accent  : #C9A227
 *   Background   : #080808 (near-black)
 * ─────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════
   1. CSS RESET
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════════
   2. DESIGN TOKENS  ← edit here to retheme the whole site
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* ── Backgrounds (darkest → lightest) */
  --bg-900:    #080808;
  --bg-800:    #0e0e0e;
  --bg-700:    #141414;
  --bg-600:    #1c1c1c;
  --bg-card:   #101010;

  /* ── Borders */
  --border:    rgba(255, 255, 255, 0.07);

  /* ── Brand primary: deep crimson red */
  --accent:       #AA0505;
  --accent-lt:    #cc1a1a;
  --accent-glow:  rgba(170, 5, 5, 0.15);

  /* ── Brand secondary: gold (matches logo tagline) */
  --gold:         #C9A227;
  --gold-lt:      #dbb84a;
  --gold-glow:    rgba(201, 162, 39, 0.12);

  /* ── Functional green (checkmarks, success) */
  --green:     #10b981;

  /* ── Typography */
  --text-100:  #f5f5f5;
  --text-200:  #cccccc;
  --text-400:  #888888;
  --text-600:  #4a4a4a;

  /* ── Spacing & shape */
  --radius:    12px;
  --radius-lg: 20px;

  /* ── Effects */
  --shadow:      0 4px 32px rgba(0, 0, 0, 0.7);
  --transition:  0.25s ease;
}

/* ═══════════════════════════════════════════════════════════════
   3. BASE
   ═══════════════════════════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   4. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Badge chip */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-glow);
  border: 1px solid rgba(170, 5, 5, 0.35);
  color: var(--gold-lt);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
}

/* ── Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(170, 5, 5, 0.4);
}
.btn-primary:hover {
  background: var(--accent-lt);
  box-shadow: 0 0 36px rgba(204, 26, 26, 0.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-200);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: var(--gold-glow);
}

/* ── Section headings */
.section-tag {
  text-align: center;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-100);
  text-align: center;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--text-400);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 14px auto 56px;
}

/* ═══════════════════════════════════════════════════════════════
   5. HEADER / NAV
   ═══════════════════════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
  height: 72px;
}

/* Logo – uses the DigitalPicsel SVG image */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 250px;   /* ← adjust nav logo height here (width scales automatically) */
  width: auto;
  display: block;
}

/* Fallback text logo (shown if image fails to load) */
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-100);
}
.logo-fallback-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(170, 5, 5, 0.5);
}
.logo-fallback span { color: var(--gold-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-400);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-100); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-200);
  font-size: 1.3rem;
  cursor: pointer;
}

/* Mobile slide-down menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-800);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-menu a {
  padding: 10px 0;
  color: var(--text-200);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 12px; }
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════════════════════════
   6. HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 100px;
  text-align: center;
}

/* Radial glow using brand red */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(170, 5, 5, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle dot-grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge { margin-bottom: 24px; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-100);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Gradient text using brand red → gold */
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent-lt), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-400);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-100);
}
.hero-stat em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-400);
}

/* ═══════════════════════════════════════════════════════════════
   7. TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-400);
}
.trust-item i { color: var(--gold); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════════
   8. SECTION BASE
   ═══════════════════════════════════════════════════════════════ */
section { padding: 96px 0; }
section:nth-child(even) { background: var(--bg-800); }

/* ═══════════════════════════════════════════════════════════════
   9. WHY DIGITALPICSEL – Feature Cards
   ═══════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
/* Red→gold top border reveals on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(170, 5, 5, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(170, 5, 5, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-400);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   10. SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card.featured {
  border-color: rgba(170, 5, 5, 0.45);
  background: linear-gradient(145deg, var(--bg-card), rgba(170, 5, 5, 0.05));
}
.service-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(170, 5, 5, 0.35);
}

/* Service icon variants */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.service-icon.red {
  background: linear-gradient(135deg, rgba(170, 5, 5, 0.2), rgba(170, 5, 5, 0.05));
  color: var(--accent-lt);
  border: 1px solid rgba(170, 5, 5, 0.25);
}
.service-icon.gold {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
  color: var(--gold-lt);
  border: 1px solid rgba(201, 162, 39, 0.25);
}
.service-icon.light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--text-200);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-400);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-200);
}
.service-list li i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }

.service-from {
  font-size: 0.8rem;
  color: var(--text-600);
  margin-bottom: 4px;
}
.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-100);
}
.service-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-400);
}

/* ═══════════════════════════════════════════════════════════════
   11. PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(145deg, var(--bg-card), rgba(170, 5, 5, 0.07));
  box-shadow: 0 0 40px rgba(170, 5, 5, 0.15);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card.popular:hover {
  box-shadow: 0 8px 48px rgba(170, 5, 5, 0.25);
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-100);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 700;
}
.plan-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-400);
}
.plan-desc {
  font-size: 0.87rem;
  color: var(--text-400);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-200);
}
.plan-features li i { color: var(--green); font-size: 0.75rem; flex-shrink: 0; }
.plan-features li.muted { color: var(--text-600); }
.plan-features li.muted i { color: var(--text-600); }

/* ═══════════════════════════════════════════════════════════════
   12. COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.comparison-wrapper {
  overflow-x: auto;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--bg-card);
}
thead { background: var(--bg-700); }
thead th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 700;
  color: var(--text-100);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
thead th:first-child { color: var(--text-400); font-weight: 500; }
thead th.ours { color: var(--gold-lt); }
tbody tr {
  border-top: 1px solid var(--border);
  transition: var(--transition);
}
tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
tbody td { padding: 16px 24px; color: var(--text-400); }
tbody td:first-child { color: var(--text-200); font-weight: 500; }
tbody td.ours { color: var(--green); font-weight: 600; }
tbody td .no { color: var(--text-600); }
.check { color: var(--green); }
.cross { color: #ef4444; }

/* ═══════════════════════════════════════════════════════════════
   13. HOW IT WORKS – Steps
   ═══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.step {
  padding: 32px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--accent-glow);
  border: 2px solid rgba(170, 5, 5, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-lt);
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 10px;
}
.step p { font-size: 0.87rem; color: var(--text-400); }

/* ═══════════════════════════════════════════════════════════════
   14. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(170, 5, 5, 0.3);
  transform: translateY(-3px);
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-200);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 0.88rem; font-weight: 700; color: var(--text-100); }
.author-role { font-size: 0.78rem; color: var(--text-400); }

/* ═══════════════════════════════════════════════════════════════
   15. CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--bg-700), var(--bg-600)) !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-100);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--text-400);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   16. FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-100);
  user-select: none;
}
.faq-question:hover { background: rgba(255, 255, 255, 0.03); }
.faq-question i { color: var(--accent); transition: var(--transition); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-400);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ═══════════════════════════════════════════════════════════════
   17. CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 12px;
}
.contact-info p { color: var(--text-400); font-size: 0.92rem; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-200);
  margin-bottom: 14px;
}
.contact-detail i { color: var(--accent); width: 20px; }

.contact-callout {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-400);
}
.contact-callout strong { color: var(--gold-lt); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-400);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-100);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-700); }

/* ═══════════════════════════════════════════════════════════════
   18. FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  padding: 72px 24px 32px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Footer logo */
.footer-logo img {
  height: 200px;   /* ← adjust footer logo height here */
  width: auto;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-400);
  margin-top: 14px;
  line-height: 1.8;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-social a {
  color: var(--text-600);
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { color: var(--gold-lt); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-400);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--text-600);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--text-100); }

.footer-bottom {
  max-width: 1160px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-600); }
.footer-bottom a { color: var(--text-600); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--text-400); }

.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-400);
}
.footer-badge i { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   19. SCROLL FADE-IN ANIMATION
   ═══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   20. RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .hero { padding: 80px 24px 72px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
