/* ============================================================
   DYNORIX TECHNOLOGIES — style.css
   Dark Blue (#0A1628), Orange (#FF6B2C), White (#FFFFFF)
============================================================ */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --blue-dark:  #0A1628;
  --blue-mid:   #0D2045;
  --blue-light: #1A3A6B;
  --orange:     #FF6B2C;
  --orange-h:   #E55A1F;
  --white:      #FFFFFF;
  --text-soft:  #A8B5CA;
  --text-body:  #C8D3E8;
  --glass-bg:   rgba(255,255,255,0.05);
  --glass-bdr:  rgba(255,255,255,0.10);
  --radius:     14px;
  --shadow:     0 8px 40px rgba(0,0,0,0.35);
  --trans:      0.35s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET / BASE ──────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--blue-dark);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── SECTION PADDING ───────────────────────────────────── */
.section-pad { padding: 100px 0; }

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,107,44,.3);
  background: rgba(255,107,44,.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading span { color: var(--orange); }
.section-sub { color: var(--text-soft); max-width: 560px; margin: 0 auto; }
.gradient-text {
  background: linear-gradient(135deg, var(--orange), #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--orange), var(--orange-h));
  color: var(--white) !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 28px;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(255,107,44,.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,44,.5);
  background: linear-gradient(135deg, #ff7d42, var(--orange));
}

.btn-outline-custom {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 28px;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-custom:hover {
  border-color: var(--orange);
  background: rgba(255,107,44,.1);
}

.btn-ghost-sm {
  background: transparent;
  color: var(--text-soft);
  border: none;
  font-size: .85rem;
  padding: 8px;
}
.btn-ghost-sm:hover { color: var(--white); }

/* ─── SIDEBAR ───────────────────────────────────────────── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.sidebar-overlay.active { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed;
  top: 0; left: -300px;
  width: 280px; height: 100%;
  background: var(--blue-mid);
  z-index: 1060;
  display: flex; flex-direction: column;
  padding: 32px 28px;
  transition: left var(--trans);
  border-right: 1px solid var(--glass-bdr);
}
.sidebar.open { left: 0; }

.sidebar-close {
  background: none; border: none;
  color: var(--text-soft);
  font-size: 1.2rem;
  align-self: flex-end;
  cursor: pointer;
  transition: color var(--trans);
}
.sidebar-close:hover { color: var(--orange); }

.sidebar-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin: 24px 0 40px;
}
.sidebar-logo span { color: var(--orange); }

.sidebar-nav { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sidebar-link {
  color: var(--text-body);
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--trans);
  display: block;
}
.sidebar-link:hover {
  background: rgba(255,107,44,.12);
  color: var(--orange);
  transform: translateX(6px);
}

.sidebar-socials {
  display: flex; gap: 14px; margin-top: 32px;
}
.sidebar-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  transition: var(--trans);
}
.sidebar-socials a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ─── NAVBAR ────────────────────────────────────────────── */
#mainNavbar {
  padding: 18px 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
  background: transparent;
  z-index: 999;
}
#mainNavbar.scrolled {
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
}
.navbar-brand span { color: var(--orange); }

.nav-link-item {
  color: var(--text-body);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--trans);
  position: relative;
}
.nav-link-item::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--trans);
}
.nav-link-item:hover { color: var(--orange); }
.nav-link-item:hover::after { width: 100%; }

.hamburger {
  background: none; border: none;
  display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
  display: block;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at 60% 50%, #1a2f5a 0%, var(--blue-dark) 70%);
  overflow: hidden;
  display: flex; align-items: center;
}

#particleCanvas {
  position: absolute; inset: 0;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.shape-2 {
  width: 300px; height: 300px;
  background: #2a6dff;
  bottom: -80px; left: -80px;
  animation-delay: 3s;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--orange);
  bottom: 30%; right: 20%;
  animation-delay: 5s;
}
@keyframes floatShape {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,44,.12);
  border: 1px solid rgba(255,107,44,.3);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 24px;
}

.hero-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.scroll-down {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.scroll-down span {
  display: block;
  width: 10px; height: 10px;
  border-bottom: 2px solid rgba(255,255,255,.5);
  border-right:  2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
.scroll-down span:nth-child(2) { animation-delay: .2s; }
@keyframes scrollBounce {
  0%,100% { opacity: 0; transform: rotate(45deg) translate(-5px,-5px); }
  50%      { opacity: 1; transform: rotate(45deg) translate(0,0); }
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.section-body {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 24px;
}
.about-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-body); font-size: .95rem;
}
.about-list li i { color: var(--orange); font-size: 1rem; }

/* Floating image cards */
.about-images {
  position: relative;
  height: 440px;
}
.about-img-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--glass-bdr);
  transition: transform var(--trans), box-shadow var(--trans);
}
.about-img-card:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 16px 60px rgba(0,0,0,.5);
}
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.about-img-card:nth-child(1) { width: 55%; top: 0; right: 0; height: 220px; }
.about-img-card:nth-child(2) { width: 48%; bottom: 0; left: 0; height: 190px; }
.about-img-card:nth-child(3) { width: 44%; bottom: 60px; right: 0; height: 170px; }

.img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,.9));
  color: var(--white);
  padding: 20px 14px 10px;
  font-size: .8rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.img-label i { color: var(--orange); }

/* ─── FLOAT ANIMATIONS ──────────────────────────────────── */
@keyframes float1 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-18px); }
}
@keyframes float3 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
.float-anim-1 { animation: float1 4s ease-in-out infinite; }
.float-anim-2 { animation: float2 5s ease-in-out infinite; }
.float-anim-3 { animation: float3 6s ease-in-out infinite; }

/* ─── COUNTER SECTION ───────────────────────────────────── */
.counter-section {
  background: linear-gradient(135deg, var(--blue-mid), #0f2555);
  padding: 80px 0;
  position: relative;
}
.counter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='%23ffffff' fill-opacity='0.02'%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");
}

.counter-card {
  position: relative;
  padding: 36px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-bdr);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  transition: transform var(--trans), box-shadow var(--trans);
}
.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,107,44,.15);
  border-color: rgba(255,107,44,.3);
}
.counter-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.counter-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  display: inline;
  line-height: 1;
}
.counter-plus, .counter-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: inline;
}
.counter-label {
  font-size: .85rem;
  color: var(--text-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* ─── SERVICES ──────────────────────────────────────────── */
.servicesSwiper { padding-bottom: 50px !important; }

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-mid);
  border: 1px solid var(--glass-bdr);
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,107,44,.2);
  border-color: rgba(255,107,44,.4);
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--trans);
}
.service-card:hover .service-img img { transform: scale(1.08); }

.service-overlay {
  position: absolute; inset: 0;
  background: rgba(255,107,44,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--trans);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-body {
  padding: 22px 20px;
}
.service-body h4 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.service-body p {
  color: var(--text-soft);
  font-size: .88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Swiper arrows override */
.swiper-button-prev, .swiper-button-next {
  color: var(--orange) !important;
  background: rgba(255,107,44,.12);
  border-radius: 50%;
  width: 44px !important; height: 44px !important;
  border: 1px solid rgba(255,107,44,.3);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 1rem !important;
}
.swiper-pagination-bullet { background: var(--text-soft) !important; }
.swiper-pagination-bullet-active { background: var(--orange) !important; }

/* ─── WHY CHOOSE US ─────────────────────────────────────── */
.why-section { background: var(--blue-mid); }

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: rgba(255,107,44,.4);
}

.why-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,44,.2), rgba(255,107,44,.05));
  border: 2px solid rgba(255,107,44,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin: 0 auto 20px;
}
.why-card h5 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-card p { color: var(--text-soft); font-size: .9rem; line-height: 1.7; }

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery-block { margin-bottom: 16px; }

.gallery-header { margin-bottom: 24px; }
.gallery-header h3 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.gallery-header h3 i { color: var(--orange); }
.gallery-header p { color: var(--text-soft); font-size: .9rem; }

/* Web dev gallery grid */
.web-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.web-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  border: 1px solid var(--glass-bdr);
}
.web-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--trans);
}
.web-gallery-item:hover img { transform: scale(1.08); }

.web-overlay {
  position: absolute; inset: 0;
  background: rgba(255,107,44,.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--trans);
}
.web-gallery-item:hover .web-overlay { opacity: 1; }

/* Design gallery horizontal scroll */
.design-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 12px;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.design-scroll-wrap::-webkit-scrollbar { height: 4px; }
.design-scroll-wrap::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

.design-scroll {
  display: flex; gap: 16px;
  width: max-content;
}

.design-item {
  position: relative;
  width: 260px; height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid var(--glass-bdr);
  transition: transform var(--trans);
}
.design-item:hover { transform: scale(1.04); }
.design-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--trans); }
.design-item:hover img { transform: scale(1.08); }

.design-hover {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.7);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--trans);
}
.design-item:hover .design-hover { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.lightbox-close:hover { background: var(--orange); }

/* ─── AUTOMATION SECTION ────────────────────────────────── */
.auto-section { background: var(--blue-mid); }
.autoSwiper { padding-bottom: 50px !important; }

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--trans);
}
.video-card:hover .video-thumb img { transform: scale(1.06); }

.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,22,40,.4);
}
.play-btn i {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--orange), var(--orange-h));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,44,.5);
  transition: transform var(--trans);
}
.video-card:hover .play-btn i { transform: scale(1.12); }

.video-info { padding: 20px; }
.video-info h5 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.video-info p { color: var(--text-soft); font-size: .88rem; }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonialsSwiper { padding: 20px 0 50px !important; }

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-bdr);
  border-radius: var(--radius);
  padding: 30px 28px;
  margin: 0 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(255,107,44,.08);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(255,107,44,.3);
  box-shadow: 0 12px 40px rgba(255,107,44,.1);
}

.testi-stars {
  color: #FFD700;
  font-size: .85rem;
  margin-bottom: 14px;
  gap: 2px;
  display: flex;
}

.testi-text {
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.testi-author strong {
  color: var(--white);
  display: block;
  font-size: .95rem;
}
.testi-author span {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 500;
}

/* ─── CONTACT ───────────────────────────────────────────── */
.contact-section { background: var(--blue-mid); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-bdr);
}
.map-wrap iframe { display: block; border-radius: var(--radius); }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  border-radius: 10px;
  transition: border-color var(--trans);
}
.contact-info-item:hover { border-color: rgba(255,107,44,.3); }
.contact-info-item i {
  color: var(--orange);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 18px; text-align: center;
}
.contact-info-item strong {
  color: var(--white);
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-info-item span,
.contact-info-item a {
  color: var(--text-soft);
  font-size: .9rem;
}
.contact-info-item a:hover { color: var(--orange); }

/* Contact form */
.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  border-radius: var(--radius);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}
.contact-form-wrap h4 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.form-label { color: var(--text-soft); font-size: .85rem; font-weight: 500; margin-bottom: 6px; }

.custom-input {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid var(--glass-bdr) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  transition: border-color var(--trans), box-shadow var(--trans) !important;
}
.custom-input::placeholder { color: rgba(168,181,202,.5) !important; }
.custom-input:focus {
  background: rgba(255,255,255,.08) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255,107,44,.15) !important;
  outline: none !important;
}

.form-success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .9rem;
  display: flex; align-items: center;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: #060e1c;
  border-top: 1px solid var(--glass-bdr);
  padding-top: 80px;
}

.footer-top { padding-bottom: 60px; }

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--orange); }

.footer-desc {
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  transition: var(--trans);
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-heading {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-soft);
  font-size: .9rem;
  transition: color var(--trans), padding-left var(--trans);
  display: inline-block;
}
.footer-links a:hover { color: var(--orange); padding-left: 6px; }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-soft);
  font-size: .9rem;
  margin-bottom: 12px;
}
.footer-contact i { color: var(--orange); margin-top: 3px; width: 14px; text-align: center; }
.footer-contact a { color: var(--text-soft); }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--glass-bdr);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  color: var(--text-soft);
  font-size: .85rem;
}

/* ─── POPUP LEAD FORM ───────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 1500;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  background: var(--blue-mid);
  border: 1px solid var(--glass-bdr);
  border-radius: 20px;
  padding: 44px 36px;
  width: 90%; max-width: 440px;
  z-index: 1600;
  opacity: 0; pointer-events: none;
  transition: all var(--trans);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.popup-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1; pointer-events: all;
}

.popup-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--glass-bdr);
  color: var(--text-soft);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.popup-close:hover { background: var(--orange); color: var(--white); }

.popup-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-h));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(255,107,44,.4);
}
.popup-inner h4 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.popup-inner p { color: var(--text-soft); font-size: .9rem; margin-bottom: 24px; }

/* ─── FLOATING CONTACT BUTTON ───────────────────────────── */
.float-contact {
  position: fixed;
  bottom: 30px; right: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-main-btn {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-h));
  border: none; border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(255,107,44,.5);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.float-main-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(255,107,44,.65); }

.float-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--trans), transform var(--trans);
}
.float-options.open { opacity: 1; pointer-events: all; transform: translateY(0); }

.float-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform var(--trans);
}
.float-option:hover { transform: scale(1.04); }
.float-option i { font-size: 1.1rem; }

.whatsapp-btn { background: #25D366; }
.call-btn { background: var(--blue-light); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 991px) {
  .about-images { height: 360px; }
  .web-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 70px 0; }
  .about-list { grid-template-columns: 1fr; }
  .about-images { height: 300px; }
  .web-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .web-gallery-grid { grid-template-columns: 1fr 1fr; }
  .counter-card { padding: 24px 12px; }
  .counter-num { font-size: 2.2rem; }
}

/* ─── ACCESSIBILITY ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
