/* ================================================================
   TESTECH — style.css
   Used by: index.html (home page)
   base.html has its own inline CSS for shared components
================================================================ */

:root {
  --navy: #1B2F6E;
  --navy-dark: #112050;
  --navy-light: #243d8a;
  --orange: #F5A623;
  --orange-dark: #d98e10;
  --orange-light: #FFB940;
  --white: #FFFFFF;
  --light-gray: #F4F6FB;
  --mid-gray: #8a93a8;
  --text: #1a1f36;
}

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

input, textarea, select, button { position: relative; z-index: 10000; }

/* ── CURSOR ── */
.cursor {
  width: 10px; height: 10px; background: #F5A623; border-radius: 50%;
  position: fixed; left: 0; top: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.cursor-ring {
  width: 38px; height: 38px; border: 2px solid rgba(245,166,35,0.5); border-radius: 50%;
  position: fixed; left: 0; top: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease;
}
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ================================================================
   NAV
================================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  box-shadow: 0 2px 20px rgba(27,47,110,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.15rem; letter-spacing: 0.06em; color: var(--white);
}
.nav-brand-tag { font-size: 0.65rem; color: var(--orange); font-style: italic; }

nav ul { list-style: none; display: flex; gap: 32px; align-items: center; }
nav ul a {
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.25s; position: relative;
}
nav ul a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
nav ul a:hover { color: var(--white); }
nav ul a:hover::after { transform: scaleX(1); }
.nav-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 18px;
    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: #1B2F6E !important;
    background: linear-gradient(135deg, #F5A623, #FFB940);

    box-shadow: 0 6px 18px rgba(245,166,35,0.25);
    border: 1px solid rgba(255,255,255,0.15);

    transition: all 0.25s ease;
    line-height: 1;
}

/* hover moja tu (ondoa duplication yako ya chini) */
.nav-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245,166,35,0.35);
    filter: brightness(1.05);
}

/* icon alignment fix */
.nav-btn svg{
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.nav-btn:hover svg{
    transform: translateX(3px);
}





/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 600; padding: 6px; border-radius: 6px;
  transition: background 0.2s; flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.25s, width 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 499; overflow-y: auto; padding: 8px 0 40px;
  opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.mobile-nav-overlay.open {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.mobile-nav-links { list-style: none; }
.mobile-nav-links > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 24px;
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-links > li > a:hover { color: var(--orange); background: rgba(255,255,255,0.03); }
.mobile-dropdown-arrow {
  font-size: 0.6rem; opacity: 0.6; pointer-events: none;
  transition: transform 0.3s, opacity 0.2s;
}
.mobile-nav-links > li.open > a { color: var(--orange); }
.mobile-nav-links > li.open .mobile-dropdown-arrow { transform: rotate(180deg); opacity: 1; }
.mobile-submenu {
  list-style: none; max-height: 0; overflow: hidden;
  background: rgba(0,0,0,0.25);
  transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1);
}
.mobile-nav-links > li.open .mobile-submenu { max-height: 500px; }
.mobile-submenu li a {
  display: block; padding: 13px 24px 13px 42px;
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-submenu li a:hover { color: var(--orange); padding-left: 50px; }
.mobile-nav-cta { padding: 24px 24px 0; }
.mobile-nav-cta a {
  display: block; background: var(--orange); color: var(--navy);
  text-align: center; padding: 16px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: 6px; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.mobile-nav-cta a:hover { background: var(--orange-light); transform: translateY(-2px); }

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 60px 60px;
}
.hero::after {
  content: ''; position: absolute; right: -5%; top: 0; bottom: 0; width: 52%;
  background: var(--navy-light);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); z-index: 0;
}
.hero-geo {
  position: absolute; right: 8%; bottom: -60px;
  width: 340px; height: 340px;
  border: 40px solid rgba(245,166,35,0.15); border-radius: 50%;
  z-index: 1; animation: spin-slow 30s linear infinite;
}
.hero-geo2 {
  position: absolute; right: 18%; top: 80px;
  width: 160px; height: 160px;
  border: 3px solid rgba(245,166,35,0.25); border-radius: 50%;
  z-index: 1; animation: spin-slow 20s linear infinite reverse;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--orange); }
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.35);
  color: var(--orange); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 2px; margin-bottom: 28px;
}
.hero-badge::before { content: '◆'; font-size: 0.5rem; }
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1.08;
  color: var(--white); margin-bottom: 24px; letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-orange {
  background: var(--orange); color: var(--navy); padding: 15px 34px;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border-radius: 4px;
  display: inline-block;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.45); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.3); color: var(--white); padding: 13px 32px;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border-radius: 4px;
  display: inline-block; transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(245,166,35,0.08); }
.btn-navy {
  background: var(--navy); color: var(--white); padding: 16px 38px;
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border-radius: 4px;
  display: inline-block; white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(27,47,110,0.3);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ── HERO VISUAL CARDS ── */
.hero-visual {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: 16px; align-items: flex-end;
}
.hero-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px); border-radius: 8px; padding: 20px 28px; min-width: 200px;
  animation: float 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1s; margin-right: 30px; }
.hero-card:nth-child(3) { animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-card-num {
  font-family: 'Montserrat', sans-serif; font-size: 2.2rem;
  font-weight: 900; color: var(--orange); line-height: 1;
}
.hero-card-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip { background: var(--orange); display: flex; }
.stat-item {
  flex: 1; padding: 36px 40px; display: flex; align-items: center; gap: 20px;
  border-right: 1px solid rgba(27,47,110,0.2); transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--orange-dark); }
.stat-icon { font-size: 2rem; }
.stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 2.2rem; color: var(--navy); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--navy-dark); font-weight: 700; letter-spacing: 0.04em; }

/* ================================================================
   SECTION COMMON
================================================================ */
section { padding: 100px 60px; }
.section-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 28px; height: 3px; background: var(--orange); border-radius: 2px; }
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--navy); line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--mid-gray); line-height: 1.75; max-width: 500px; }

/* ================================================================
   ABOUT
================================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-box {
  width: 100%; aspect-ratio: 1.1; background: var(--light-gray);
  border-radius: 8px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--white);
  padding: 20px 28px; border-radius: 8px; text-align: center;
  box-shadow: 0 8px 32px rgba(27,47,110,0.25);
}
.about-badge-float .num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 2.5rem; color: var(--orange); line-height: 1;
}
.about-badge-float .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(245,166,35,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feature-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; color: var(--navy); }
.feature-desc { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.6; }

/* ================================================================
   SERVICES
================================================================ */
.services-section { background: var(--light-gray); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 8px; padding: 40px 32px;
  position: relative; overflow: hidden; border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { border-color: rgba(245,166,35,0.25); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27,47,110,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 56px; height: 56px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 24px; transition: background 0.3s;
}
.service-card:hover .service-card-icon { background: var(--orange); }
.service-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--navy); margin-bottom: 12px;
}
.service-card p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.8rem; font-weight: 700; color: var(--navy); text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.25s, gap 0.25s;
}
.service-card-link:hover { color: var(--orange); gap: 10px; }

/* ================================================================
   WHY US
================================================================ */
.why-section { background: var(--navy); position: relative; overflow: hidden; }
.why-section::before {
  content: 'TES'; position: absolute; right: -40px; top: -80px;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22rem;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.55); }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.why-point {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 28px 24px; transition: background 0.3s, border-color 0.3s;
}
.why-point:hover { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.3); }
.why-point-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-point h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 8px; }
.why-point p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.why-numbers { display: flex; flex-direction: column; gap: 20px; }
.why-num-card {
  background: rgba(255,255,255,0.05); border-left: 4px solid var(--orange);
  padding: 24px 28px; border-radius: 0 8px 8px 0;
  display: flex; align-items: center; gap: 24px; transition: background 0.3s;
}
.why-num-card:hover { background: rgba(245,166,35,0.08); }
.why-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 2.8rem; color: var(--orange); line-height: 1; min-width: 100px;
}
.why-num-text h4 { color: var(--white); font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.why-num-text p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--light-gray); border-radius: 8px; padding: 36px 32px;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,47,110,0.1); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: 'Montserrat', sans-serif; font-size: 5rem; color: var(--orange); opacity: 0.2; line-height: 1;
}
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: 0.9rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--white);
}
.t-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.t-role { font-size: 0.75rem; color: var(--mid-gray); }

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background: var(--orange); padding: 70px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--navy); line-height: 1.2; max-width: 560px;
}
.cta-banner h2 span { color: var(--white); }

/* ================================================================
   CONTACT (index.html contact section)
================================================================ */
.contact-section { background: var(--light-gray); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px; width: 100%; min-width: 0;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0; background: var(--navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-item h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; }
.contact-item p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.6; }

/* ── FORM ── */
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-input {
  width: 100%; min-width: 0; box-sizing: border-box;
  padding: 14px 18px; border: 2px solid #e0e4f0; border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--white); outline: none; transition: all 0.3s ease;
}
.form-input:focus { border-color: #F5A623; box-shadow: 0 0 0 4px rgba(245,166,35,0.15); transform: translateY(-2px); }
.form-input::placeholder { color: var(--mid-gray); }
textarea.form-input { min-height: 130px; resize: vertical; }
.form-error-box {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  color: #dc2626; padding: 12px 16px; border-radius: 6px; font-size: 0.88rem; font-weight: 600;
}
.premium-submit-btn {
  margin: 8px auto 0; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 28px; border: none; border-radius: 14px; cursor: pointer;
  font-weight: 700; letter-spacing: 1px; color: #fff;
  background: linear-gradient(135deg, #1B2F6E, #F5A623);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
}
.premium-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.25); }
.premium-submit-btn .btn-arrow { transition: transform 0.3s ease; }
.premium-submit-btn:hover .btn-arrow { transform: translateX(6px); }

/* ── GLASS FORM ── */
.contact-form-glass {
  width: 100%; min-width: 0; box-sizing: border-box;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: 20px; padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
}
.contact-form-glass::before {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(245,166,35,0.1), transparent);
  transform: rotate(25deg); animation: shine 6s infinite linear; pointer-events: none;
}
@keyframes shine { 0%{transform:translateX(-50%) rotate(25deg)} 100%{transform:translateX(50%) rotate(25deg)} }
.contact-form-glass form { display: flex; flex-direction: column; gap: 16px; }
.contact-form-top { margin-bottom: 24px; }
.contact-form-badge {
  display: inline-block; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.35);
  color: var(--orange); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 2px;
}
.contact-form-top h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--navy); margin: 10px 0 6px;
}
.contact-form-top p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.6; }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--navy-dark); padding: 70px 60px 0;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.4rem; color: var(--white); letter-spacing: 0.08em; margin-bottom: 4px;
}
.footer-brand-tag { font-size: 0.75rem; color: var(--orange); font-style: italic; margin-bottom: 20px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; transition: color 0.25s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  grid-column: 1 / -1;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom span { color: var(--orange); }

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ================================================================
   ALERTS
================================================================ */
.alert { padding: 16px 24px; border-radius: 6px; margin-bottom: 24px; font-weight: 600; font-size: 0.9rem; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #dc2626; }

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
================================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  nav ul { gap: 20px; }
  section { padding: 80px 40px; }
  .hero { padding: 120px 40px 70px; }
  .hero-visual { right: 3%; }
  .hero-card { padding: 18px 22px; min-width: 170px; }
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; gap: 12px; }
  .services-header .section-sub { text-align: left !important; }
  .why-grid { gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: 1 / -1; max-width: 420px; justify-self: center; }
  .contact-grid { gap: 40px; }
  footer { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px 0; }
  .cta-banner { padding: 56px 40px; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 900px)
================================================================ */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 64px; }
  nav > ul { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-nav-overlay { top: 64px; }

  .hero { padding: 90px 24px 50px; min-height: auto; }
  .hero::after { display: none; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; }
  .hero-visual {
    position: static; transform: none;
    flex-direction: row; flex-wrap: wrap; justify-content: center;
    gap: 12px; width: 100%; margin-top: 36px;
  }
  .hero-card { flex: 1; min-width: 120px; max-width: 160px; margin-right: 0 !important; }
  .hero-geo, .hero-geo2, .hero-bar { display: none; }

  .stats-strip { flex-direction: column; }
  .stat-item { min-width: 100%; border-right: none; border-bottom: 1px solid rgba(27,47,110,0.2); padding: 28px 24px; }
  .stat-item:last-child { border-bottom: none; }

  section { padding: 60px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-visual { order: -1; }
  .about-img-box { aspect-ratio: 16/9; }
  .about-badge-float { bottom: -14px; right: 12px; padding: 14px 20px; }
  .about-badge-float .num { font-size: 1.8rem; }

  .services-section { padding: 60px 24px; }
  .services-header { margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  .why-section { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-points { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-num { font-size: 2rem; min-width: 72px; }

  .testimonials-section { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: none; justify-self: auto; }
  .testimonial-card { padding: 28px 22px; }

  .cta-banner { flex-direction: column; text-align: center; padding: 48px 24px; gap: 24px; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .contact-section { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 40px; }
  .contact-form-glass { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .premium-submit-btn { width: 100%; }

  footer { grid-template-columns: 1fr 1fr; gap: 32px; padding: 50px 24px 0; }
  .footer-bottom { grid-column: 1 / -1; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤ 600px)
================================================================ */
@media (max-width: 600px) {
  nav { padding: 0 16px; }
  section { padding: 44px 16px; }

  .hero { padding: 80px 16px 40px; }
  .hero h1 { font-size: clamp(1.9rem, 10vw, 2.5rem); }
  .hero-card-num { font-size: 1.6rem; }
  .hero-card { padding: 14px 16px; min-width: 100px; }

  .stat-num { font-size: 1.8rem; }
  .stat-item { padding: 22px 16px; }

  .services-section, .why-section,
  .testimonials-section, .contact-section { padding: 44px 16px; }

  .why-points { grid-template-columns: 1fr; }
  .why-num-card { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px; }
  .why-num { min-width: auto; font-size: 2.2rem; }

  .cta-banner { padding: 40px 16px; }
  .contact-form-glass { padding: 22px 16px; border-radius: 14px; }

  footer { grid-template-columns: 1fr; padding: 44px 16px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .btn-orange, .btn-navy, .btn-ghost { padding: 13px 22px; font-size: 0.82rem; }
  .about-badge-float { right: 8px; bottom: -10px; padding: 12px 16px; }
  .about-badge-float .num { font-size: 1.5rem; }
}