/* =========================================================
   ATECHMEDIA HOMEPAGE STYLE
   File: assets/css/style.css
   ========================================================= */

:root {
  --navy: #06162f;
  --deep-navy: #020918;
  --blue: #00c8ff;
  --blue-dark: #1477ff;
  --purple: #6a35ff;
  --white: #ffffff;
  --soft-white: #f6fbff;
  --muted: #637089;
  --text: #0a1730;
  --border: #dce8f8;
  --gold: #ffcc33;
  --shadow: 0 24px 70px rgba(7, 22, 47, 0.14);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 200, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5f9ff);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 11, 28, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
}

.brand span,
.footer-brand span {
  font-size: 22px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.main-nav .nav-highlight {
  color: #07162f;
  background: linear-gradient(135deg, var(--blue), #8eeeff);
  box-shadow: 0 12px 30px rgba(0, 200, 255, 0.28);
}

.main-nav .nav-highlight:hover {
  color: #07162f;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  color: #06162f;
  background: linear-gradient(135deg, var(--blue), #8eeeff);
  box-shadow: 0 18px 42px rgba(0, 200, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(0, 200, 255, 0.34);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline.dark {
  color: var(--navy);
  border-color: rgba(7, 22, 47, 0.2);
  background: var(--white);
}

.btn.full {
  width: 100%;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 11, 28, 0.97), rgba(3, 11, 28, 0.85)),
    url("../images/hero-tech-media.jpg");
  background-size: cover;
  background-position: center right;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 200, 255, 0.18), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(106, 53, 255, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(3, 11, 28, 0.95), rgba(3, 11, 28, 0.36));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 52px;
  padding: 92px 0;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 0.96;
  letter-spacing: -3px;
}

.hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-socials a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-socials a:hover {
  color: var(--blue);
  background: rgba(0, 200, 255, 0.12);
}

.hero-card {
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.hero-card-top {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.hero-card-top span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
}

.hero-card-top strong {
  font-size: 26px;
}

.hero-card-grid {
  display: grid;
  gap: 14px;
}

.hero-card-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-card-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-card-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding: 96px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section h2,
.cta-section h2 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -1.8px;
}

.section p,
.cta-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-card,
.training-card {
  padding: 36px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.1), transparent 35%),
    var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.about-card h3,
.training-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 25px;
}

.about-card ul,
.training-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-card li,
.training-card li {
  color: var(--text);
  font-weight: 800;
  padding-left: 24px;
  position: relative;
}

.about-card li::before,
.training-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-dark);
  font-weight: 900;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  background:
    linear-gradient(180deg, #ffffff, #eef7ff);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(7, 22, 47, 0.08);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(7, 22, 47, 0.14);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 24px;
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.14), rgba(106, 53, 255, 0.14));
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   FEATURE SECTIONS
   ========================================================= */

.feature-section {
  background: #ffffff;
}

.dark-feature {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #020918, #06162f 60%, #102f70);
}

.dark-feature h2 {
  color: var(--white);
}

.dark-feature p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-media {
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.internet-media {
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.3), rgba(7, 22, 47, 0.8)),
    url("../images/internet-service.jpg");
  background-size: cover;
  background-position: center;
}

.broadcast-media {
  background:
    linear-gradient(135deg, rgba(7, 22, 47, 0.84), rgba(106, 53, 255, 0.36)),
    url("../images/broadcast-service.jpg");
  background-size: cover;
  background-position: center;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
}

.media-placeholder span {
  max-width: 320px;
  text-align: center;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-list span {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef7ff;
  border: 1px solid var(--border);
  font-weight: 900;
  font-size: 13px;
}

.mini-list.light span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   TRAINING
   ========================================================= */

.training-section {
  background:
    radial-gradient(circle at top left, rgba(106, 53, 255, 0.08), transparent 30%),
    #ffffff;
}

.training-card .btn {
  margin-top: 26px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 82px 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #020918, #06162f 55%, #122f70);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  background:
    linear-gradient(180deg, #f6fbff, #ffffff);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(7, 22, 47, 0.06);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 15px;
  color: var(--text);
  background: #f8fbff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.1);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #020918;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding: 66px 0;
}

.site-footer p {
  max-width: 360px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.site-footer h4 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1040px) {
  .hero-inner,
  .two-column,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 16px;
    border-radius: 24px;
    background: rgba(3, 11, 28, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  }

  .main-nav.active {
    display: grid;
    gap: 4px;
  }

  .main-nav a {
    border-radius: 16px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 0;
  }

  .hero-content h1 {
    letter-spacing: -2px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 19px;
  }

  .main-nav {
    top: 70px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p,
  .section p,
  .cta-section p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .feature-media {
    min-height: 300px;
  }

  .media-placeholder span {
    font-size: 30px;
  }

  .about-card,
  .training-card,
  .contact-form {
    padding: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }
}

/* =========================================================
   HEADER ACTIVE / SCROLL STATE
   ========================================================= */

.site-header.scrolled {
  background: rgba(3, 11, 28, 0.98);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.main-nav a.active {
  color: var(--white);
  background: rgba(0, 200, 255, 0.14);
}


/* =========================================================
   EQUIPMENT AND TRAINING IMAGES
   ========================================================= */

.equipment-media {
  background:
    linear-gradient(135deg, rgba(7, 22, 47, 0.82), rgba(0, 200, 255, 0.28)),
    url("../images/equipment-service.jpg");
  background-size: cover;
  background-position: center;
}

.training-visual-card {
  position: relative;
}

.training-media {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(7, 22, 47, 0.78), rgba(106, 53, 255, 0.32)),
    url("../images/training-service.jpg");
  background-size: cover;
  background-position: center;
}

.training-card-floating {
  position: relative;
  max-width: 88%;
  margin: -80px auto 0;
  z-index: 2;
}

@media (max-width: 640px) {
  .training-card-floating {
    max-width: 94%;
    margin-top: -50px;
  }
}


/* =========================================================
   CONTACT FORM BUTTON FIX
   ========================================================= */

.contact-form button {
  border: none;
  font-family: inherit;
}


/* =========================================================
   HEADER SOCIAL BUTTONS
   ========================================================= */

.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.nav-socials a {
  width: 34px;
  height: 34px;
  padding: 0 !important;
  display: grid;
  place-items: center;
  border-radius: 50% !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-socials a:hover {
  color: var(--navy) !important;
  background: var(--blue);
}

@media (max-width: 860px) {
  .nav-socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 8px 0 0;
  }

  .nav-socials a {
    width: 100%;
    height: 42px;
    border-radius: 14px !important;
  }
}



/* =========================================================
   FLOATING CONTACT BUTTONS
   ========================================================= */

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: grid;
  gap: 10px;
}

.floating-btn {
  min-width: 118px;
  height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.call-btn {
  color: #06162f;
  background: #ffffff;
  border: 1px solid rgba(7, 22, 47, 0.12);
}

.whatsapp-btn {
  color: #ffffff;
  background: #25d366;
}

.floating-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .floating-contact {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-btn {
    min-width: 0;
    width: 100%;
    height: 44px;
    font-size: 12px;
  }
}



/* =========================================================
   QUICK SERVICE ACTIONS
   ========================================================= */

.quick-actions-section {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding: 0 0 40px;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.quick-action-card {
  min-height: 150px;
  padding: 24px 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(7, 22, 47, 0.12);
  transition: 0.25s ease;
}

.quick-action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(7, 22, 47, 0.18);
}

.quick-action-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.14), rgba(106, 53, 255, 0.14));
}

.quick-action-card strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.quick-action-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quick-action-highlight {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.28), transparent 35%),
    linear-gradient(135deg, #06162f, #102f70);
  border-color: rgba(255, 255, 255, 0.12);
}

.quick-action-highlight strong,
.quick-action-highlight small {
  color: #ffffff;
}

.quick-action-highlight small {
  opacity: 0.76;
}

@media (max-width: 1040px) {
  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .quick-actions-section {
    margin-top: 0;
    padding-top: 24px;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .quick-action-card {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    align-items: center;
  }

  .quick-action-card small {
    grid-column: 2;
  }
}



/* =========================================================
   WHO WE SERVE / WHY CHOOSE US
   ========================================================= */

.audience-section {
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f9ff);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(7, 22, 47, 0.08);
  transition: 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgba(7, 22, 47, 0.14);
}

.audience-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 25px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.14), rgba(106, 53, 255, 0.14));
}

.audience-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.why-grid {
  margin-top: 64px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #020918, #06162f 60%, #102f70);
  box-shadow: 0 24px 70px rgba(7, 22, 47, 0.16);
}

.why-content h2 {
  color: #ffffff;
  margin: 14px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.why-content p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.why-points {
  display: grid;
  gap: 14px;
}

.why-points div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-points strong {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #06162f;
  background: linear-gradient(135deg, var(--blue), #8eeeff);
  font-size: 16px;
}

.why-points span {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .audience-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .audience-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    padding: 28px;
  }

  .why-points div {
    grid-template-columns: 52px 1fr;
  }
}



/* =========================================================
   HAPPY CLIENTS SECTION
   ========================================================= */

.happy-clients-section {
  background:
    radial-gradient(circle at top left, rgba(0, 200, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f4f9ff, #ffffff);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.client-logo-card {
  min-height: 92px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(7, 22, 47, 0.08);
  font-weight: 900;
  line-height: 1.25;
  transition: 0.25s ease;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(7, 22, 47, 0.14);
  border-color: rgba(0, 200, 255, 0.4);
}

.client-promo-box {
  margin-top: 42px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 51, 0.18), transparent 28%),
    linear-gradient(135deg, #020918, #06162f 55%, #173c88);
  box-shadow: 0 24px 70px rgba(7, 22, 47, 0.18);
}

.client-promo-box h3 {
  margin: 14px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.client-promo-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.client-promo-points {
  display: grid;
  gap: 14px;
}

.client-promo-points span {
  padding: 17px 18px;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.client-promo-points span::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-promo-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .client-logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .client-logo-card {
    min-height: 78px;
    padding: 14px;
    font-size: 13px;
  }

  .client-promo-box {
    padding: 28px;
  }
}



/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
  background:
    radial-gradient(circle at top right, rgba(106, 53, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-item {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 42px rgba(7, 22, 47, 0.08);
  transition: 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(7, 22, 47, 0.14);
}

.faq-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 24px;
  }
}



/* =========================================================
   WEBSITE LOADER
   ========================================================= */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #020918, #06162f 60%, #102f70);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  color: #ffffff;
}

.loader-content img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-content span {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.loader-content small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 200, 255, 0);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 44px rgba(0, 200, 255, 0.45);
  }
}


/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================================= FINAL HOMEPAGE POLISH Cleaner spacing, better anchors, tighter header ========================================================= */ /* Prevent sticky header from covering section titles */ 
section[id] { scroll-margin-top: 105px; } 
/* Header polish */ 
.site-header { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16); } .header-inner { min-height: 70px; } .brand img, .footer-brand img { width: 40px; height: 40px; } .brand span { font-size: 21px; } .main-nav { gap: 4px; } .main-nav a { font-size: 13px; padding: 10px 11px; } .main-nav .nav-highlight { padding: 11px 16px !important; line-height: 1.05; } .nav-socials a { width: 30px; height: 30px; font-size: 10px !important; } /* Hero polish */ @media (min-width: 1041px) { .hero-section { min-height: 690px; } .hero-inner { padding: 76px 0 108px; gap: 48px; } .hero-content h1 { font-size: clamp(44px, 4.8vw, 66px); line-height: 1.02; letter-spacing: -2.4px; } .hero-content p { max-width: 720px; } } /* Quick cards should sit neatly under hero */ .quick-actions-section { margin-top: -46px; padding-bottom: 28px; } .quick-action-card { min-height: 138px; } /* Reduce excessive white gaps */ @media (min-width: 1041px) { .section { padding: 78px 0; } .about-section { padding-top: 82px; } .services-section, .audience-section, .happy-clients-section, .faq-section, .contact-section { padding-top: 82px; padding-bottom: 82px; } .feature-section { padding-top: 86px; padding-bottom: 86px; } .training-section { padding-top: 86px; padding-bottom: 86px; } .cta-section { padding: 74px 0; } .why-grid, .client-promo-box { margin-top: 44px; } } /* Make image cards feel more balanced */ .feature-media { min-height: 390px; } .training-media { min-height: 330px; } /* Cleaner cards */ .service-card, .audience-card, .client-logo-card, .faq-item, .about-card, .training-card, .contact-form { box-shadow: 0 14px 38px rgba(7, 22, 47, 0.08); } /* Floating contact buttons polish */ .floating-contact { right: 20px; bottom: 18px; gap: 9px; } .floating-btn { min-width: 108px; height: 42px; font-size: 12px; } /* On smaller laptop screens, hide social circles to prevent menu crowding */ @media (max-width: 1220px) and (min-width: 861px) { .nav-socials { display: none; } .main-nav a { font-size: 12px; padding: 9px 10px; } .main-nav .nav-highlight { padding: 10px 14px !important; } } /* Mobile spacing correction */ @media (max-width: 640px) { section[id] { scroll-margin-top: 90px; } .quick-actions-section { margin-top: 0; } .floating-contact { left: 14px; right: 14px; bottom: 14px; } }




/* =========================================================
   TV STATION / IS20 BROADCAST SECTION
   ========================================================= */

.tv-station-section {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #020918, #06162f 58%, #113a86);
}

.tv-station-section h2 {
  color: #ffffff;
}

.tv-station-section p {
  color: rgba(255, 255, 255, 0.76);
}

.tv-station-card {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.tv-station-card-header {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.tv-station-card-header span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.tv-station-card-header strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.1;
}

.tv-station-points {
  display: grid;
  gap: 14px;
}

.tv-station-points div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.tv-station-points strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #06162f;
  background: linear-gradient(135deg, var(--blue), #8eeeff);
  font-size: 14px;
}

.tv-station-points span {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.45;
}

.tv-station-section .mini-list span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 720px) {
  .tv-station-card {
    padding: 26px;
  }

  .tv-station-points div {
    grid-template-columns: 52px 1fr;
  }
}



/* =========================================================
   MOBILE VIEW FINAL FIX
   Forces clean mobile menu and better phone layout
   ========================================================= */

body {
  overflow-x: hidden;
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 17px;
  }

  .menu-toggle {
    display: block !important;
  }

  .main-nav {
    position: absolute !important;
    top: 66px !important;
    left: 14px !important;
    right: 14px !important;
    display: none !important;
    padding: 14px !important;
    border-radius: 22px !important;
    background: rgba(3, 11, 28, 0.98) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
  }

  .main-nav.active {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .main-nav a {
    width: 100% !important;
    padding: 13px 14px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    text-align: left !important;
  }

  .main-nav .nav-highlight {
    text-align: center !important;
    margin-top: 6px !important;
  }

  .nav-socials {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    margin: 8px 0 0 !important;
  }

  .nav-socials a {
    width: 100% !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 14px !important;
    text-align: center !important;
    font-size: 12px !important;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-section {
    min-height: auto !important;
  }

  .hero-inner {
    padding: 52px 0 62px !important;
    gap: 28px !important;
  }

  .hero-content h1 {
    font-size: 34px !important;
    line-height: 1.08 !important;
    letter-spacing: -1.1px !important;
  }

  .hero-content p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-socials {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero-socials a {
    text-align: center !important;
  }

  .hero-card {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .hero-card-top strong {
    font-size: 22px !important;
  }

  .quick-actions-section {
    margin-top: 0 !important;
    padding: 22px 0 34px !important;
  }

  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .quick-action-card {
    min-height: 132px !important;
    padding: 18px 14px !important;
    border-radius: 20px !important;
    grid-template-columns: 1fr !important;
  }

  .quick-action-card span {
    width: 42px !important;
    height: 42px !important;
    font-size: 20px !important;
  }

  .quick-action-card strong {
    font-size: 14px !important;
  }

  .quick-action-card small {
    font-size: 12px !important;
  }

  .section {
    padding: 62px 0 !important;
  }

  .section h2,
  .cta-section h2 {
    font-size: 32px !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
  }

  .two-column {
    gap: 30px !important;
  }

  .feature-media {
    min-height: 250px !important;
    border-radius: 24px !important;
  }

  .media-placeholder span {
    font-size: 26px !important;
  }

  .service-grid,
  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .why-grid,
  .client-promo-box,
  .cta-inner {
    grid-template-columns: 1fr !important;
    padding: 26px !important;
  }

  .training-visual-card {
    display: grid !important;
    gap: 0 !important;
  }

  .training-media {
    min-height: 250px !important;
  }

  .training-card-floating {
    max-width: 94% !important;
    margin-top: -44px !important;
  }

  .contact-form {
    padding: 24px !important;
  }

  .floating-contact {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .floating-btn {
    min-width: 0 !important;
    width: 100% !important;
    height: 42px !important;
    font-size: 12px !important;
  }

  .site-footer {
    padding-bottom: 64px;
  }
}

@media (max-width: 420px) {
  .quick-actions-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-content h1 {
    font-size: 31px !important;
  }
}



/* =========================================================
   PHONE DESKTOP-MODE FIX
   Fixes layout when mobile browser is using "Desktop site"
   ========================================================= */

@media (max-width: 1180px) and (pointer: coarse),
       (max-width: 1180px) and (hover: none) {

  body {
    overflow-x: hidden !important;
  }

  .container {
    width: min(100% - 28px, 1180px) !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
  }

  .header-inner {
    min-height: 72px !important;
  }

  .brand img {
    width: 42px !important;
    height: 42px !important;
  }

  .brand span {
    font-size: 21px !important;
  }

  .menu-toggle {
    display: block !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 18px !important;
  }

  .menu-toggle span {
    width: 26px !important;
    height: 3px !important;
  }

  .main-nav {
    position: absolute !important;
    top: 72px !important;
    left: 14px !important;
    right: 14px !important;
    display: none !important;
    padding: 16px !important;
    border-radius: 24px !important;
    background: rgba(3, 11, 28, 0.98) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
  }

  .main-nav.active {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .main-nav a {
    width: 100% !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    text-align: left !important;
  }

  .main-nav .nav-highlight {
    text-align: center !important;
    margin-top: 8px !important;
  }

  .nav-socials {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .nav-socials a {
    width: 100% !important;
    height: 44px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 14px !important;
    text-align: center !important;
    font-size: 12px !important;
  }

  .hero-section {
    min-height: auto !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 58px 0 70px !important;
    gap: 30px !important;
  }

  .hero-content h1 {
    max-width: 100% !important;
    font-size: clamp(34px, 8vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: -1.3px !important;
  }

  .hero-content p {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .hero-socials {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .hero-socials a {
    text-align: center !important;
    padding: 13px 12px !important;
  }

  .hero-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px !important;
    border-radius: 26px !important;
  }

  .quick-actions-section {
    margin-top: 0 !important;
    padding: 24px 0 34px !important;
  }

  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .quick-action-card {
    min-height: 132px !important;
    padding: 18px 14px !important;
    border-radius: 20px !important;
    grid-template-columns: 1fr !important;
  }

  .quick-action-card span {
    width: 42px !important;
    height: 42px !important;
    font-size: 20px !important;
  }

  .quick-action-card strong {
    font-size: 14px !important;
  }

  .quick-action-card small {
    font-size: 12px !important;
  }

  .section {
    padding: 64px 0 !important;
  }

  .two-column,
  .cta-inner,
  .why-grid,
  .client-promo-box {
    grid-template-columns: 1fr !important;
  }

  .section h2,
  .cta-section h2 {
    font-size: clamp(32px, 7vw, 44px) !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
  }

  .service-grid,
  .audience-grid,
  .client-logo-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .feature-media {
    min-height: 270px !important;
    border-radius: 26px !important;
  }

  .training-media {
    min-height: 270px !important;
  }

  .training-card-floating {
    max-width: 94% !important;
    margin-top: -48px !important;
  }

  .tv-station-card,
  .about-card,
  .training-card,
  .contact-form {
    padding: 26px !important;
  }

  .floating-contact {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .floating-btn {
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    font-size: 12px !important;
  }

  .site-footer {
    padding-bottom: 70px !important;
  }
}



/* =========================================================
   FINAL PHONE POLISH
   Cleaner view for normal mobile and phone desktop mode
   ========================================================= */

@media (max-width: 720px), (pointer: coarse) and (max-width: 1180px) {

  .hero-inner {
    padding-top: 46px !important;
    padding-bottom: 48px !important;
  }

  .hero-content h1 {
    font-size: 32px !important;
    line-height: 1.12 !important;
    max-width: 94% !important;
  }

  .hero-content p {
    max-width: 94% !important;
    font-size: 14px !important;
  }

  .hero-actions .btn {
    min-height: 48px !important;
    font-size: 13px !important;
  }

  .hero-socials {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-card {
    margin-top: 8px !important;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr !important;
  }

  .quick-action-card {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 48px 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .quick-action-card small {
    grid-column: 2 !important;
  }

  .section h2,
  .cta-section h2 {
    font-size: 30px !important;
  }

  .floating-contact {
    opacity: 0.96;
  }
}



/* =========================================================
   FINAL MOBILE COMFORT POLISH
   Keeps phone view clean without over-stretching
   ========================================================= */

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 31px !important;
    line-height: 1.12 !important;
  }

  .hero-content p {
    font-size: 13.5px !important;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .quick-action-card {
    min-height: 116px !important;
    padding: 14px 12px !important;
  }

  .quick-action-card span {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
  }

  .quick-action-card strong {
    font-size: 13px !important;
  }

  .quick-action-card small {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .hero-card {
    padding: 18px !important;
  }

  .hero-card-grid div {
    padding: 14px !important;
  }
}

/* =========================================================
   HAPPY CLIENTS LOGO SUPPORT
   ========================================================= */

.client-logo-card.has-client-logo {
  gap: 10px;
  padding: 18px;
}

.client-logo-card.has-client-logo img {
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
  margin: 0 auto;
}

.client-logo-card.has-client-logo span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .client-logo-card.has-client-logo img {
    max-width: 96px;
    max-height: 42px;
  }
}