/* =====================================================
   SCS Digital Marketing – style.css
   ===================================================== */

/* ── 1. RESET & BASE ─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #ff2b38;
  --red-dark: #cc0000;
  --red-light: #ff4444;
  --red-glow: rgba(204, 0, 0, 0.25);
  --dark: #1d1d1d;
  --dark-2: #161616;
  --dark-3: #1f1f1f;
  --dark-4: #2a2a2a;
  --mid: #3a3a3a;
  --light-grey: #888;
  --off-white: #f5f5f5;
  --white: #ffffff;
  --font-main: 'Poppins', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --nav-h: 100px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── 2. UTILITIES ────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.text-red {
  color: var(--red);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.2);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-grey);
  max-width: 520px;
  margin: 0 auto;
}

/* ── 3. BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-nav {
  background: linear-gradient(135deg, #CC0000, #ff4444);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.3);
}

.btn-nav:hover {
  background: linear-gradient(135deg, #aa0000, #CC0000);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(204, 0, 0, 0.45);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── 4. NAVBAR ───────────────────────────────────── */
.navbar {
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 1px 10px rgba(0, 0, 0, .05);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.logo-img-footer {
  height: 48px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: rgba(255, 43, 56, 0.06);
}

.nav-link.nav-link-crm {
  background: rgba(255, 43, 56, 0.08);
  color: var(--red) !important;
  font-weight: 700;
  border: 1.5px solid rgba(255, 43, 56, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  margin-left: 5px;
}

.nav-link.nav-link-crm:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px var(--red-glow);
}


.nav-btn {
  padding: 12px 26px;
  background: #1d1d1d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: .3s;
}

.nav-btn:hover {
  background: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn-highlight-crm {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--red) !important;
  border: 1.5px solid var(--red) !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: .3s;
  letter-spacing: 0.02em;
}

.nav-btn-highlight-crm:hover {
  background: var(--red) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px var(--red-glow) !important;
  transform: translateY(-1px);
}

.mobile-only {
  display: none !important;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 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);
}

/* ── 5. HERO SECTION ─────────────────────────────── */
.hero {
  min-height: 100svh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(255, 40, 55, 0) 0%,
      rgba(255, 40, 55, 0) 55%,
      rgba(255, 255, 255, .95) 100%),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .07) 0px,
      rgba(255, 255, 255, .07) 2px,
      transparent 2px,
      transparent 56px),
    linear-gradient(90deg,
      #ff3b48 0%,
      #ff4550 18%,
      #ff6d77 48%,
      #ff3743 74%,
      #ff0018 100%);
}

/* Glow */
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, .35),
      transparent 65%);
  pointer-events: none;
}

/* Bottom Fade */
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0),
      #ffffff);
  pointer-events: none;
}

/* Vertical Panels overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .06),
      rgba(255, 255, 255, .06) 55px,
      rgba(255, 255, 255, 0) 56px,
      rgba(255, 255, 255, 0) 112px);
  opacity: .7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 92vw);
  padding-top: 40px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  color: white;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.hero p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  margin: 0 auto;
  margin-bottom: 35px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #000000;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 43, 56, 0.35);
}

/* ── 6. MARQUEE ──────────────────────────────────── */
.marquee-section {
  background: var(--dark);
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  flex-shrink: 0;
}

.marquee-content span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.marquee-content .sep {
  color: var(--red);
  font-size: 0.6rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── 7. SERVICES SECTION ─────────────────────────── */
.services {
  padding: 5rem 0;
  background: var(--white);
}

.what-header {
  text-align: center;
  margin-bottom: 4rem;
}

.what-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.what-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.what-subtitle {
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}

.what-grid-container {
  position: relative;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.what-connector-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2px dashed rgba(204, 0, 0, 0.795);
  transform: translateY(-50%);
  z-index: 1;
}

.what-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-node::before {
  content: '⇄';
  font-size: 11px;
  color: var(--red);
  font-weight: bold;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.what-card {
  background: #e70e1d;
  /* Salmon pink top tab background */
  border: 2px solid #dd0c1a;
  border-radius: 20px;
  padding: 30px 2px 2px 2px;
  /* Top padding is the tab thickness, 2px border elsewhere */
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.what-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(255, 140, 148, 0.2);
}

.what-card-body {
  background: var(--white);
  border-radius: 18px;
  /* High rounding inside */
  flex-grow: 1;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}



.what-card-image {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid #f1f5f9;
}

.what-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-card-content {
  margin-top: 0;
}

.what-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.what-card-content p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}

.what-footer {
  text-align: center;
  max-width: 820px;
  margin: 4.5rem auto 0;
  background: linear-gradient(135deg, rgba(231, 14, 29, 0.03) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(231, 14, 29, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(231, 14, 29, 0.02);
}

.what-footer p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 500;
  color: #0f172a;
  line-height: 1.5;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.highlight-red {
  color: #e70e1d;
  /* Brand red from logo */
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(231, 14, 29, 0.08) 65%);
  padding: 0 4px;
}

.btn-book-call {
  display: inline-block;
  background: #000000;
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
}

.btn-book-call:hover {
  background: #1e1e1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ── 8. ABOUT SECTION ────────────────────────────── */
.why-choose-us {
  min-height: 100vh;
  padding: 2rem 0;
  background: white;
  font-family: var(--font-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.why-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.why-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #000;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.why-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.why-header p {
  font-size: 0.85rem;
  color: #333;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.4;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 0.8rem;
  align-items: stretch;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-column-center {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.1);
  display: flex;
}

.why-column-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card {
  background: #ffeded;
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(204, 0, 0, 0.08);
}

.why-num {
  width: 24px;
  height: 24px;
  border: 1px solid #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-column-center {
    grid-column: 1 / -1;
    order: -1;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 9. RESULTS SECTION ──────────────────────────── */
.results {
  padding: 7rem 0;
  background: var(--dark);
}

.results .section-tag {
  color: var(--red-light);
  border-color: rgba(204, 0, 0, 0.3);
  background: rgba(204, 0, 0, 0.1);
}

.results .section-title {
  color: white;
}

.results .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.result-card:hover::after {
  transform: scaleX(1);
}

.result-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.2);
  padding: 0.2em 0.7em;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.result-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.result-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.metric {
  text-align: center;
}

.metric-val {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red-light);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── 10. TESTIMONIALS ────────────────────────────── */
.testimonials {
  padding: 7rem 0;
  background: var(--off-white);
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: #888;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* ── 11. CTA BANNER ──────────────────────────────── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #CC0000 0%, #aa0000 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner .cta-bars {
  position: absolute;
  inset: 0;
  display: flex;
}

.cta-banner .cta-bars .bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ── 12. CONTACT SECTION ─────────────────────────── */
.contact {
  padding: 7rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-info>p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}

.contact-item span {
  font-size: 0.9rem;
  color: #666;
}

/* Form */
.contact-form {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #166534;
  font-weight: 600;
}

/* ── 12.5. FAQs SECTION ──────────────────────────── */
.faq-section {
  padding: 60px 0;
  background: var(--white);
  font-family: var(--font-main);
  border-top: 1px solid #f1f5f9;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.faq-column-left,
.faq-column-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #000000;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #f8fafc;
  color: #1e293b;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.faq-item:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.faq-item.active {
  background: #000000;
  color: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

.faq-star-icon {
  width: 18px;
  height: 18px;
  animation: faq-star-spin 12s linear infinite;
}

@keyframes faq-star-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.faq-answer-box {
  background: var(--red);
  color: var(--white);
  padding: 35px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 310px;
  position: relative;
  box-shadow: 0 16px 32px rgba(255, 43, 56, 0.12);
  transition: all 0.4s ease;
}

.answer-decor {
  color: var(--white);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.answer-decor .faq-star-icon {
  width: 24px;
  height: 24px;
}

.faq-answer-box p {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-answer-box {
    min-height: auto;
    padding: 30px;
  }
}

/* ── 13. FOOTER ──────────────────────────────────── */
.footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  font-family: var(--font-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1.3fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
}


.footer-brand h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-family: var(--font-main);
  letter-spacing: -0.01em;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red-light);
}

/* Why Choose Us list custom style */
.why-choose-list li {
  line-height: 1.6;
}

/* Column 4 details and SVGs */
.contact-details-list-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details-list-footer li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.contact-details-list-footer li .icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #ff525a;
  /* Coral red */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.contact-details-list-footer li .icon svg {
  width: 100%;
  height: 100%;
}

.contact-details-list-footer li span {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Social icons footer circles */
.social-icons-footer {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-icons-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}

.social-icons-footer a svg {
  color: currentColor;
}

.social-icons-footer a:hover {
  border-color: #ff525a;
  color: #ff525a;
  transform: translateY(-2px);
}

.footer-bottom {
  background: #080808;
  padding: 1.25rem 0 1.5rem;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-disclaimer {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  line-height: 1.65;
  max-width: 860px;
  font-weight: 400;
}

/* ── 14. SCROLL ANIMATIONS ───────────────────────── */

/* Hero entrance (fires on page load) */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fade-up,
.fade-left,
.fade-right,
.scale-in,
.slide-down {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* Fade up (cards, general content) */
.fade-up {
  transform: translateY(40px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade from left (left column, info panels) */
.fade-left {
  transform: translateX(-48px);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade from right (right column, form, images) */
.fade-right {
  transform: translateX(48px);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in (CTA boxes, highlighted sections) */
.scale-in {
  transform: scale(0.92);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide down (section tags / headers) */
.slide-down {
  transform: translateY(-24px);
}

.slide-down.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers */
.anim-delay-1 {
  transition-delay: 0.08s;
}

.anim-delay-2 {
  transition-delay: 0.16s;
}

.anim-delay-3 {
  transition-delay: 0.24s;
}

.anim-delay-4 {
  transition-delay: 0.32s;
}

.anim-delay-5 {
  transition-delay: 0.40s;
}

.anim-delay-6 {
  transition-delay: 0.48s;
}

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {

  .fade-up,
  .fade-left,
  .fade-right,
  .scale-in,
  .slide-down {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ── 15. RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-connector-line {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 0 30px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    width: 90%;
    font-size: 15px;
  }

  .hero-content {
    width: 90%;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .btn-nav,
  .nav-actions {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1001;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .navbar {
    padding: 0 16px;
  }

  .logo img {
    height: 72px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 24px) 0 56px;
  }

  .hero::before {
    width: 460px;
    height: 460px;
    top: -120px;
  }

  .hero-content {
    width: min(92vw, 720px);
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero p {
    width: 100%;
    font-size: 1rem;
  }

  .hero-btn {
    width: min(100%, 320px);
    text-align: center;
    justify-content: center;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
  }

  .section-subtitle {
    font-size: 0.98rem;
  }

  .nav-links.open .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 100%;
    display: block;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .what-connector-line {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1rem;
    padding: 1.2rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .results-grid,
  .service-container,
  .contact-grid,
  .about-grid,
  .what-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-column-center {
    grid-column: auto;
    order: 0;
    max-height: none;
  }

  .result-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 12px;
  }

  .logo img {
    height: 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 10vw, 2.2rem);
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn,
  .hero-btn,
  .nav-btn,
  .nav-btn-highlight-crm {
    width: 100%;
    justify-content: center;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-metrics {
    grid-template-columns: 1fr;
  }

  .nav-links.open {
    padding: 1rem;
  }

  .nav-links.open .nav-link {
    font-size: 0.95rem;
  }
}

/* ── 16. CUSTOM CTA CARD BANNER ──────────────────── */
.cta-footer-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  box-sizing: border-box;
}

.cta-card-section {
  background-color: #ffffff;
  padding: 40px 0 20px 0;
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.cta-card-box {
  background-color: #e70e1d;
  /* Solid brand red matching your theme */
  border-radius: 36px;
  padding: 50px 40px;
  text-align: center;
  color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(231, 14, 29, 0.15);
  width: 100%;
}

.cta-card-box h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #ffffff;
}

.cta-card-box h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.cta-card-box p {
  font-family: var(--font-main);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 36px;
}

.cta-card-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #111111;
  padding: 15px 40px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-main);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-card-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .cta-card-section {
    padding: 40px 0 80px 0;
  }

  .cta-card-box {
    padding: 60px 24px;
    border-radius: 28px;
    margin: 0 15px;
  }

  .cta-card-box p {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }

  .cta-card-btn {
    padding: 12px 32px;
  }
}