/*
Theme Name: Elite DSTV Installers — Child
Theme URI: https://eliteinstallers.co.za/
Template: hello-elementor
Author: Elite DSTV Installers
Author URI: https://eliteinstallers.co.za/
Description: Hello Elementor child theme for Elite DSTV Installers — ports the original static site styles to WordPress so Elementor templates render pixel-identical to the pre-migration design. Brand: DStv navy + cyan + gold accents.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elite-dstv-child
Tags: elementor, business, one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =================================================================
   ELITE DSTV INSTALLERS — Durban & uMhlanga
   Brand colors based on DStv: deep navy blue + cyan + yellow accent
   ----------------------------------------------------------------
   This stylesheet is loaded AFTER the Hello Elementor parent.
   All selectors below were ported verbatim from the original
   /assets/css/style.css to preserve the design exactly.
================================================================= */

:root {
  /* DSTV Brand palette */
  --dstv-blue: #003E7E;          /* primary deep navy */
  --dstv-blue-dark: #002452;     /* deeper navy */
  --dstv-blue-light: #0057B7;    /* mid blue */
  --dstv-cyan: #00A8E1;          /* DStv accent cyan */
  --dstv-yellow: #FFB81C;        /* DStv gold accent */
  --dstv-yellow-dark: #E5A312;
  --wa-green: #25D366;           /* WhatsApp */
  --wa-green-dark: #128C7E;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #F5F8FC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --ink: #0A1A33;

  /* Spacing */
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(0, 62, 126, 0.08);
  --shadow: 0 10px 30px rgba(0, 62, 126, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 62, 126, 0.18);
  --transition: all .25s ease;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;
}

/* ================== RESET ================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--dstv-cyan); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  margin: 0 0 .6em;
  line-height: 1.2;
  font-weight: 800;
}

/* ================== LAYOUT ================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 90px 0;
  position: relative;
}
.section--light { background: var(--off-white); }
.section--dark {
  background: linear-gradient(135deg, var(--dstv-blue-dark) 0%, var(--dstv-blue) 60%, var(--dstv-blue-light) 100%);
  color: var(--white);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section__head--light * { color: var(--white) !important; }
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dstv-cyan);
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 168, 225, 0.1);
}
.section__head--light .section__eyebrow {
  color: var(--dstv-yellow) !important;
  background: rgba(255, 184, 28, 0.15);
}
.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-bottom: 16px;
}
.section__lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}
.section--dark .section__lead { color: rgba(255,255,255,.85); }
.text-accent { color: var(--dstv-yellow); }

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading);
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: .2px;
}
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--dstv-blue);
  color: var(--white);
}
.btn--primary:hover { background: var(--dstv-blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent {
  background: var(--dstv-yellow);
  color: var(--dstv-blue-dark);
  box-shadow: 0 6px 20px rgba(255, 184, 28, .35);
}
.btn--accent:hover { background: var(--dstv-yellow-dark); color: var(--dstv-blue-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 184, 28, .5); }
.btn--ghost {
  background: transparent;
  color: var(--dstv-blue);
  border-color: var(--gray-200);
}
.btn--ghost:hover { border-color: var(--dstv-blue); color: var(--dstv-blue); background: var(--off-white); }
.btn--whatsapp, .btn--whatsapp-solid {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}
.btn--whatsapp:hover, .btn--whatsapp-solid:hover {
  background: var(--wa-green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .5);
}

/* ================== TOP BAR ================== */
.top-bar {
  background: var(--dstv-blue-dark);
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  padding: 9px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-bar__link, .top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
}
.top-bar__link:hover { color: var(--dstv-yellow); }
.top-bar__contact i { color: var(--dstv-yellow); }
.top-bar__social { display: flex; gap: 8px; }
.top-bar__social a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
}
.top-bar__social a:hover { background: var(--dstv-yellow); color: var(--dstv-blue-dark); }

@media (max-width: 900px) {
  .top-bar__hours { display: none; }
}
@media (max-width: 600px) {
  .top-bar__item { display: none; }
  .top-bar__inner { justify-content: center; }
}

/* ================== HEADER ================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.header__logo img {
  height: 60px;
  width: auto;
}
.nav__list {
  display: flex;
  gap: 4px;
}
.nav__link {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-800);
  border-radius: 8px;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--dstv-yellow);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav__link:hover { color: var(--dstv-blue); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--dstv-blue); }
.nav__link.active::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.btn--phone { padding: 10px 18px; }

.nav__toggle, .nav__close {
  font-size: 22px;
  color: var(--dstv-blue);
  display: none;
}

@media (max-width: 1100px) {
  .btn--phone span { display: none; }
  .btn--phone { padding: 12px; }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 84%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    padding: 80px 30px 30px;
    transition: right .35s ease;
    z-index: 200;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: block; padding: 14px 16px; border-radius: 10px; }
  .nav__link:hover { background: var(--off-white); }
  .nav__toggle, .nav__close { display: inline-flex; }
  .nav__close {
    position: absolute;
    top: 18px; right: 22px;
  }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: 70px 0 80px;
  background: linear-gradient(135deg, var(--dstv-blue-dark) 0%, var(--dstv-blue) 55%, var(--dstv-blue-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 168, 225, .25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 184, 28, .15), transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 184, 28, .15);
  color: var(--dstv-yellow);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 184, 28, .35);
}
.hero__title {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 22px;
}
.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.hero__trust i {
  color: var(--dstv-yellow);
  font-size: 16px;
}
.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__image-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  border: 4px solid rgba(255,255,255,.1);
  background: var(--white);
  max-width: 540px;
}
.hero__image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  color: var(--dstv-blue-dark);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  text-align: center;
}
.hero__badge-stars {
  color: var(--dstv-yellow);
  font-size: 14px;
  margin-bottom: 4px;
}
.hero__badge strong { display: block; font-size: 22px; line-height: 1; }
.hero__badge span { font-size: 12px; color: var(--gray-600); }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { order: -1; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero { padding: 50px 0 60px; }
  .hero__trust { gap: 14px 22px; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -28px; }
}

/* ================== TRUST STRIP ================== */
.trust-strip {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-100);
  margin-top: -1px;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item i {
  font-size: 28px;
  color: var(--dstv-cyan);
  background: rgba(0, 168, 225, .1);
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.trust-item span {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
}
@media (max-width: 900px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
}

/* ================== SERVICES ================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--dstv-cyan);
}
.service-card--featured {
  background: linear-gradient(160deg, var(--dstv-blue) 0%, var(--dstv-blue-dark) 100%);
  color: var(--white);
  border-color: var(--dstv-blue);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,.85); }
.service-card--featured .service-card__list li { color: rgba(255,255,255,.9); }
.service-card--featured .service-card__list i { color: var(--dstv-yellow); }
.service-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--dstv-yellow);
  color: var(--dstv-blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.service-card__icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dstv-cyan), var(--dstv-blue-light));
  color: var(--white);
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(0, 168, 225, .3);
}
.service-card--featured .service-card__icon {
  background: var(--dstv-yellow);
  color: var(--dstv-blue-dark);
  box-shadow: 0 8px 20px rgba(255, 184, 28, .4);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-card__list {
  margin-bottom: 24px;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-800);
  padding: 5px 0;
}
.service-card__list i {
  color: var(--dstv-cyan);
  font-size: 13px;
}
.service-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--dstv-blue);
  font-size: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.service-card--featured .service-card__cta {
  color: var(--dstv-yellow);
  border-top-color: rgba(255,255,255,.2);
}
.service-card__cta:hover { gap: 14px; color: var(--dstv-cyan); }
.service-card--featured .service-card__cta:hover { color: var(--white); }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ================== CTA BANNER ================== */
.cta-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--dstv-blue) 0%, var(--dstv-blue-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '\f7c0';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -30px; bottom: -40px;
  font-size: 220px;
  color: rgba(255,255,255,.06);
}
.cta-banner__text h3 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.cta-banner__text p { margin: 0; color: rgba(255,255,255,.9); }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ================== ABOUT ================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__image-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--dstv-yellow);
  color: var(--dstv-blue-dark);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
}
.about__content p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--off-white);
  border-radius: 12px;
  border-left: 3px solid var(--dstv-cyan);
}
.about__feature i {
  font-size: 22px;
  color: var(--dstv-blue);
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 10px;
}
.about__feature strong {
  font-family: var(--font-heading);
  display: block;
  font-size: 15px;
  color: var(--ink);
}
.about__feature span {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
}
.about__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image img { aspect-ratio: 16/10; }
  .about__features { grid-template-columns: 1fr; }
}

/* ================== AREAS ================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 24px 22px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.area-card:hover {
  background: rgba(255, 184, 28, .12);
  border-color: var(--dstv-yellow);
  transform: translateY(-4px);
}
.area-card i {
  color: var(--dstv-yellow);
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}
.area-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.area-card span {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.areas-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: rgba(255,255,255,.85);
}
.areas-footnote a {
  color: var(--dstv-yellow);
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ================== WHY US ================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  overflow: hidden;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--dstv-cyan); }
.why-card__num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
}
.why-card h3 {
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.why-card h3 i {
  color: var(--dstv-cyan);
  font-size: 22px;
}
.why-card p {
  color: var(--gray-600);
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ================== GALLERY ================== */
.gallery-section { background: var(--white); }
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery__item:hover { transform: scale(1.04); box-shadow: var(--shadow); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ================== BIG CTA ================== */
.big-cta {
  background: linear-gradient(120deg, var(--dstv-blue-dark) 0%, var(--dstv-blue) 50%, var(--dstv-blue-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 184, 28, .15), transparent 60%);
}
.big-cta__inner { position: relative; }
.big-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 14px;
}
.big-cta p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  max-width: 680px;
  margin: 0 auto 30px;
}
.big-cta__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ================== REVIEWS ================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card__stars {
  color: var(--dstv-yellow);
  font-size: 14px;
  margin-bottom: 12px;
}
.review-card p {
  color: var(--gray-800);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.review-card footer { border-top: 1px solid var(--gray-100); padding-top: 14px; }
.review-card footer strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--ink);
  font-size: 15px;
}
.review-card footer span {
  font-size: 13px;
  color: var(--gray-600);
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ================== FAQ ================== */
.faq__container { max-width: 880px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}
.faq__item[open] { border-color: var(--dstv-cyan); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  padding: 20px 56px 20px 22px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--off-white);
  color: var(--dstv-blue);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
}
.faq__item[open] summary::after {
  content: '−';
  background: var(--dstv-blue);
  color: var(--white);
}
.faq__item p {
  padding: 0 22px 22px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.7;
}
.faq__item a { color: var(--dstv-blue); font-weight: 700; }

/* ================== CONTACT ================== */
.section--contact { background: var(--off-white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  margin-bottom: 40px;
}
.contact__info, .contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact__info h3, .contact__form h3 {
  font-size: 22px;
  margin-bottom: 22px;
  color: var(--ink);
}
.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact__row:last-of-type { border-bottom: none; }
.contact__row i {
  font-size: 20px;
  color: var(--dstv-blue);
  width: 42px; height: 42px;
  background: rgba(0, 62, 126, .08);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__row strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact__row a, .contact__row span {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}
.contact__row a:hover { color: var(--dstv-cyan); }
.contact__cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact__form-note {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: -16px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--off-white);
  color: var(--ink);
  transition: var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--dstv-cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 168, 225, .12);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-fineprint {
  font-size: 12.5px;
  color: var(--gray-600);
  text-align: center;
  margin: 14px 0 0;
}
.form-fineprint i { color: var(--wa-green); margin-right: 4px; }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ================== FOOTER ================== */
.footer {
  background: var(--dstv-blue-dark);
  color: rgba(255,255,255,.78);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo {
  background: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  height: 64px;
  width: auto;
  margin-bottom: 18px;
}
.footer__about p {
  line-height: 1.7;
  font-size: 14.5px;
  margin-bottom: 18px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 16px;
  color: var(--white);
  transition: var(--transition);
}
.footer__socials a:hover { background: var(--dstv-yellow); color: var(--dstv-blue-dark); }
.footer__col h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--dstv-yellow);
  border-radius: 100px;
}
.footer__col ul li { margin-bottom: 10px; font-size: 14.5px; }
.footer__col ul li a { color: rgba(255,255,255,.75); }
.footer__col ul li a:hover { color: var(--dstv-yellow); padding-left: 4px; }
.footer__contact li {
  display: flex; align-items: flex-start; gap: 10px;
}
.footer__contact i { color: var(--dstv-yellow); margin-top: 4px; width: 16px; }
.footer__bottom {
  background: rgba(0,0,0,.2);
  padding: 18px 0;
  font-size: 13.5px;
  text-align: center;
}
.footer__bottom p { margin: 0; }
.footer__bottom a { color: var(--dstv-yellow); font-weight: 600; }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ================== FLOATING WHATSAPP ================== */
.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px; height: 62px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: var(--transition);
}
.float-whatsapp:hover { background: var(--wa-green-dark); color: var(--white); transform: scale(1.08); }
.float-whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: .6;
  animation: pulseRing 2s infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 700px) {
  .float-whatsapp { bottom: 78px; }
}

/* ================== STICKY MOBILE CTA ================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
  z-index: 90;
  padding: 8px;
  gap: 8px;
}
.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.sticky-cta__btn--call { background: var(--dstv-yellow); color: var(--dstv-blue-dark); }
.sticky-cta__btn--whatsapp { background: var(--wa-green); color: var(--white); }
@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ================== EXIT POPUP ================== */
.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup.open { display: flex; animation: fadeIn .3s ease; }
.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 51, .82);
  backdrop-filter: blur(4px);
}
.popup__card {
  position: relative;
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 44px 36px 36px;
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp .35s ease;
}
.popup__close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 28px;
  color: var(--gray-400);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.popup__close:hover { color: var(--ink); background: var(--off-white); }
.popup__icon {
  font-size: 48px;
  color: var(--dstv-yellow);
  background: rgba(255, 184, 28, .12);
  width: 90px; height: 90px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
}
.popup__card h3 {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 10px;
}
.popup__card p { color: var(--gray-600); margin-bottom: 26px; }
.popup__buttons { display: flex; flex-direction: column; gap: 10px; }

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================== UTILITY ================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================== ELEMENTOR OVERRIDES ================== */
/* Elementor's parent Hello Elementor adds default padding to <main>.
   Strip it for this single-page front-page layout so sections sit flush. */
body.elementor-template-full-width .site-main,
body.home .site-main,
.elementor-default .site-main {
  padding: 0;
}
/* When Elementor wraps an HTML widget, neutralize its default top/bottom margin
   so our section's own padding/margin rules from above remain authoritative. */
.elementor-widget-html { margin: 0 !important; }
/* Allow our .container to break out of Elementor's boxed container at full bleed
   on dark/hero sections — used inside boxed Elementor containers. */
.e-con-inner > .hero,
.e-con-inner > .section,
.e-con-inner > .footer,
.e-con-inner > .top-bar,
.e-con-inner > .header,
.e-con-inner > .trust-strip,
.e-con-inner > .big-cta { width: 100%; }
