/* =========================================
   Spartan Conseil — Main Stylesheet
   Colors: #040c34 (navy) | #ffffff (white) | #c8a84b (gold)
   Font: Questrial
   ========================================= */

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

:root {
  --navy:   #040c34;
  --navy2:  #070b30;
  --white:  #ffffff;
  --gold:   #c8a84b;
  --gray:   #f4f5f8;
  --text:   #1a1a2e;
  --muted:  #6b7a99;
  --radius: 6px;
  --transition: 0.25s ease;
  --max-width: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
}
.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  transform: scaleX(1);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1.5rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  border-radius: 3px;
  opacity: 0.5;
  transition: opacity var(--transition);
  font-size: 1.3rem;
  line-height: 1;
}

.lang-btn.active,
.lang-btn:hover {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--navy2);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-lang {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
}

/* =========================================
   PAGE OFFSET (fixed nav)
   ========================================= */
.page-content { padding-top: 70px; }

/* =========================================
   HERO — HOMEPAGE
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,168,75,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shield {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
}

.hero-shield::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.2);
}

/* =========================================
   TRUSTED BY / TESTIMONIALS
   ========================================= */
.trusted {
  background: var(--gray);
  padding: 4rem 0;
}

.trusted-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(4,12,52,0.07);
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
  flex: 1;
}

.testimonial-card blockquote p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.testimonial-meta strong {
  color: var(--primary);
}

.testimonial-meta a {
  color: var(--muted);
  text-decoration: none;
}

.testimonial-meta a:hover {
  text-decoration: underline;
}

/* =========================================
   SERVICES OVERVIEW
   ========================================= */
.services-overview { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--muted);
  margin-top: 0.75rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4,12,52,0.1);
  border-color: rgba(200,168,75,0.3);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =========================================
   WHY SPARTAN
   ========================================= */
.why-spartan {
  background: var(--navy);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content p {
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.why-items { display: flex; flex-direction: column; gap: 1.25rem; }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.why-item-text span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-points {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.why-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-points li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
}
.why-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--gray); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author strong { display: block; }
.testimonial-author span { font-size: 0.85rem; color: var(--muted); }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1550 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy2);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--gold); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* =========================================
   SERVICES PAGE
   ========================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid #eee;
}

.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.service-detail h3 { margin-bottom: 0.75rem; }
.service-detail p { color: var(--muted); margin-bottom: 1rem; }

.service-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-detail ul li::before {
  content: '✓ ';
  color: var(--gold);
  font-weight: 700;
}

.service-detail-visual {
  background: var(--gray);
  border-radius: 12px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 1px solid #e0e4f0;
}

/* Methodology */
.methodology { background: var(--gray); }

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  counter-reset: steps;
}

.method-step {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
  counter-increment: steps;
  position: relative;
}

.method-step::before {
  content: counter(steps);
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  margin: 0 auto 0.75rem;
  font-size: 0.9rem;
}

.method-step h4 { margin-bottom: 0.4rem; }
.method-step p { font-size: 0.85rem; color: var(--muted); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-visual {
  border-radius: 12px;
  overflow: hidden;
  height: 360px;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-story-text h2 { margin-bottom: 1rem; }
.about-story-text p { color: var(--muted); margin-bottom: 1rem; }

/* Values */
.values { background: var(--navy); color: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--gold); margin-bottom: 0.5rem; }
.value-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  background: var(--gray);
  border-radius: 10px;
  padding: 2rem;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}

.team-card h3 { margin-bottom: 0.2rem; }
.team-card .role { color: var(--gold); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.6rem; }
.team-card p { color: var(--muted); font-size: 0.88rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4,12,52,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong { display: block; font-size: 0.85rem; margin-bottom: 0.1rem; }
.contact-detail-text span { color: var(--muted); font-size: 0.9rem; }

.contact-form {
  background: var(--gray);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d0d5e8;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-placeholder {
  background: var(--gray);
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--muted);
  border: 1px dashed #c8cde8;
  margin-top: 3rem;
  flex-direction: column;
  gap: 0.5rem;
}

.map-placeholder span { font-size: 0.9rem; }

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid #d0d5e8;
  background: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8ebf5;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4,12,52,0.1);
}

.blog-card-img {
  background: var(--gray);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid #e8ebf5;
}

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(4,12,52,0.08);
  color: var(--navy);
}

.blog-date { font-size: 0.8rem; color: var(--muted); }

.blog-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.blog-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.read-more {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.5rem; }

/* Newsletter */
.newsletter {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h3 { margin-bottom: 0.25rem; }
.newsletter-text p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  min-width: 240px;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .why-grid,
  .about-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual { display: none; }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail.reverse { direction: ltr; }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .why-stats { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .why-stats { grid-template-columns: 1fr; }
}
