/* ============================================================
   ROOT — GLOBAL NEON VARIABLES
============================================================ */
:root {
  --neon-blue: #00c6ff;
  --neon-purple: #7b2ff7;
  --neon-magenta: #ff007a;
  --soft-blue: #9edbff;

  --text-main: #e8f8ff;
  --text-muted: #94b3ca;

  --card-bg: rgba(8, 12, 22, 0.7);
  --border-soft: rgba(255,255,255,0.12);

  --radius: 18px;
  --font: "Inter", "Poppins", sans-serif;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font); }

/* ============================================================
   BACKGROUND — Cinematic Neon
============================================================ */
body {
  background: #000;
  color: var(--text-main);
  overflow-x: hidden;
}

/* Background image + dim layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1517142879729-8227bf60494a?w=1600")
    center/cover no-repeat;
  filter: brightness(0.4) blur(2px);
  z-index: -3;
}

/* Neon radial glows */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0,198,255,0.35), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(255,0,120,0.4), transparent 70%);
  mix-blend-mode: screen;
  animation: neonPulse 8s infinite alternate ease-in-out;
  z-index: -2;
}

@keyframes neonPulse {
  0% { opacity: 0.45; }
  100% { opacity: 0.75; }
}

/* ============================================================
   FLOATING PARTICLES
============================================================ */
.particle {
  position: fixed;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  filter: blur(1px);
  animation: floatUp 14s linear infinite;
  z-index: -1;
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 0.2; }
  40% { opacity: 0.9; }
  100% { transform: translateY(-140vh); opacity: 0; }
}

/* Neon divider */
.section-divider {
  width: 100%;
  height: 3px;
  margin: 40px auto 60px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-magenta), transparent);
  box-shadow: 0 0 16px rgba(0,198,255,0.5);
}



/* ============================================================
   HEADER — Glass Neon Menu
============================================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  z-index: 999;
  margin-top: 100px;
}
/* LOGO */
.logo img {
  height: 100px;
  filter: drop-shadow(0 0 10px var(--neon-blue));
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover Animation — Neon Zoom-Out */
.logo img:hover {
  transform: scale(1.2); /* zoom out slightly */
  filter: drop-shadow(0 0 16px var(--neon-blue))
          drop-shadow(0 0 25px rgba(0,198,255,0.65));
}

/* NAV MENU */

nav a i {
  margin-right: 6px;
  color: var(--neon-blue);
  opacity: 0.85;
  transition: 0.25s;
}

nav a:hover i {
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

.dropdown-menu a i {
  margin-right: 8px;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
}

nav a {
  color: var(--text-muted);
  font-size: 20px;
  transition: 0.25s;
}

nav a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 12px var(--neon-blue);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
}

@media(max-width: 850px) {
  .menu-toggle { display: block; }

  nav ul {
    position: absolute;
    top: 85px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    display: none;
  }

  nav ul.active { display: flex; }
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: rgba(0,0,0,0.85);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-menu { display: block; }
@media(max-width: 850px) {
  .menu-toggle { display: block; }

  nav ul {
    position: absolute;
    top: 85px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    display: none;
  }

  nav ul.active { display: flex; }
}

/* ============================================================
   1024px — Standard Laptops
============================================================ */
@media (min-width: 1024px) {
  header { padding: 18px 10px; height: 100px; }
  .logo img { height: 100px; }
  nav ul { gap: 15px; }
  nav a { font-size: 17px; }
}
/* ============================================================
   MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {
  header {
    padding: 12px 16px;
    margin-top: 90px;
  }

  .logo img {
    height: 60px;
  }

  nav ul {
    top: 70px;
    width: 180px;
    padding: 15px;
  }

  nav a {
    font-size: 16px;
  }
}


/* ============================================================
   TABLET PORTRAIT — 481px to 768px
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {
  header {
    padding: 14px 20px;
    margin-top: 95px;
  }

  .logo img {
    height: 75px;
  }

  nav ul {
    top: 80px;
    width: 200px;
    padding: 18px;
  }

  nav a {
    font-size: 18px;
  }
}


/* ============================================================
   TABLET LANDSCAPE / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {
  header {
    padding: 10px 15px;
    margin-top: 100px;
    height: 70px;
  }

  .logo img {
    height: 90px;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 12px;
  }
}


/* ============================================================
   YOUR ORIGINAL DESKTOP STYLE — 1024px+ (unchanged)
============================================================ */
@media (min-width: 1024px) {
  header { padding: 18px 10px; height: 100px; }
  .logo img { height: 100px; }
  nav ul { gap: 15px; }
  nav a { font-size: 17px; }
}


/* ============================================================
   LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {
  header {
    padding: 22px 40px;
  }

  .logo img {
    height: 110px;
  }

  nav ul {
    gap: 28px;
  }

  nav a {
    font-size: 20px;
  }
}


/* ============================================================
   ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {
  header {
    padding: 26px 60px;
  }

  .logo img {
    height: 130px;
  }

  nav ul {
    gap: 32px;
  }

  nav a {
    font-size: 22px;
  }
}

/* ============================================================
   VIDEO HERO — Cinematic Fullscreen Auto Attempt
============================================================ */
#about-us {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.video-container {
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Custom Controls Neon */
.video-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  background: rgba(0,0,0,0.5);
  padding: 14px 22px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.video-controls button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.25s;
}

.video-controls button:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

/* ============================================================
   SECTION DIVIDER
============================================================ */
.section-divider {
  width: 100%;
  height: 3px;
  margin: 70px auto;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-magenta), transparent);
  box-shadow: 0 0 16px rgba(0,198,255,0.5);
}


/* ============================================================
   VIDEO HERO — Cinematic Fullscreen (Responsive)
============================================================ */
#about-us {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* FULLSCREEN VIDEO FILL */
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: center;   
}

/* Neon Controls */
.video-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  background: rgba(0,0,0,0.45);
  padding: 12px 20px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.video-controls button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.25s;
}

.video-controls button:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

/* ============================================================
   ABOUT CONTENT — Neon Card Layout
============================================================ */
.about-collision-city {
  padding: 120px 20px;
  max-width: 1300px;
  margin: auto;
}

.about-wrapper {
  display: flex;
  gap: 40px;
}

/* Images Column */
.about-images-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 22px rgba(0,198,255,0.2);
}

/* Text Column */
.about-content {
  flex: 1.3;
  background: rgba(0,0,0,0.55);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 22px rgba(0,198,255,0.35),
    0 0 35px rgba(255,0,120,0.15);
}

.about-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 12px var(--neon-blue);
}

.about-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(120deg, #0074ff, #00c6ff);
  padding: 12px 28px;
  margin-top: 20px;
  color: white;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0,198,255,0.6);
  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0,198,255,0.9);
}
/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {
  .about-collision-city {
    padding: 90px 16px;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .about-images-column {
    gap: 14px;
  }

  .about-image img {
    border-radius: 12px;
  }

  .about-content {
    padding: 22px;
  }

  .about-content h2 {
    font-size: 1.7rem;
  }

  .about-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .cta-button {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablets portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {
  .about-collision-city {
    padding: 100px 20px;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-content {
    padding: 28px;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}


/* ============================================================
   💻 TABLETS LANDSCAPE / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {
  .about-collision-city {
    padding: 110px 24px;
  }

  .about-wrapper {
    gap: 30px;
  }

  .about-content {
    padding: 34px;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}


/* ============================================================
   🖥️ DESKTOP (Your Original Base) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  .about-content h2 {
    font-size: 2.4rem;
  }

  .about-content p {
    font-size: 1.05rem;
  }
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {
  .about-collision-city {
    max-width: 1400px;
    padding: 140px 20px;
  }

  .about-content {
    padding: 48px;
  }

  .about-content h2 {
    font-size: 2.6rem;
  }

  .about-content p {
    font-size: 1.15rem;
  }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {
  .about-collision-city {
    max-width: 1600px;
    padding: 160px 24px;
  }

  .about-content {
    padding: 56px;
  }

  .about-content h2 {
    font-size: 3rem;
  }

  .about-content p {
    font-size: 1.25rem;
  }
}


/* ============================================================
   🖥️ 4K / ULTRA-WIDE EXTREME — 2400px+
============================================================ */
@media (min-width: 2400px) {
  .about-collision-city {
    max-width: 1900px;
    padding: 200px 30px;
  }

  .about-content {
    padding: 70px;
  }

  .about-content h2 {
    font-size: 3.4rem;
  }

  .about-content p {
    font-size: 1.35rem;
  }

  .cta-button {
    padding: 14px 34px;
    font-size: 1.1rem;
  }
}

/* ============================================================
   HOW IT WORKS — Cinematic Steps (Fully Responsive)
============================================================ */
.how-it-works {
  padding: 260px 20px 120px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.hiw-title {
  font-size: 2.6rem;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(0,198,255,0.65);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.hiw-card {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 20px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
  box-shadow: 0 0 18px rgba(0,198,255,0.15);
}

.hiw-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0,198,255,0.55);
}

.hiw-card i {
  font-size: 3rem;
  margin-bottom: 14px;
  color: var(--soft-blue);
  text-shadow: 0 0 12px var(--neon-blue);
}

.hiw-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hiw-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}


/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  .how-it-works {
    padding: 200px 16px 80px;
  }

  .hiw-title {
    font-size: 1.8rem;
    margin-bottom: 22px;
  }

  .hiw-grid {
    gap: 18px;
  }

  .hiw-card {
    padding: 18px 12px;
  }

  .hiw-card i { font-size: 2rem; }
  .hiw-card h3 { font-size: 1rem; }
  .hiw-card p { font-size: 0.85rem; }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablet portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  .how-it-works {
    padding: 210px 18px 90px;
  }

  .hiw-title {
    font-size: 2rem;
  }

  .hiw-card {
    padding: 22px 14px;
  }

  .hiw-card i { font-size: 2.3rem; }
}


/* ============================================================
   💻 TABLET LANDSCAPE / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {

  .how-it-works {
    padding: 180px 20px 100px;
    max-width: 95%;
  }

  .hiw-title {
    font-size: 2rem;
  }

  .hiw-card {
    padding: 24px 16px;
  }

  .hiw-card i { font-size: 2.6rem; }
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}


/* ============================================================
   🖥️ DESKTOP (Your original base) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  .how-it-works { padding-top: 260px; }
  .hiw-title { font-size: 2.8rem; }
  .hiw-card { padding: 26px 18px; }
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {

  .how-it-works {
    max-width: 1350px;
  }

  .hiw-title {
    font-size: 3rem;
  }

  .hiw-card {
    padding: 32px 24px;
  }

  .hiw-card i { font-size: 3.1rem; }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {

  .how-it-works {
    max-width: 1600px;
    padding-top: 280px;
  }

  .hiw-title {
    font-size: 3.3rem;
  }

  .hiw-grid {
    gap: 36px;
  }

  .hiw-card {
    padding: 36px 28px;
  }

  .hiw-card i { font-size: 3.5rem; }
  .hiw-card h3 { font-size: 1.5rem; }
  .hiw-card p { font-size: 1.1rem; }
}


/* ============================================================
   🖥️ 4K — 2400px+ (EXTREME ULTRA WIDE)
============================================================ */
@media (min-width: 2400px) {

  .how-it-works {
    max-width: 1800px;
    padding-top: 320px;
  }

  .hiw-title {
    font-size: 3.6rem;
  }

  .hiw-grid {
    gap: 40px;
  }

  .hiw-card {
    padding: 42px 30px;
  }

  .hiw-card i { font-size: 4rem; }
  .hiw-card h3 { font-size: 1.7rem; }
  .hiw-card p { font-size: 1.2rem; }
}

/* ============================================================
   FOOTER — Neon Glass Footer
============================================================ */
footer {
  margin-top: 80px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

/* Logo */
footer img {
  height: 100px;
  margin: 10px;
  filter: drop-shadow(0 0 8px var(--neon-blue));
  transition: 0.3s;
}

/* Links */
footer nav {
  margin-top: 15px;
}

footer nav a {
  color: var(--text-muted);
  margin: 0 12px;
  font-size: 18px;
  transition: 0.25s;
}

footer nav a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */
/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  footer {
    padding: 28px 14px;
  }

  footer img {
    height: 58px;
    margin-bottom: 16px;
  }

  footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  footer nav a {
    font-size: 14px;
    margin: 0 6px;
  }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablet portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  footer {
    padding: 30px 18px;
  }

  footer img {
    height: 70px;
  }

  footer nav a {
    font-size: 15px;
    margin: 0 8px;
  }
}


/* ============================================================
   💻 TABLETS / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {

  footer {
    padding: 34px 20px;
  }

  footer img {
    height: 78px;
  }

  footer nav a {
    font-size: 16px;
    margin: 0 10px;
  }
}


/* ============================================================
   🖥️ DESKTOP (Your original base) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  footer img { height: 100px; }
  footer nav a { font-size: 18px; }
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {

  footer {
    padding: 50px 30px;
  }

  footer img {
    height: 120px;
  }

  footer nav a {
    font-size: 20px;
    margin: 0 14px;
  }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {

  footer {
    padding: 60px 40px;
  }

  footer img {
    height: 135px;
  }

  footer nav a {
    font-size: 22px;
    margin: 0 16px;
  }
}


/* ============================================================
   🖥️ 4K / EXTREME ULTRA-WIDE — 2400px+
============================================================ */
@media (min-width: 2400px) {

  footer {
    padding: 80px 60px;
  }

  footer img {
    height: 150px;
  }

  footer nav a {
    font-size: 26px;
    margin: 0 22px;
  }
}


/* ============================================================
   FADE-IN SCROLL EFFECT
============================================================ */
section {
  opacity: 0;
  transform: translateY(35px);
  transition: 1s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ============================================================
   WHY CHOOSE US — Neon Grid
============================================================ */
.why-choose-collision {
  padding: 240px 20px;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.why-choose-collision h2 {
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 0 14px var(--neon-blue);
}

.reasons {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.reason {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
  box-shadow:
    0 0 20px rgba(0,198,255,0.25),
    0 0 30px rgba(255,0,120,0.15);
}

.reason:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 35px rgba(0,198,255,0.85);
  background:linear-gradient(90deg,#00c6ff,#8b5cf6);}


.reason i {
  font-size: 42px;
  color: var(--soft-blue);
  margin-bottom: 14px;
  text-shadow: 0 0 12px var(--neon-blue);
}

.reason p {
  color: #e8f8ff;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   FULL RESPONSIVE BREAKPOINT SYSTEM
============================================================ */
/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  .why-choose-collision {
    padding: 160px 16px;
  }

  .why-choose-collision h2 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .reasons {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .reason {
    padding: 20px;
  }

  .reason i {
    font-size: 32px;
  }

  .reason p {
    font-size: 13px;
  }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablet portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  .why-choose-collision {
    padding: 180px 20px;
  }

  .why-choose-collision h2 {
    font-size: 42px;
  }

  .reason {
    padding: 24px;
  }

  .reason i {
    font-size: 38px;
  }
}


/* ============================================================
   💻 TABLET LANDSCAPE / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {

  .why-choose-collision {
    padding: 200px 24px;
  }

  .why-choose-collision h2 {
    font-size: 48px;
  }

  .reasons {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

  .reason {
    padding: 26px;
  }

  .reason p {
    font-size: 14px;
  }
}


/* ============================================================
   🖥️ DESKTOP (Your Original Base Style) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  .why-choose-collision h2 {
    font-size: 56px;
  }
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {

  .why-choose-collision {
    padding: 240px 20px;
  }

  .why-choose-collision h2 {
    font-size: 60px;
  }

  .reason {
    padding: 34px;
  }

  .reason p {
    font-size: 15px;
  }

  .reason i {
    font-size: 46px;
  }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {

  .why-choose-collision {
    max-width: 1600px;
    padding: 250px 30px;
  }

  .why-choose-collision h2 {
    font-size: 70px;
  }

  .reasons {
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .reason {
    padding: 36px;
  }

  .reason i {
    font-size: 52px;
  }

  .reason p {
    font-size: 16px;
  }
}


/* ============================================================
   🖥️ 4K / EXTREME ULTRA-WIDE — 2400px+
============================================================ */
@media (min-width: 2400px) {

  .why-choose-collision {
    max-width: 2000px;
    padding: 280px 40px;
  }

  .why-choose-collision h2 {
    font-size: 82px;
  }

  .reasons {
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .reason {
    padding: 44px;
  }

  .reason i {
    font-size: 60px;
  }

  .reason p {
    font-size: 18px;
    line-height: 1.75;
  }
}

/* ============================================================
   CTA SECTION ans contact form
============================================================ */
.cta-section {
  margin-top: 200px;
  padding: 40px 15px; /* MORE COMPACT */
  text-align: center;
}

.cta-container {
  display: inline-block;
  padding: 28px; /* compact */
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 0 16px rgba(0,198,255,0.3);
}

.cta-heading {
  font-size: 26px; /* compact */
  text-shadow: var(--neon-glow);
  margin-bottom: 8px;
}

.cta-button {
  margin: 14px 0;
  padding: 10px 18px; /* compact */
  border-radius: 8px;
  font-size: 17px;
}

/* ============================================================
   CYBER NEON FORM (COMPACT)
============================================================ */
#sheetform {
  padding: 45px 15px;
  display: flex;
  justify-content: center;
}

.form-box {
  width: 100%;
  max-width: 900px;
  padding: 10px 12px;
  background: rgba(0,0,10,0.55);
  border-radius: 14px;
  border: 1px solid rgba(0,198,255,0.25);
  box-shadow: 0 0 12px rgba(0,198,255,0.25),
              inset 0 0 18px rgba(0,198,255,0.15);
  backdrop-filter: blur(10px);
}

/* ---------------- HEADER ---------------- */
.form-header {
  text-align: center;
  margin-bottom: 18px;
}
.form-header h2 {
  font-size: 24px;
  text-shadow: var(--neon-glow);
}
.form-header p {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------------- GRID ---------------- */
#jobForm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* Full width areas */
.message-box,
.submit-qr {
  grid-column: span 3;
}

/* ---------------- INPUTS ---------------- */
.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 5px 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 14px;
  transition: 0.25s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: var(--neon-glow-strong);
}

/* Floating Labels */
.input-group label {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 13px;
  color: var(--text-muted);
  pointer-events: none;
  transition: 0.25s ease;
}

input:focus + label,
textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 11px;
  background: #000;
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--neon-blue);
}

/* Textarea */
textarea {
  height: 30px;
  resize: vertical;
}

/* ---------------- SUBMIT + QR ---------------- */
.submit-qr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.submit-btn {
  width: 65%;
  padding: 4px;
  background: var(--neon-blue);
  color: black;
  border-radius: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: var(--neon-glow);
  transition: 0.3s;
}

.qr-code1 {
  width: 85px;
  filter: drop-shadow(0 0 8px var(--neon-blue));
}

/* ============================================================
   SUCCESS FLOAT (WITH CLOSE BUTTON)
============================================================ */
.success-float {
  position: fixed;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  padding: 16px 30px;
  border-radius: 12px;
  border: 1px solid var(--neon-blue);
  box-shadow: var(--neon-glow-strong);
  color: var(--soft-blue);
  font-size: 18px;
  z-index: 99999;
  display: flex;
  gap: 15px;
  align-items: center;
}

.close-success {
  font-size: 20px;
  cursor: pointer;
  color: var(--neon-blue);
  text-shadow: var(--neon-glow);
}

.close-success:hover {
  color: var(--neon-magenta);
}
/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  .cta-section {
    margin-top: 140px;
    padding: 30px 10px;
  }

  .cta-container {
    padding: 20px;
  }

  .cta-heading {
    font-size: 22px;
  }

  .cta-button {
    font-size: 15px;
    padding: 8px 15px;
  }

  .form-box {
    padding: 8px 10px;
  }

  #jobForm {
    grid-template-columns: 1fr;
  }

  .message-box,
  .submit-qr {
    grid-column: span 1;
  }

  .submit-qr {
    flex-direction: column;
    gap: 10px;
  }

  .submit-btn {
    width: 100%;
    font-size: 15px;
  }

  .qr-code1 {
    width: 70px;
  }

  .success-float {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    font-size: 15px;
  }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablet portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  .cta-section {
    margin-top: 160px;
    padding: 35px 12px;
  }

  .cta-container {
    padding: 22px;
  }

  .cta-heading {
    font-size: 24px;
  }

  #jobForm {
    grid-template-columns: 1fr 1fr;
  }

  .message-box,
  .submit-qr {
    grid-column: span 2;
  }

  .submit-qr {
    flex-direction: column;
    gap: 12px;
  }

  .submit-btn {
    width: 100%;
  }

  .qr-code1 {
    width: 80px;
  }
}


/* ============================================================
   💻 TABLETS / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {

  .cta-section {
    margin-top: 180px;
    padding: 40px 15px;
  }

  .cta-heading {
    font-size: 26px;
  }

  .form-box {
    max-width: 750px;
  }

  #jobForm {
    grid-template-columns: repeat(2, 1fr);
  }

  .message-box,
  .submit-qr {
    grid-column: span 2;
  }

  .qr-code1 {
    width: 85px;
  }
}


/* ============================================================
   🖥️ DESKTOP (Your original base) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  /* Your original design stays exactly the same */
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {

  .cta-container {
    padding: 32px;
  }

  .cta-heading {
    font-size: 30px;
  }

  .form-box {
    max-width: 1000px;
  }

  .submit-btn {
    font-size: 18px;
  }

  .qr-code1 {
    width: 95px;
  }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {

  .cta-section {
    margin-top: 240px;
  }

  .cta-heading {
    font-size: 34px;
  }

  .form-box {
    max-width: 1200px;
    padding: 18px 20px;
  }

  #jobForm {
    grid-template-columns: repeat(4, 1fr);
  }

  .message-box,
  .submit-qr {
    grid-column: span 4;
  }

  .input-group input,
  .input-group textarea {
    font-size: 16px;
    padding: 8px 12px;
  }

  .submit-btn {
    font-size: 20px;
  }

  .qr-code1 {
    width: 110px;
  }
}


/* ============================================================
   🖥️ 4K / EXTREME ULTRA-WIDE — 2400px+
============================================================ */
@media (min-width: 2400px) {

  .cta-section {
    margin-top: 300px;
  }

  .cta-heading {
    font-size: 40px;
  }

  .form-box {
    max-width: 1400px;
    padding: 22px 30px;
  }

  #jobForm {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 18px;
    padding: 10px 14px;
  }

  .submit-btn {
    font-size: 22px;
    padding: 10px 20px;
  }

  .qr-code1 {
    width: 130px;
  }



/* ============================================================
   SECTION — Core Values Neon Layout
============================================================ */
.core-values-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.core-values-section h2 {
  font-size: 48px;
  text-shadow: 0 0 14px var(--neon-blue);
  margin-bottom: 10px;
  margin-top: 150px;
}

.core-values-section .intro {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Neon divider */
.section-divider {
  width: 100%;
  height: 3px;
  margin: 40px auto 60px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-magenta), transparent);
  box-shadow: 0 0 16px rgba(0,198,255,0.5);
}

/* Cards Grid */
.core-values-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Cards */
.core-value-card {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 26px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: 0.35s ease;
  box-shadow: 0 0 18px rgba(0,198,255,0.25);
}

.core-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 26px rgba(0,198,255,0.6);
  border-color: var(--neon-blue);
  background:linear-gradient(90deg,#00c6ff,#8b5cf6);}
}

.core-value-card i {
  font-size: 42px;
  color: var(--soft-blue);
  margin-bottom: 12px;
  text-shadow: 0 0 10px var(--neon-blue);
}

/* ============================================================
   RESPONSIVE BREAKPOINT SYSTEM
============================================================ */
/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  .core-values-section {
    padding: 100px 15px;
  }

  .core-values-section h2 {
    font-size: 32px;
    margin-top: 120px;
  }

  .core-values-section .intro {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .core-values-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .core-value-card {
    padding: 18px;
  }

  .core-value-card i {
    font-size: 32px;
  }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablet portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  .core-values-section {
    padding: 120px 18px;
  }

  .core-values-section h2 {
    font-size: 40px;
  }

  .core-values-section .intro {
    font-size: 16px;
  }

  .core-value-card {
    padding: 22px;
  }

  .core-value-card i {
    font-size: 36px;
  }
}


/* ============================================================
   💻 TABLET LANDSCAPE / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {

  .core-values-section {
    padding: 100px 20px;
  }

  .core-values-section h2 {
    font-size: 44px;
  }


  .core-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
  }

  .core-value-card {
    padding: 24px;
  }
}


/* ============================================================
   🖥️ DESKTOP (Your original base) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  .core-values-section h2 {
    font-size: 48px;
  }
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {

  .core-values-section h2 {
    font-size: 54px;
  }

  .core-values-section .intro {
    font-size: 20px;
  }

  .core-values-grid {
    gap: 32px;
  }

  .core-value-card p {
    font-size: 15px;
  }

  .core-value-card i {
    font-size: 46px;
  }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {

  .core-values-section {
    max-width: 1600px;
    padding: 150px 30px;
  }

  .core-values-section h2 {
    font-size: 62px;
  }

  .core-values-section .intro {
    font-size: 22px;
    max-width: 900px;
  }

  .core-values-grid {
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .core-value-card {
    padding: 34px;
  }

  .core-value-card i {
    font-size: 52px;
  }
}


/* ============================================================
   🖥️ 4K / EXTREME ULTRA-WIDE — 2400px+
============================================================ */
@media (min-width: 2400px) {

  .core-values-section {
    max-width: 2000px;
    padding: 180px 40px;
  }

  .core-values-section h2 {
    font-size: 70px;
  }

  .core-values-section .intro {
    font-size: 24px;
    max-width: 1000px;
    margin-bottom: 80px;
  }

  .core-values-grid {
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .core-value-card {
    padding: 40px;
  }

  .core-value-card i {
    font-size: 60px;
  }

  .core-value-card p {
    font-size: 20px;
    line-height: 1.75;
  }
}

/* ============================================================
   TESTIMONIALS — CINEMATIC GLASS CARDS
============================================================ */
#testimonials {
  padding: 140px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

#testimonials h2 {
  font-size: 42px;
  margin-bottom: 25px;
  text-shadow: 0 0 18px var(--neon-blue);
  letter-spacing: 1px;
}

/* Glass Cards */
.testimonial-container {
  position: relative;
  min-height: 260px;
}

.testimonial {
  display: none;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(18px);
  animation: fadeIn 0.6s ease;
  box-shadow:
    0 0 26px rgba(0,198,255,0.4),
    0 0 40px rgba(255,0,120,0.25);
}

@keyframes fadeIn {
  from { opacity:0; transform:translateY(25px) scale(0.97); }
  to { opacity:1; transform:translateY(0) scale(1); }
}

.testimonial p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.testimonial h4 {
  margin-top: 18px;
  color: var(--soft-blue);
  font-size: 18px;
}

/* Navigation Arrows */
.testimonial-nav {
  margin-top: 25px;
  font-size: 34px;
  display: flex;
  justify-content: center;
  gap: 45px;
  user-select: none;
}

.testimonial-nav span {
  cursor: pointer;
  color: var(--soft-blue);
  transition: 0.25s;
}

.testimonial-nav span:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 16px var(--neon-blue);
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */
/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  #testimonials {
    padding: 110px 15px;
  }

  #testimonials h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .testimonial {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .testimonial p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .testimonial-nav {
    font-size: 26px;
    gap: 22px;
  }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablet portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  #testimonials h2 {
    font-size: 32px;
  }

  .testimonial {
    padding: 26px 20px;
  }

  .testimonial p {
    font-size: 15.5px;
  }

  .testimonial-nav {
    font-size: 30px;
    gap: 30px;
  }
}


/* ============================================================
   💻 TABLET LANDSCAPE / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {

  #testimonials {
    padding: 120px 20px;
  }

  #testimonials h2 {
    font-size: 36px;
  }

  .testimonial {
    padding: 32px 22px;
  }

  .testimonial p {
    font-size: 16px;
  }

  .testimonial-nav {
    font-size: 32px;
    gap: 34px;
  }
}


/* ============================================================
   🖥️ DESKTOP (Your Original Base) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  /* Desktop stays EXACTLY as you wrote it */
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {

  #testimonials h2 {
    font-size: 44px;
  }

  .testimonial {
    padding: 45px 32px;
  }

  .testimonial p {
    font-size: 17px;
  }

  .testimonial-nav {
    font-size: 36px;
    gap: 40px;
  }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {

  #testimonials {
    max-width: 1200px;
    padding: 160px 30px;
  }

  #testimonials h2 {
    font-size: 50px;
  }

  .testimonial {
    padding: 52px 40px;
  }

  .testimonial p {
    font-size: 18px;
  }

  .testimonial-nav {
    font-size: 42px;
    gap: 50px;
  }
}


/* ============================================================
   🖥️ 4K / EXTREME ULTRA-WIDE — 2400px+
============================================================ */
@media (min-width: 2400px) {

  #testimonials {
    max-width: 1400px;
    padding: 200px 40px;
  }

  #testimonials h2 {
    font-size: 56px;
  }

  .testimonial {
    padding: 60px 45px;
  }

  .testimonial p {
    font-size: 20px;
  }

  .testimonial-nav {
    font-size: 50px;
    gap: 60px;
  }
}


/* ============================================================
   FAQ Section
============================================================ */
.faq-section {
  padding: 250px 20px 100px;
  max-width: 1100px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  text-shadow: 0 0 12px var(--neon-blue);
}

/* FAQ CARD */
.faq {
  background: var(--glass-bg);
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 16px rgba(0,198,255,0.15);
}

.faq:hover {
  box-shadow: 0 0 22px rgba(0,198,255,0.35);
  border-color: var(--neon-blue);
}

/* QUESTION */
.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--soft-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.faq.active .faq-answer {
  max-height: 400px; /* allow longer answers */
}

/* ============================================================
   RESPONSIVE BREAKPOINT SYSTEM
============================================================ */

/* ----------- 1024px (small laptops) ----------- */
@media (max-width: 1024px) {
  .faq-section {
    padding-top: 220px;
  }
  .faq-section h2 {
    font-size: 36px;
  }
  .faq-question {
    font-size: 17px;
  }
  .faq {
    padding: 18px;
  }
}

/* ----------- 768px (tablets) ----------- */
@media (max-width: 768px) {
  .faq-section {
    padding-top: 180px;
  }
  .faq-section h2 {
    font-size: 32px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq {
    padding: 16px;
  }
}

/* ----------- 600px (large phones) ----------- */
@media (max-width: 600px) {
  .faq-section {
    padding-top: 150px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .faq-section h2 {
    font-size: 28px;
  }
  .faq {
    padding: 14px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    font-size: 14px;
  }
}

/* ----------- 480px (regular phones) ----------- */
@media (max-width: 480px) {
  .faq-section {
    padding-top: 130px;
  }
  .faq-section h2 {
    font-size: 24px;
  }
  .faq-question {
    font-size: 14px;
  }
  .faq-answer {
    font-size: 13px;
  }
}

/* ----------- 360px (small phones) ----------- */
@media (max-width: 360px) {
  .faq-section {
    padding-top: 110px;
  }
  .faq-section h2 {
    font-size: 22px;
  }
  .faq {
    padding: 12px;
  }
  .faq-question {
    font-size: 13px;
  }
  .faq-answer {
    font-size: 12.5px;
  }
}

/* ----------- 4K MONITORS ----------- */
@media (min-width: 2400px) {
  .faq-section {
    max-width: 1600px;
    padding-top: 300px;
  }
  .faq-section h2 {
    font-size: 58px;
  }
  .faq {
    padding: 30px;
    border-radius: 20px;
  }
  .faq-question {
    font-size: 24px;
  }
  .faq-answer {
    font-size: 20px;
    line-height: 1.8;
  }
}


/* ============================================================
   LOCATION SECTION — Neon Cards
============================================================ */
.location-section {
  padding:200px 20px 100px;
  max-width:1300px;
  margin:auto;
}

.location-content {
  background:rgba(0,0,0,0.55);
  border-radius:20px;
  padding:50px;
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  box-shadow:
    0 0 22px rgba(0,198,255,0.35),
    0 0 32px rgba(255,0,120,0.15);
}

.location-content h1 {
  text-align:center;
  font-size:42px;
  margin-bottom:12px;
  text-shadow:0 0 14px var(--neon-blue);
}

.location-content p {
  text-align:center;
  color:var(--text-muted);
  margin-bottom:30px;
}

/* Info + Map Layout */
.info-map-wrapper {
  display:flex;
  gap:30px;
}

.location-info {
  flex:1;
  padding:20px;
}

.location-info h2 {
  font-size:28px;
  margin-bottom:16px;
  text-shadow:0 0 12px var(--neon-blue);
}

.location-info h3 {
  color:var(--neon-blue);
  margin-top:16px;
}

.location-info p {
  line-height:1.6;
  color:var(--text-muted);
}

/* Map Neon Frame */
.location-map {
  flex:1.2;
  height:380px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 22px rgba(0,198,255,0.35),
    0 0 32px rgba(255,0,120,0.2);
}

.location-map iframe {
  width:100%; height:100%;
  border:none;
}

/* Mobile */
@media(max-width:900px) {
  .info-map-wrapper { flex-direction:column; }
}


/* ============================================================
   SECTION — Mission Neon Panel
============================================================ */
.mission-section {
  padding: 280px 20px 100px;
  max-width: 1100px;
  margin: auto;
}

.mission-container {
  background: rgba(0,0,0,0.55);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 22px rgba(0,198,255,0.35),
    0 0 32px rgba(255,0,120,0.15);
}

.mission-container h2 {
  text-align: center;
  font-size: 42px;
  text-shadow: 0 0 14px var(--neon-blue);
  margin-bottom: 50px;
}

.mission {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* ----------- 1366px (large desktops) ----------- */
@media (max-width: 1366px) {
  .mission-container {
    padding: 45px;
  }
  .mission-container h2 {
    font-size: 38px;
  }
}

/* ----------- 1024px (laptops) ----------- */
@media (max-width: 1024px) {
  .mission-section {
    padding: 240px 20px 80px;
  }
  .mission-container {
    padding: 40px;
  }
  .mission-container h2 {
    font-size: 34px;
  }
  .mission {
    font-size: 17px;
  }
}

/* ----------- 768px (tablets) ----------- */
@media (max-width: 768px) {
  .mission-section {
    padding: 200px 20px 60px;
  }
  .mission-container {
    padding: 32px;
  }
  .mission-container h2 {
    font-size: 30px;
    margin-bottom: 35px;
  }
  .mission {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ----------- 600px (large phones) ----------- */
@media (max-width: 600px) {
  .mission-container {
    padding: 28px;
  }
  .mission-container h2 {
    font-size: 28px;
  }
  .mission {
    font-size: 15.5px;
  }
}

/* ----------- 480px (phones) ----------- */
@media (max-width: 480px) {
  .mission-section {
    padding: 180px 18px 50px;
  }
  .mission-container {
    padding: 22px;
  }
  .mission-container h2 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .mission {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* ----------- 360px (small phones) ----------- */
@media (max-width: 360px) {
  .mission-section {
    padding: 150px 16px 40px;
  }
  .mission-container {
    padding: 18px;
  }
  .mission-container h2 {
    font-size: 22px;
  }
  .mission {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ----------- 4K MONITORS (Ultra-Wide) ----------- */
@media (min-width: 2400px) {
  .mission-section {
    max-width: 1500px;
    padding: 330px 40px 140px;
  }
  .mission-container {
    padding: 70px;
  }
  .mission-container h2 {
    font-size: 4rem;
  }
  .mission {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}






/* ============================================================
   INSURANCE PARTNERS — Cinematic Neon Grid + Marquee
============================================================ */

#logo-insurance-partners {
  padding: 100px 25px 80px;
  text-align: center;
  max-width: 1400px;
  margin: auto;
}

#logo-insurance-partners h2 {
  font-size: 50px;
  margin-bottom: 10px;
  text-shadow: 0 0 14px var(--neon-blue);
  margin-top: 150px;
}

#logo-insurance-partners p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Neon Glass Card Style */
.logopartner {
  background: rgba(0,0,0,0.55);
  padding: 20px 28px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 22px rgba(0,198,255,0.3),
    0 0 30px rgba(255,0,120,0.18);
  transition: 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logopartner:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: var(--neon-blue);
  box-shadow:
    0 0 30px rgba(0,198,255,0.7),
    0 0 45px rgba(255,0,120,0.35);
}

/* Logo Image */
.logopartner img {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0,198,255,0.4));
}

/* SCROLLING MARQUEE */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 40px 0;
}

.logo-marquee-content {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: scroll-left 28s linear infinite;
}

.logo-marquee:hover .logo-marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE — ALL BREAKPOINTS
============================================================ */

/* ---------- 1366px (large laptops/desktops) ---------- */
@media (max-width: 1366px) {
  #logo-insurance-partners h2 { font-size: 44px; }
  .logopartner img { height: 100px; }
}

/* ---------- 1024px (laptops) ---------- */
@media (max-width: 1024px) {
  #logo-insurance-partners h2 { font-size: 40px; }
  #logo-insurance-partners p { font-size: 17px; }
  .logopartner img { height: 95px; }
  .logo-marquee-content { gap: 50px; }
}

/* ---------- 768px (tablets) ---------- */
@media (max-width: 768px) {
  #logo-insurance-partners {
    padding: 80px 20px 60px;
  }
  #logo-insurance-partners h2 { font-size: 34px; }
  #logo-insurance-partners p { font-size: 16px; }
  .logopartner { padding: 16px 22px; }
  .logopartner img { height: 85px; }
  .logo-marquee-content { gap: 40px; }
}

/* ---------- 600px ---------- */
@media (max-width: 600px) {
  #logo-insurance-partners h2 { font-size: 30px; }
  .logopartner img { height: 75px; }
  .logo-marquee { padding: 30px 0; }
  .logo-marquee-content { gap: 30px; }
}

/* ---------- 480px (small phones) ---------- */
@media (max-width: 480px) {
  #logo-insurance-partners h2 { font-size: 28px; }
  #logo-insurance-partners p { font-size: 15px; }
  .logopartner { padding: 12px 18px; }
  .logopartner img { height: 68px; }
  .logo-marquee-content { gap: 22px; }
}

/* ---------- 360px (smallest phones) ---------- */
@media (max-width: 360px) {
  #logo-insurance-partners h2 { font-size: 24px; }
  #logo-insurance-partners p { font-size: 14px; }
  .logopartner img { height: 60px; }
  .logo-marquee-content { gap: 18px; }
}

/* ---------- 4K MONITORS (ultra-wide) ---------- */
@media (min-width: 2400px) {
  #logo-insurance-partners {
    max-width: 1800px;
    padding: 160px 40px 120px;
  }

  #logo-insurance-partners h2 {
    font-size: 64px;
  }

  .logopartner {
    padding: 30px 40px;
    border-radius: 24px;
  }

  .logopartner img {
    height: 160px;
  }

  .logo-marquee-content {
    gap: 100px;
    animation-duration: 36s;
  }
}

/* ============================================================
   SERVICES SECTION 
============================================================ */
#services {
  padding: 140px 20px;
  max-width: 1400px;
  margin: auto;
  position: relative;
  overflow: hidden; /* KEEP PARTICLES INSIDE */
}

#services h1 {
  text-align:center;
  font-size:3rem;
  margin-bottom:40px;
  text-shadow:0 0 15px var(--neon-blue);
}

/* Bring content above particles */
.services-wrapper,
.services-split,
.services-column,
.services-container {
  position:relative;
  z-index:2;
}

/* SPLIT LAYOUT */
.services-split {
  display:flex;
  gap:40px;
}

/* LEFT COLUMN */
.services-column {
  flex:0.8;
  background:var(--glass-bg);
  padding:25px;
  border-radius:18px;
  border:1px solid var(--border-soft);
  backdrop-filter:blur(6px);
  box-shadow:0 0 22px rgba(0,198,255,0.25);
}

.services-column h2 {
  text-align:center;
  margin-bottom:25px;
  text-shadow:0 0 10px var(--neon-blue);
}

.service-link {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  color:var(--text-main);
  text-decoration:none;
  border-radius:12px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  transition:.3s;
}

.service-link:hover {
  background:rgba(0,198,255,0.25);
  transform:translateX(6px);
  box-shadow:0 0 20px rgba(0,198,255,0.35);
}

/* RIGHT CARDS */
.services-container {
  flex:2.2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-card {
  background:var(--glass-bg);
  padding:22px;
  border-radius:16px;
  border:1px solid var(--border-soft);
  text-align:center;
  backdrop-filter:blur(10px);
  transition:0.3s ease;
  box-shadow:
    0 0 16px rgba(0,198,255,0.25),
    0 0 22px rgba(255,0,120,0.12);
}

.service-card:hover {
  transform:translateY(-6px);
  box-shadow:
    0 0 28px rgba(0,198,255,0.45),
    0 0 32px rgba(255,0,120,0.25);
}

.card-icon {
  font-size:2.3rem;
  margin-bottom:12px;
  color:var(--neon-blue);
  text-shadow:0 0 14px var(--neon-blue);
}
/* ============================================================
   📱 MOBILE — 0px to 480px (small phones)
============================================================ */
@media (max-width: 480px) {

  #services {
    padding: 110px 16px;
  }

  #services h1 {
    font-size: 2rem;
  }

  .services-split {
    flex-direction: column;
    gap: 28px;
  }

  .services-column {
    padding: 16px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 16px;
  }

  .service-link {
    padding: 12px;
  }

  .card-icon {
    font-size: 1.9rem;
  }
}


/* ============================================================
   📱📱 MOBILE LARGE — 481px to 768px (tablet portrait)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  #services h1 {
    font-size: 2.3rem;
  }

  .services-split {
    flex-direction: column;
  }

  .services-column {
    padding: 20px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .card-icon {
    font-size: 2rem;
  }
}


/* ============================================================
   💻 TABLET LANDSCAPE / SMALL LAPTOP — 769px to 1023px
============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {

  #services {
    padding: 120px 20px;
  }

  #services h1 {
    font-size: 2.4rem;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  .services-column {
    padding: 20px;
  }
}


/* ============================================================
   🖥️ DESKTOP (Original Base Style) — 1024px+
============================================================ */
@media (min-width: 1024px) {
  /* Your original desktop styles remain as-is */
}


/* ============================================================
   🖥️🖥️ LARGE DESKTOP — 1440px+
============================================================ */
@media (min-width: 1440px) {

  #services h1 {
    font-size: 3rem;
  }

  .services-container {
    gap: 26px;
  }

  .service-card {
    padding: 26px;
  }

  .card-icon {
    font-size: 2.6rem;
  }
}


/* ============================================================
   🖥️ ULTRA-WIDE — 1800px+
============================================================ */
@media (min-width: 1800px) {

  #services {
    max-width: 1700px;
    padding: 160px 36px;
  }

  #services h1 {
    font-size: 3.4rem;
  }

  .services-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .service-card {
    padding: 32px;
    font-size: 1.1rem;
  }

  .card-icon {
    font-size: 3rem;
  }
}


/* ============================================================
   🖥️ 4K / EXTREME ULTRA-WIDE — 2400px+
============================================================ */
@media (min-width: 2400px) {

  #services {
    padding: 200px 60px;
    max-width: 2000px;
  }

  #services h1 {
    font-size: 4rem;
  }

  .services-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .service-card {
    padding: 40px;
    font-size: 1.3rem;
  }

  .card-icon {
    font-size: 3.5rem;
  }
}
}