
:root {
  --cyan: #00C2D4;
  --cyan-light: #00E5F9;
  --cyan-dark: #00A3B3;
  --cyan-glow: rgba(0, 194, 212, 0.5);
  --black: #0A0A0A;
  --black-light: #121212;
  --black-lighter: #1a1a1a;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #444444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }
::selection { background: var(--cyan); color: var(--black); }

/* =================== NAVBAR =================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.75rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s; height: 60px;
}
nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px); height: 55px;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; z-index: 1001; }
.nav-logo-text { font-weight: 800; font-size: 0.85rem; letter-spacing: 0.12em; color: var(--white); }
.nav-links { display: flex; gap: 2rem; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--gray-light); text-decoration: none; font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.05em; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--cyan); transition: width 0.3s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--cyan); }
.nav-links a.active::after { width: 100%; }

@media (min-width: 1024px) {
  .nav-links a { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; color: var(--white); }
}

.nav-links li.dropdown { position: relative; }
.nav-links .dropdown-toggle { display: inline-flex; align-items: center; gap: 0.25rem; }
.nav-links .dropdown-arrow { display: inline-block; transition: transform 0.2s ease; }
.nav-links li.dropdown:hover .dropdown-arrow,
.nav-links li.dropdown:focus-within .dropdown-arrow { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  /* left: 70%; */
  transform: translateX(-50%) translateY(10px);
  width: min(550px, calc(100vw - 3rem));
  padding: 1.25rem;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  display: grid;
  gap: 0.75rem;
  align-items: start;
}

.dropdown-panel::before {
  content: none;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: rgba(10, 10, 10, 0.98);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.dropdown-panel.industries-panel {
  left: 96%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
     grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dropdown-panel.services-panel {
  left: -40%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
/* Only enable hover dropdown on desktop (laptop/desktop) */
@media (min-width: 1025px) {
  .nav-links li.dropdown:hover .dropdown-panel,
  .nav-links li.dropdown:focus-within .dropdown-panel {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0); pointer-events: auto;
  }
}
.dropdown-column { display: grid; gap: 0.75rem; }
.dropdown-column h4 { margin: 0 0 0.8rem; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.dropdown-column a { color: var(--gray-light); text-decoration: none; font-size: 0.9rem; line-height: 1.75; transition: color 0.2s; }
.dropdown-column a:hover { color: var(--white); }

@media (max-width: 1024px) { .dropdown-panel { display: none; } }

.mobile-submenu { width: 100%; margin-top: 1rem; border: none; border-radius: 18px; background: transparent; overflow: hidden; }
.mobile-submenu summary { list-style: none; padding: 0; color: var(--white); font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.75rem; border: none; background: transparent; font-size: 1.25rem; letter-spacing: 0.1em; text-transform: uppercase; }
.mobile-submenu summary::-webkit-details-marker { display: none; }
.mobile-submenu summary::after { content: '+'; font-size: 1rem; transition: transform 0.2s ease; }
.mobile-submenu[open] summary::after { transform: rotate(45deg); }
.mobile-submenu-links { display: flex; flex-direction: column; gap: 0.75rem; padding: 0.75rem 0 1rem; align-items: center; }
.mobile-submenu-links a { color: var(--white); text-decoration: none; font-size: 0.95rem; outline: none; background: transparent !important; -webkit-tap-highlight-color: transparent; }
.mobile-submenu-links a:focus, .mobile-submenu-links a:active { outline: none; background: transparent !important; color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.btn-primary {
  padding: 0.6rem 1.25rem; background: var(--cyan); color: var(--black);
  font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer; position: relative; overflow: hidden; transition: all 0.3s; white-space: nowrap;
}
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; transition: left 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--cyan-glow); }

.btn-secondary {
  padding: 0.7rem 1.5rem; background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,194,212,0.1); }

.mobile-menu-btn {
  display: none; width: 40px; height: 40px; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px; cursor: pointer;
  z-index: 1002; background: transparent; border: none; padding: 8px;
}
.mobile-menu-btn span { width: 22px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.25rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; opacity: 0; transform: translateY(20px); }
.mobile-menu.open a { opacity: 1; transform: translateY(0); transition: all 0.4s ease; }
.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:hover { color: var(--cyan); }

/* =================== HERO =================== */
#services-hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden; padding: 100px 5% 80px;
}
.services-hero-bg { position: absolute; inset: 0; z-index: 0; }
.services-hero-bg::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 100%; height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(0,194,212,0.03) 40%, rgba(0,194,212,0.08) 60%, transparent 60%);
  transform: rotate(-15deg);
}
.services-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(0,194,212,0.1), transparent),
              radial-gradient(ellipse 40% 40% at 30% 70%, rgba(0,194,212,0.05), transparent);
}
#services-hero-canvas { position: absolute; inset: 0; z-index: 1; }
.services-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  z-index: 2;
}

.services-hero-content {
  position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.services-hero-left { max-width: 600px; }

.hero-label { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-label-line { width: 40px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--cyan-light)); }
.hero-label span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); }

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; }
.hero-title .gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 50%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.1rem; color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Right - Quick Nav Cards */
.services-hero-right { position: relative; height: 500px; }

.hero-quick-card {
  position: absolute; background: rgba(18,18,18,0.9); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 1.25rem 1.5rem;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1); cursor: pointer; text-decoration: none;
  display: block;
}
.hero-quick-card:hover { border-color: rgba(0,194,212,0.4); transform: translateY(-8px) scale(1.02); box-shadow: 0 25px 60px rgba(0,194,212,0.15); }
.hero-quick-card-1 { top: 0; left: 0; width: 260px; animation: hqf1 6s ease-in-out infinite; }
.hero-quick-card-2 { top: 28%; right: 0; width: 250px; animation: hqf2 7s ease-in-out infinite; }
.hero-quick-card-3 { bottom: 5%; left: 10%; width: 280px; animation: hqf3 5s ease-in-out infinite; }
.hero-quick-card-4 { top: 10%; right: 10%; width: 200px; animation: hqf1 8s ease-in-out infinite 1s; }

@keyframes hqf1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-15px) rotate(1deg)} }
@keyframes hqf2 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-20px) rotate(-1deg)} }
@keyframes hqf3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hqc-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.hqc-title { font-size: 1rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--white); }
.hqc-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.hqc-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem;
  font-size: 0.65rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em;
}

/* =================== SECTION LABEL =================== */
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--cyan); }
.section-title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 800; line-height: 1.1; }
.section-title .highlight { color: var(--cyan); }

/* =================== SERVICES SECTIONS =================== */
.service-section {
  padding: clamp(80px,12vw,130px) clamp(1rem,5vw,5rem);
  position: relative; overflow: hidden;
}
.service-section:nth-child(even) { background: var(--black-light); }

.service-section-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C2D4' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-section-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,212,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.service-section:nth-child(odd) .service-section-glow { top: -100px; right: -100px; }
.service-section:nth-child(even) .service-section-glow { bottom: -100px; left: -100px; }

.service-inner {
  max-width: 1400px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }

/* Image Box */
.service-img-box {
  position: relative; border-radius: 24px; overflow: hidden;
  background: var(--black-lighter); border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
}
.service-img-box::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,194,212,0.08) 0%, transparent 50%); z-index: 1;
}
.service-img-box img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.service-img-box:hover img { transform: scale(1.04); }

.service-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  padding: 2rem 1.75rem 1.75rem;
  display: flex; gap: 1rem;
}
.sio-stat {
  flex: 1; background: rgba(10,10,10,0.7); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0.9rem;
  text-align: center;
}
.sio-val { font-size: 1.4rem; font-weight: 900; color: var(--cyan); margin-bottom: 0.1rem; }
.sio-lbl { font-size: 0.58rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }

/* Service Content */
.service-content { padding: 1rem 0; }

.service-num {
  font-size: 5rem; font-weight: 900; color: rgba(0,194,212,0.12);
  line-height: 1; margin-bottom: -2.5rem; position: relative; z-index: 0;
}
.service-content h2 {
  font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.service-content > p {
  font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 2rem;
}

.service-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 2rem;
}
.sf-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0,194,212,0.05); border: 1px solid rgba(0,194,212,0.1);
  border-radius: 10px; transition: all 0.3s;
}
.sf-item:hover { background: rgba(0,194,212,0.1); transform: translateX(5px); }
.sf-icon {
  width: 28px; height: 28px; background: var(--cyan); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sf-icon svg { width: 14px; height: 14px; stroke: var(--black); stroke-width: 2.5; fill: none; }
.sf-item span { font-size: 0.85rem; font-weight: 600; }

.service-cta { display: flex; gap: 1rem; align-items: center; }

/* =================== OVERVIEW STRIP =================== */
#services-overview {
  background: var(--black-light);
  padding: clamp(60px,10vw,100px) clamp(1rem,5vw,5rem);
  position: relative; overflow: hidden;
}
.overview-glow {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,194,212,0.06) 0%, transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.overview-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.overview-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.overview-header p { font-size: 1rem; color: var(--gray); margin-top: 1rem; }

.overview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.ov-card {
  background: var(--black); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 1.5rem; text-align: center;
  position: relative; overflow: hidden; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); text-decoration: none; display: block;
}
.ov-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.ov-card:hover::before { transform: scaleX(1); }
.ov-card:hover { transform: translateY(-8px); border-color: rgba(0,194,212,0.3); box-shadow: 0 20px 50px rgba(0,194,212,0.1); }

.ov-icon {
  width: 52px; height: 52px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(0,194,212,0.15), rgba(0,194,212,0.05));
  border: 1px solid rgba(0,194,212,0.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
}
.ov-card:hover .ov-icon { background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); }
.ov-card:hover .ov-icon svg { stroke: var(--black); }
.ov-icon svg { width: 24px; height: 24px; stroke: var(--cyan); stroke-width: 1.5; fill: none; transition: stroke 0.4s; }
.ov-card h4 { font-size: 0.85rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--white); }
.ov-card p { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }

/* =================== CTA =================== */
#services-cta {
  padding: clamp(100px,18vw,180px) clamp(1rem,5vw,5rem);
  position: relative; overflow: hidden;
}
.services-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 120%, rgba(0,194,212,0.15), transparent),
              radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0,194,212,0.08), transparent);
}
.services-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.services-cta-content h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.services-cta-content h2 .highlight { color: var(--cyan); }
.services-cta-content p { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
.cta-features { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.cta-feat { display: flex; align-items: center; gap: 0.5rem; }
.cta-feat svg { width: 20px; height: 20px; stroke: var(--cyan); stroke-width: 2; fill: none; }
.cta-feat span { font-size: 0.85rem; color: var(--gray-light); }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-form {
  background: var(--black-lighter); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 2.5rem; position: relative;
}
.cta-form::before {
  content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  border-radius: 0 0 3px 3px;
}
.form-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.3rem; }
.form-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-input {
  width: 100%; padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; transition: all 0.3s;
}
.form-input:focus { outline: none; border-color: var(--cyan); background: rgba(0,194,212,0.05); }
.form-input::placeholder { color: var(--gray); }
select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300C2D4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
select.form-input option { background: var(--black); color: var(--white); }
.form-submit {
  width: 100%; padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--black); font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 40px var(--cyan-glow); }

/* =================== FOOTER =================== */
footer {
  padding: clamp(40px,8vw,60px) clamp(1rem,4vw,3rem) clamp(25px,4vw,35px);
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin: 1rem 0; }
.footer-social { display: flex; gap: 0.6rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: all 0.3s; text-decoration: none; }
.social-link:hover { background: var(--cyan); border-color: var(--cyan); color: var(--black); transform: translateY(-2px); }
.footer-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.8rem; color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; min-height: 32px; }
.footer-contact-item svg { flex-shrink: 0; color: var(--cyan); width: 20px; height: 20px; overflow: visible; min-width: 20px; min-height: 20px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.8rem; color: var(--gray); text-decoration: none; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.7rem; color: var(--gray); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.7rem; color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* =================== RESPONSIVE =================== */
@media (min-width: 2560px) {
  html { font-size: 18px; }
  nav { padding: 1rem 5rem; height: 70px; }
}
@media (max-width: 1400px) { nav { padding: 0.75rem 2rem; } }
@media (max-width: 1200px) {
  nav { padding: 0.6rem 1.5rem; height: 55px; }
  nav.scrolled { height: 50px; }
  .nav-links { gap: 1.5rem; }
  .services-hero-content { grid-template-columns: 1fr; }
  .services-hero-left { max-width: 100%; text-align: center; }
  .hero-label { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .services-hero-right { height: 320px; margin-top: 2rem; }
  .hero-quick-card-1 { left: 2%; }
  .hero-quick-card-2 { right: 2%; }
  .hero-quick-card-3 { left: 20%; }
  .hero-quick-card-4 { display: none; }
  .service-inner, .service-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .service-img-box { max-height: 380px; }
  .services-cta-inner { grid-template-columns: 1fr; max-width: 600px; }
  .services-cta-content { text-align: center; }
  .cta-features { justify-content: center; }
  .cta-btns { justify-content: center; }
  .overview-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta-btn { display: none !important; }
  .mobile-menu-btn { display: flex; }
  nav { padding: 0.5rem 1.25rem; height: 52px; }
  nav.scrolled { height: 48px; }
  .service-features-grid { grid-template-columns: 1fr; }
  .services-hero-right{display: none;}
}
@media (max-width: 768px) {
  nav { padding: 0.5rem 1rem; height: 50px; }
  .nav-logo-text { font-size: 0.75rem; }
  .nav-logo-text img { width: 120px; }
  .btn-primary { padding: 0.5rem 1rem; font-size: 0.65rem; }
  .nav-cta-btn { padding: 0.4rem 0.75rem; font-size: 0.6rem; }
  #services-hero { padding: 80px 1.25rem 60px; }
  .services-hero-right { display: none; }
  .service-section { padding: 60px 1.25rem; }
  .service-img-overlay { display: none; }
  .overview-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  nav { padding: 0.4rem 0.75rem; height: 48px; }
  .mobile-menu-btn { width: 35px; height: 35px; padding: 6px; }
  .mobile-menu-btn span { width: 18px; }
  .mobile-menu a { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  .service-features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form { padding: 1.5rem; }
  .cta-features { flex-direction: column; gap: 1rem; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-primary, .cta-btns .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .overview-grid { grid-template-columns: 1fr; }
}

@media (width:768px) {
  .myBtn{
    display: none;
  }
  .nav-logo img{
    width: 230px;
  }
}
