/* =============================================
   SHEEVA — Global Stylesheet
   Brand: Deep Blue / Cyan tech aesthetic
   Fonts: Sora (headings) + DM Sans (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ---- CSS Design Tokens ---- */
:root {
  --blue-deep:    #0a1628;
  --blue-mid:     #0d2c5e;
  --blue-brand:   #1565c0;
  --blue-bright:  #1e88e5;
  --cyan:         #00b4d8;
  --cyan-light:   #48cae4;
  --white:        #f8faff;
  --off-white:    #eaf0fb;
  --text-dark:    #0d1b2a;
  --text-muted:   #5a7099;
  --accent:       #00e5ff;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2c5e 50%, #1565c0 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #eaf0fb 100%);
  --shadow-card:  0 8px 32px rgba(21, 101, 192, 0.12);
  --shadow-hover: 0 16px 48px rgba(21, 101, 192, 0.22);
  --radius:       12px;
  --radius-lg:    20px;
  --nav-h:        72px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  color: var(--blue-deep);
}

/* ---- Utility Classes ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn--primary {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: 0 4px 20px rgba(21,101,192,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(21,101,192,0.45);
}

.btn--outline {
  border: 2px solid var(--blue-brand);
  color: var(--blue-brand);
  background: transparent;
}
.btn--outline:hover {
  background: var(--blue-brand);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--blue-brand);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;
}

.nav__logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav__logo-text span {
  color: var(--cyan);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 16px;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover { background: rgba(255,255,255,0.15); }
.lang-btn svg { width: 14px; height: 14px; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  border: 1px solid rgba(21,101,192,0.1);
  min-width: 185px;
  display: none;
  overflow: hidden;
  z-index: 1100;    /* above nav (1000) AND mobile menu (1001) */
}

.lang-dropdown.open { display: block; animation: dropIn 0.18s ease; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;     /* taller = easier to tap on mobile */
  font-size: 0.88rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s;
  min-height: 48px;       /* minimum touch target */
  -webkit-tap-highlight-color: transparent;
}

.lang-option:hover { background: var(--off-white); }
.lang-option.selected { background: #e3f0ff; color: var(--blue-brand); font-weight: 600; }

/* Social Icons in Nav */
.nav__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  font-size: 0.85rem;
}

.social-icon:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;           /* larger tap area */
  cursor: pointer;
  min-width: 44px;         /* Android touch minimum */
  min-height: 44px;        /* Android touch minimum */
  -webkit-tap-highlight-color: transparent;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  transition: background 0.2s;
}

.nav__hamburger:active { background: rgba(0,180,216,0.2); }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--blue-deep);
  padding: 8px 0 20px;
  border-bottom: 2px solid rgba(0,180,216,0.3);
  z-index: 1001;           /* above nav (1000) and everything else */
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  /* Smooth slide-down animation */
  transform-origin: top;
}

.nav__mobile.open {
  display: block;
  animation: menuSlideDown 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__mobile .nav__link {
  display: flex;
  align-items: center;
  padding: 15px 24px;          /* tall rows = easy to tap on mobile */
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
  min-height: 52px;            /* Android touch target minimum */
}

.nav__mobile .nav__link:hover,
.nav__mobile .nav__link:active {
  background: rgba(0,180,216,0.12);
  color: var(--cyan);
}

.nav__mobile .nav__link.active {
  color: var(--cyan);
  border-left: 3px solid var(--cyan);
  padding-left: 21px;
}

.nav__mobile .nav__link:last-of-type { border-bottom: none; }

/* Email shield — text set by inline JS to defeat Cloudflare obfuscation */
.cf-email-shield::before { content: attr(data-u) '\0040' attr(data-d); }
.cf-email-shield { unicode-bidi: bidi-override; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Geometric background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* Animated grid lines */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__text { max-width: 560px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(135deg, var(--cyan), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Logo / Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__logo-ring {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin-slow 20s linear infinite;
}

.hero__logo-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 180, 216, 0.15);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__logo-center {
  width: 240px;
  height: 240px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite reverse;
  box-shadow: 0 0 80px rgba(0,180,216,0.2), inset 0 0 60px rgba(13,44,94,0.6);
}

.hero__logo-center img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0,180,216,0.5));
}

/* Orbiting dot */
.hero__orbit-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  top: 10px; left: 50%;
  margin-left: -6px;
  box-shadow: 0 0 20px var(--cyan);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--blue-mid);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__number {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  display: block;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__image-card::after {
  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.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about__image-logo {
  width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0,180,216,0.4));
  position: relative;
  z-index: 1;
}

.about__badge {
  position: absolute;
  bottom: 28px; right: -24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__badge-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-brand), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.about__badge-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.about__badge-text span { font-size: 0.8rem; color: var(--text-muted); }

.about__content { }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(21,101,192,0.08);
}

.about__feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-brand), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about__feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-deep);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(21,101,192,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-brand), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-deep);
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card__link:hover { gap: 10px; }

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-card__img {
  height: 200px;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.4) 0%, transparent 60%);
}

.product-card__body {
  padding: 24px;
}

.product-card__tag {
  display: inline-block;
  background: #e3f0ff;
  color: var(--blue-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 36px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(21,101,192,0.06);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,101,192,0.2);
}

.why-card__icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-brand), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(21,101,192,0.25);
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-section .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand { }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer__logo-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.footer__logo-name span { color: var(--cyan); }

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer__social:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover { color: var(--cyan); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer__contact-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 0.8rem;
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom a { color: var(--cyan); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--gradient-hero);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--cyan); }
.breadcrumb span { opacity: 0.4; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info { }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(21,101,192,0.08);
}

.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-brand), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--blue-deep);
}

.contact-info-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(21,101,192,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(21,101,192,0.15);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 4px rgba(21,101,192,0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .hero__logo-ring { width: 280px; height: 280px; }
  .hero__logo-center { width: 180px; height: 180px; }
  .hero__logo-center img { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* ── Hide desktop-only nav elements ── */
  .nav__links   { display: none; }
  .nav__socials { display: none; }

  /* ── Keep nav__right visible — hamburger + lang button live here ── */
  .nav__right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ── Hamburger: show ── */
  .nav__hamburger { display: flex; }

  /* ── Language button: keep it readable and tappable ── */
  .lang-btn {
    padding: 8px 12px;
    font-size: 0.82rem;
    gap: 5px;
    min-height: 40px;
    min-width: 44px;
  }

  /* Show globe + short flag, hide the long text label */
  #langBtnText {
    display: inline;
    font-size: 0.8rem;
    /* Show only the flag emoji (first 2 chars), hide country name */
    max-width: 1.6em;
    overflow: hidden;
    white-space: nowrap;
  }

  /* Hide the chevron arrow on mobile to save space */
  .lang-btn .fa-chevron-down { display: none; }

  /* Lang dropdown: wider and touch-friendly */
  .lang-dropdown {
    right: 0;
    min-width: 190px;
    /* Make sure it doesn't go off-screen on narrow phones */
    max-width: calc(100vw - 24px);
  }

  /* ── Layout fixes ── */
  .hero__content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__text { max-width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo-ring { width: 220px; height: 220px; }
  .hero__logo-center { width: 150px; height: 150px; }
  .hero__logo-center img { width: 100px; height: 100px; }

  .about__inner { grid-template-columns: 1fr; }
  .about__badge { right: 0; }
  .about__features { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  /* On very small phones, tighten the nav */
  .nav__logo-text { font-size: 1.15rem; }
  .nav__logo-img  { width: 34px; height: 34px; }

  /* Keep lang dropdown from going off-screen */
  .lang-dropdown { right: -8px; }
}

/* ── Mobile menu social icons row ── */
.nav__mobile-socials {
  display: flex;
  gap: 12px;
  padding: 16px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}

.nav__mobile-socials a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav__mobile-socials a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--blue-deep);
}


/* =============================================
   TRANSLATION LOADING OVERLAY
   ============================================= */
.translating-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  display: none;
}

.translating-overlay.active { display: flex; }

.translating-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.translating-overlay p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* =============================================
   TEAM / ABOUT PAGE EXTRAS
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--blue-brand);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); }

.value-card__num {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: -8px;
}

.value-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* =============================================
   SERVICES PAGE EXTRAS
   ============================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--off-white);
}

.service-detail:last-child { border: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail__img {
  border-radius: var(--radius-lg);
  height: 340px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.service-detail__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.02);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.service-feature-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue-brand), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; direction: ltr; }
  .service-detail.reverse { direction: ltr; }
}

/* =============================================
   PRODUCTS PAGE EXTRAS
   ============================================= */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  padding: 60px 0;
  border-bottom: 1px solid var(--off-white);
}

.product-detail:last-child { border: none; }

.product-detail__gallery {
  position: relative;
}

.product-detail__main-img {
  border-radius: var(--radius-lg);
  height: 320px;
  background: linear-gradient(135deg, #1a4a1a, #2d7a2d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  margin-bottom: 12px;
}

.product-detail__thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-detail__thumb {
  height: 80px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 2px solid rgba(21,101,192,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-detail__thumb:hover { border-color: var(--blue-brand); }

.product-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.spec-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid rgba(21,101,192,0.08);
}

.spec-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.spec-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-deep);
}

@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__specs { grid-template-columns: 1fr 1fr; }
}
