/* ============================================================
   FORNISSEUR — app.css (AGGRESSIVE RED & BLACK HUD EDITION)
   ============================================================ */

:root {
  --primary: #C63A2C;
  --primary-deep: #8E1F17;
  --bg-dark: #0F0F0F;
  --bg-charcoal: #2B2B2B;
  --text-main: #F2F2F2;
  --text-dim: #A6A6A6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  --gradient-red: linear-gradient(135deg, #8E1F17 0%, #C63A2C 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0F0F0F 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.seox-logo {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  background: rgba(198, 58, 44, 0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: inline-block;
  border-left: 3px solid var(--primary);
}

/* NAVBAR */
.seox-nav {
  padding: 30px 0;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* WHY CHOOSE GRID */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CTA HEADLINE — responsive */
.cta-headline {
  font-size: 48px;
}


.seox-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.seox-logo img {
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 768px) {
  .seox-logo {
    font-size: 18px !important;
    gap: 8px !important;
  }
}

.logo-box {
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .logo-box {
    padding: 2px 8px !important;
  }
}

/* MARQUEE ANIMATION */
.marquee-container {
  overflow: hidden;
  position: relative;
  display: flex;
  user-select: none;
  gap: 30px;
  padding: 40px 0;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll-left 40s linear infinite;
}

.marquee-reverse {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.seox-menu {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin: 0 30px;
}

.seox-menu a {
  color: var(--text-main);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.seox-menu a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 800;
  flex-shrink: 0;
  text-align: center;
}

/* HERO */
.seox-hero {
  padding: 140px 0 60px;
  background: radial-gradient(circle at top, #1a0a0a 0%, #0F0F0F 80%);
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-text {
  margin: 0 auto 40px;
  max-width: 900px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--white);
  text-transform: uppercase;
}

.hero-text p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-main {
  background: var(--gradient-red);
  color: #fff;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(198, 58, 44, 0.3);
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(198, 58, 44, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-main);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
}

.btn-outline:hover {
  background: var(--white);
  color: #000;
}

/* HUD LAYOUT MATCHING USER IMAGE */
.hero-visual {
  position: relative;
  perspective: 2500px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= SPLIT HERO LAYOUT ================= */
.hero-split {
  text-align: left !important;
  padding: 120px 0 60px !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-split-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT COLUMN */
.hero-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 5;
}

.hero-left .section-badge {
  align-self: flex-start;
  margin-bottom: 25px;
}

.hero-heading {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 25px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  white-space: normal;
}

.hero-heading-accent {
  color: var(--primary);
  font-style: italic;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-sub em {
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
}

.hero-btns-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.hero-trust {
  padding-top: 10px;
  border-top: 1px solid #2a2a2a;
}

/* RIGHT COLUMN */
.hero-right {
  flex: 0 0 520px;
  position: relative;
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}


.hero-char-wrapper {
  position: relative;
  z-index: 10;
  transition: transform 0.5s ease;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(198, 58, 44, 0.4) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

/* Internal HUD Rings */
.hero-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border: 2px solid rgba(198, 58, 44, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(198, 58, 44, 0.2);
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(198, 58, 44, 0.2);
  border-radius: 50%;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.8;
  }
}

.hero-char {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: bottom;
  display: block;
  position: relative;
  z-index: 12;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

.card-float {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 20;
  text-align: left;
  border: 1px solid #444;
  border-left: 6px solid var(--primary);
  transform-style: preserve-3d;
  animation: float3d 6s ease-in-out infinite alternate;
}

@keyframes float3d {
  0% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: translateY(-20px) rotateX(8deg) rotateY(8deg);
  }
}

/* Precise Positions from HUD screenshot */
.stat-card-left {
  top: 20%;
  left: 10%;
  width: 220px;
}

.stat-card-right {
  top: 15%;
  right: 10%;
  width: 230px;
}

.lead-card-bottom {
  bottom: 20%;
  left: 5%;
  width: 250px;
}

.floating-icon {
  position: absolute;
  z-index: 15;
  width: 50px;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.8));
  animation: float-orbit 10s ease-in-out infinite alternate;
  opacity: 1;
}

@keyframes float-orbit {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(15px, 15px) scale(1.05);
  }
}

.icon-fb {
  top: 38%;
  left: 38%;
}

.icon-ig {
  top: 30%;
  right: 38%;
}

.icon-ln {
  top: 52%;
  left: 32%;
}

.icon-pi {
  bottom: 25%;
  left: 35%;
}

.icon-be {
  bottom: 35%;
  right: 38%;
}

.icon-tg {
  top: 58%;
  right: 32%;
}

/* STATS STRIP */
.seox-stats-strip {
  background: var(--bg-charcoal);
  padding: 80px 0;
  border-top: 1px solid #333;
}

.stats-strip-inner {
  display: flex;
  justify-content: space-around;
}

.stat-box h3 {
  font-size: 50px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* SERVICES */
.seox-services {
  background: var(--bg-dark);
}

/* WHY CHOOSE GRID */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* CTA HEADLINE */
.cta-headline {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

/* STATS STRIP */
.seox-stats-strip {
  background: #111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 60px 0;
}

.stats-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
}


/* PREMIUM SERVICE GRID */
.seox-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card-3d {
  background: #1a1a1a;
  padding: 35px 22px;
  border-radius: 4px;
  border: 1px solid #333;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  text-decoration: none;
}

.service-card-3d:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.svc-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 35px;
  color: var(--primary);
}

.service-card-3d h4 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.service-card-3d p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 35px;
  line-height: 1.6;
}

.svc-goal-badge {
  background: rgba(198, 58, 44, 0.05);
  border: 1px solid rgba(198, 58, 44, 0.3);
  color: var(--primary);
  padding: 15px 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  border-radius: 2px;
}

.svc-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.svc-list li {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-list li svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.svc-learn-btn {
  margin-top: 30px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid rgba(198, 58, 44, 0.3);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block;
  align-self: center;
}

.service-card-3d:hover .svc-learn-btn,
.svc-page-card:hover .svc-learn-btn {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* SERVICES PAGE CARD (4-col grid) */
.svc-page-card {
  background: var(--bg-charcoal);
  padding: 35px 22px;
  border-radius: 4px;
  border: 1px solid #333;
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
}

.svc-page-card h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.svc-page-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}


/* FOOTER */
.seox-footer {
  background: #000;
  padding: 100px 0 50px;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand .seox-logo {
  margin-bottom: 30px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 16px;
}

.seox-footer h5 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--white);
  text-transform: uppercase;
}

.seox-footer ul li {
  margin-bottom: 15px;
}

.seox-footer ul a {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.seox-footer ul a:hover {
  color: var(--primary);
  border-left: 2px solid var(--primary);
  padding-left: 10px;
}

.footer-contact p {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 80px;
  padding-top: 40px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 1px;
}

/* FOOTER MOBILE CENTERING */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-brand .seox-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center !important;
  }

  .seox-footer ul {
    padding: 0;
  }

  .seox-footer ul a:hover {
    border-left: none;
    padding-left: 0;
  }

  .footer-bottom {
    margin-top: 40px;
    font-size: 12px;
  }
}

/* NAV SCROLLED */
nav.seox-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(198, 58, 44, 0.3);
  position: fixed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes heroFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-15px);
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 10px;
  transition: var(--transition);
}

.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* FORM CLASSES */
.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-dim);
}

.form-input {
  width: 100%;
  padding: 15px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 10px;
  transition: var(--transition);
}

.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* RESPONSIVE */
/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .seox-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .seox-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-heading {
    font-size: 52px;
  }

  .hero-split-inner {
    gap: 30px;
  }

  .hero-right {
    flex: 0 0 420px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cta-headline {
    font-size: 36px;
  }
}

@media (max-width: 768px) {

  /* General */
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* SPLIT HERO → stack vertically on mobile */
  .hero-split-inner {
    flex-direction: column-reverse;
    gap: 0;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    width: 100%;
    padding-bottom: 40px;
  }

  .hero-left .section-badge {
    align-self: center;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 8px 12px;
  }

  .hero-heading {
    font-size: 36px !important;
    text-align: center;
  }

  .hero-sub {
    font-size: 15px;
    text-align: center;
    max-width: 100%;
  }

  .hero-btns-left {
    justify-content: center;
  }

  .hero-right {
    flex: none;
    width: 100%;
    max-width: 340px;
    min-height: 320px;
    margin: 0 auto;
  }

  .hero-char {
    max-height: 320px;
  }

  /* NAV */
  .hamburger {
    display: flex;
  }

  .seox-logo {
    font-size: 18px !important;
    gap: 8px !important;
    flex-shrink: 0;
  }

  .seox-logo img {
    height: 30px !important;
    /* Scale slightly down for mobile headers */
    width: auto !important;
    max-width: none !important;
    flex-shrink: 0;
  }

  .logo-box {
    padding: 2px 8px !important;
    flex-shrink: 0;
  }

  .seox-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    align-items: center;
    transition: 0.5s ease;
    z-index: 10000;
    border-left: 1px solid #333;
    display: flex;
  }

  .seox-menu.active {
    right: 0;
  }



  /* HERO */
  .seox-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 32px !important;
  }

  .hero-heading {
    font-size: 36px !important;
    letter-spacing: -0.5px !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-heading span[style] {
    letter-spacing: 0px !important;
    font-size: 0.5em !important;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-trust {
    text-align: center;
    margin-top: 15px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-char {
    width: 100%;
    max-height: 300px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .floating-icon,
  .card-float,
  .hero-glow,
  .icon-orbit-wrapper {
    display: none !important;
  }

  /* SERVICES */
  .seox-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .service-card-3d {
    padding: 25px 18px;
  }

  /* STATS */
  .seox-stats-strip {
    padding: 50px 0;
  }

  .stats-strip-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .stat-box h3 {
    font-size: 36px;
  }

  /* CONTACT / FORM */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* WHY CHOOSE */
  .why-choose-grid,
  .seox-reason-grid {
    grid-template-columns: 1fr !important;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .seox-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* MARQUEE — reduce card size on mobile */
  .marquee-content>div {
    width: 280px !important;
  }

  /* SECTION HEADINGS */
  .section-center h2,
  h2 {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  .seox-services-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 26px !important;
  }

  /* SPLIT HERO tiny screen */
  .hero-heading {
    font-size: 24px !important;
    letter-spacing: 0 !important;
  }

  .hero-right {
    display: none !important;
  }

  .seox-hero {
    min-height: auto;
    padding: 100px 0 50px !important;
  }

  .hero-btns-left {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns-left .btn-main,
  .hero-btns-left .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section-center h2,
  h2 {
    font-size: 22px !important;
  }

  .cta-headline {
    font-size: 24px !important;
  }

  .btn-main,
  .btn-outline {
    padding: 14px 24px;
    font-size: 13px;
  }

  .stat-box h3 {
    font-size: 30px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr !important;
  }
}


.marquee-container {
  overflow: hidden;
  position: relative;
  display: flex;
  user-select: none;
  gap: 30px;
  padding: 40px 0;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll-left 40s linear infinite;
}

.marquee-reverse {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

/* HERO ORBIT ANIMATIONS */
.icon-orbit-wrapper {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  z-index: 25;
  pointer-events: none;
}

.head-orbit {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-orbit-subtle 8s ease-in-out infinite alternate;
  pointer-events: auto;
}

.head-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes float-orbit-subtle {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(15px, -15px) rotate(5deg);
  }
}

.icon-orbit-wrapper .icon-fb {
  top: 0;
  left: 10%;
  animation-delay: 0s;
}

.icon-orbit-wrapper .icon-ig {
  top: 10%;
  right: 10%;
  animation-delay: 1.5s;
}

.icon-orbit-wrapper .icon-ln {
  top: 40%;
  left: -10%;
  animation-delay: 3s;
}

.icon-orbit-wrapper .icon-tg {
  top: 45%;
  right: -12%;
  animation-delay: 4.5s;
}

/* Custom Grids from About & Case Studies */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Detail & Contact Grids */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.service-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Fix form padding on mobile for contact/service detail */
  .detail-grid>div[style*="padding: 50px"],
  div[style*="padding: 50px 40px"] {
    padding: 25px 20px !important;
  }

  /* Page hero on inner pages */
  .seox-hero[style*="min-height: 50vh"] {
    padding: 120px 0 60px !important;
  }

  .seox-hero[style*="min-height: 50vh"] .hero-text h1 {
    font-size: 28px !important;
  }
}