/* ==============================================
   RS AIR CONDITIONING — MODERN LIGHT DESIGN SYSTEM
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

:root {
  /* Colors */
  --primary:        #0170B9; /* Matches logo exact blue */
  --primary-light:  #258bd3;
  --primary-dark:   #015690;
  --accent:         #00A3E0;
  --accent-dark:    #0085B8;
  --navy:           #F8FAFC; /* Slate-50 background base */
  --navy-2:         #0b1329; /* Footers maintain contrast */
  --card-dark:      rgba(255, 255, 255, 0.85); /* Frosted light card */
  --card-mid:       rgba(241, 245, 249, 0.9);
  --surface:        #FFFFFF; /* Pure White background */
  --surface-2:      #F8FAFC; /* Slate-50 background */
  --surface-3:      #F1F5F9; /* Slate-100 */
  --white:          #FFFFFF;
  --text-primary:   #0F172A; /* Slate-900 */
  --text-secondary: #475569; /* Slate-600 */
  --text-muted:     #64748B; /* Slate-500 */
  --text-light:     #F8FAFC; /* Default light text on dark fields */
  --border:         rgba(15, 23, 42, 0.06);
  --border-light:   rgba(15, 23, 42, 0.08);

  /* Gradients */
  --grad-hero:      linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 50%, #E2E8F0 100%);
  --grad-blue:      linear-gradient(135deg, #0170B9 0%, #00A3E0 100%);
  --grad-card:      linear-gradient(160deg, rgba(255,255,255,0.98) 0%, rgba(241,245,249,0.95) 100%);
  --grad-section:   linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);

  /* Spacing */
  --container:   1200px;
  --section-pad: 110px 0;
  --gap:         28px;

  /* Radius */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 2px 16px rgba(15,23,42,0.04);
  --shadow-md:  0 12px 32px rgba(15,23,42,0.06);
  --shadow-lg:  0 24px 64px rgba(15,23,42,0.1);
  --shadow-blue:0 12px 40px rgba(1,112,185,0.18);
  --shadow-glow:0 8px 30px rgba(0,163,224,0.15);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   0.2s;
  --dur-mid:    0.4s;
  --dur-slow:   0.6s;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--surface);
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

/* ---- UTILITY ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad { padding: var(--section-pad); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(15,98,254,0.06);
  border: 1px solid rgba(15,98,254,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-title.light { color: var(--text-primary); }

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 600px;
  font-weight: 400;
  line-height: 1.5;
}

.section-subtitle.light { color: var(--text-secondary); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle { margin: 16px auto 0; }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal-left.visible { opacity:1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal-right.visible { opacity:1; transform: translateX(0); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.6s; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
  pointer-events: none;
}

.btn:hover::after { opacity: 1; }

.btn:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Premium Button Glow/Shimmer */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: none;
}
.btn:hover::before {
  left: 100%;
  transition: left 0.8s ease-in-out;
}

.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,98,254,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.btn-blue {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(15,98,254,0.2);
}

.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease),
              height var(--dur-mid) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  height: 64px;
}

.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(15,23,42,0.12));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  transition: opacity var(--dur-fast) var(--ease);
}

.nav-logo:hover .nav-logo-name {
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--dur-fast) var(--ease);
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-left: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-fast) var(--ease);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1.5px);
  box-shadow: var(--shadow-blue);
}

.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}

.nav-toggle:hover { background: var(--surface-3); }

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
  order: 2;
  animation: heroSlideInRight 1.2s var(--ease) both;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow) var(--ease);
}

.hero-image-side:hover .hero-img { transform: scale(1.04); }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,98,254,0.1) 0%, rgba(15,23,42,0.2) 100%);
}

.hero-img-label {
  position: absolute;
  bottom: 44px;
  left: 44px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(15,23,42,0.4);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-content-side {
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
  order: 1;
}

.hero-content-side::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15,98,254,0.06) 0%, transparent 75%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 540px; }

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  animation: heroFadeInUp 0.8s var(--ease) both 0.2s;
}

.hero-brand {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
  animation: heroFadeInUp 0.8s var(--ease) both 0.35s;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
  animation: heroFadeInUp 0.8s var(--ease) both 0.5s;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  animation: heroFadeInUp 0.8s var(--ease) both 0.65s;
}

.hero-divider {
  height: 4px;
  width: 80px;
  background: var(--grad-blue);
  border-radius: 2px;
  margin-bottom: 36px;
  position: relative;
  animation: heroFadeInUp 0.8s var(--ease) both 0.75s;
}

.hero-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -8px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: heroFadeInUp 0.8s var(--ease) both 0.9s;
}

.hero-actions .btn {
  min-width: 170px;
  justify-content: center;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 48px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: heroFadeInUp 0.8s var(--ease) both 1.1s, float 3s ease-in-out infinite 1.9s;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(15, 23, 42, 0.15);
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border-light);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: all var(--dur-mid) var(--ease);
}

.stat-item:hover {
  background: var(--surface-2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-suffix { color: var(--accent-dark); }

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ---- COMMITTED SECTION ---- */
.committed-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.committed-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.committed-accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 24px;
}

.committed-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.committed-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.committed-right {
  padding-left: 30px;
  border-left: 2px solid var(--surface-2);
}

.committed-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.committed-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- SERVICE CARDS (BLUE BG) ---- */
.services-section {
  padding: var(--section-pad);
  background: var(--grad-section);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11,79,189,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform var(--dur-slow) var(--ease);
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 30px 30px 36px;
  position: relative;
}

.service-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 1px;
  background: var(--border-light);
}

.service-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.service-list-item .check-icon {
  width: 18px;
  height: 18px;
  background: rgba(15,98,254,0.06);
  border: 1.5px solid rgba(15,98,254,0.18);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-list-item .check-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--primary);
}

/* ---- INDUSTRIES SECTION ---- */
.industries-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
  background: var(--surface-2);
}

.industries-image-side {
  position: relative;
  overflow: hidden;
}

.industries-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.industries-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface-2));
}

.industries-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  z-index: 1;
  text-shadow: 0 4px 20px rgba(15,23,42,0.3);
  background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
}

.industries-content-side {
  background: var(--surface-2);
  padding: 60px 50px;
  display: flex;
  align-items: center;
}

.industries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  width: 100%;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--dur-fast) var(--ease);
}

.industry-item:hover { color: var(--primary); }

.industry-icon {
  width: 22px;
  height: 22px;
  background: rgba(15,98,254,0.06);
  border: 1.5px solid rgba(15,98,254,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--primary);
}

/* ---- WHY US ---- */
.why-section {
  padding: var(--section-pad);
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 60px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
  border-color: transparent;
}

.why-card:hover::before { opacity: 1; }
.why-card:hover .why-icon-wrap { background: rgba(255,255,255,0.18); }
.why-card:hover .why-title { color: var(--white); }
.why-card:hover .why-text { color: rgba(255,255,255,0.85); }

.why-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-mid) var(--ease);
  position: relative;
  z-index: 1;
}

.why-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--dur-mid);
}

.why-card:hover .why-icon-wrap svg { stroke: var(--white); }

.why-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color var(--dur-mid);
}

.why-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: color var(--dur-mid);
}

/* ---- CLIENTS ---- */
.clients-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.clients-track-wrapper {
  overflow: hidden;
  position: relative;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients-track {
  display: flex;
  gap: 32px;
  animation: scroll-clients 18s linear infinite;
  width: max-content;
}

@keyframes scroll-clients {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.clients-track:hover { animation-play-state: paused; }

.client-chip {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.client-chip:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-blue);
}

/* ---- PAGE BANNER ---- */
.page-banner {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, #0b1329 0%, #0F62FE 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(11,79,189,0.25) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(124,10,44,0.2) 0%, transparent 60%);
}

.page-banner-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
}

.page-banner-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  position: relative;
}

.breadcrumb a { color: var(--accent); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--white); }

/* ---- ABOUT PAGE ---- */
.about-intro {
  padding: 80px 0;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-blue);
}

.about-img-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-img-badge span {
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.about-content-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.highlight-dot {
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--surface-2);
  outline: 2px solid var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- SERVICES PAGE ---- */
.services-full-section {
  padding: var(--section-pad);
  background: var(--surface);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease);
}

.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-full-card-header {
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.04) 0%, rgba(0, 180, 216, 0.08) 100%);
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--border-light);
}

.service-full-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-full-card-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.service-full-card-body {
  padding: 24px 28px 28px;
}

.service-full-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.4;
}

.service-full-list-item:last-child { border-bottom: none; }

.service-check {
  width: 20px;
  height: 20px;
  background: rgba(11,79,189,0.1);
  border: 1.5px solid rgba(11,79,189,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
}

/* ---- FAQ ---- */
.faq-section {
  padding: var(--section-pad);
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: all var(--dur-mid) var(--ease);
}

.faq-item:hover {
  border-color: rgba(15, 98, 254, 0.25);
  box-shadow: 0 4px 20px rgba(15,98,254,0.04);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(15, 98, 254, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: all var(--dur-fast) var(--ease);
}

.faq-question:hover { background: var(--surface-2); }

.faq-item.open .faq-question { background: var(--surface-2); color: var(--primary); }

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform var(--dur-mid) var(--ease),
              background var(--dur-fast),
              color var(--dur-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-answer-inner {
  padding: 0 28px 28px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- CONTACT PAGE ---- */
.contact-info-section {
  padding: 80px 0;
  background: var(--surface);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--dur-mid) var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--dur-mid) var(--ease);
}

.contact-card:hover .contact-card-icon {
  background: var(--primary);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--dur-mid);
}

.contact-card:hover .contact-card-icon svg { stroke: var(--white); }

.contact-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-card-detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contact-card-detail a {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--dur-fast);
}

.contact-card-detail a:hover { color: var(--primary-dark); }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 64px;
  height: 400px;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.branch-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--dur-mid) var(--ease);
}

.branch-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(3,7,18,0.35);
}

.branch-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 242, 254, 0.1);
  border: 1.5px solid rgba(0, 242, 254, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.branch-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.branch-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.branch-address {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- CONTACT FORM ---- */
.contact-form-section {
  padding: var(--section-pad);
  background: var(--white);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--white);
  transition: all var(--dur-fast) var(--ease);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.12);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.form-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.form-info-item {
  display: flex;
  gap: 16px;
}

.form-info-icon {
  width: 52px;
  height: 52px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.form-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.form-info-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.5;
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: var(--section-pad);
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--card-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-mid) var(--ease);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,79,189,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-zoom-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: scale(0.88);
  transition: transform var(--dur-mid) var(--ease);
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.3rem;
  transition: all var(--dur-fast) var(--ease);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ---- CAREER PAGE ---- */
.career-section {
  padding: var(--section-pad);
  background: var(--surface);
}

.career-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.career-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.career-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.career-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.perk-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-2);
  color: var(--text-light);
}

.footer-main {
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.footer-brand-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast) var(--ease),
              padding-left var(--dur-fast) var(--ease);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-copy a { color: var(--accent); }

/* ---- FLOATING BUTTONS ---- */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all var(--dur-fast) var(--ease-spring);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.float-btn:hover { transform: scale(1.12); }

.float-wa {
  background: #25D366;
}

.float-call {
  background: var(--primary);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.float-call svg {
  fill: none;
  stroke: white;
  stroke-width: 1.5;
}

.back-to-top {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--dur-mid) var(--ease);
  backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-fast) var(--ease);
  letter-spacing: -0.01em;
}

.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-link.active { color: var(--primary); }

.mobile-nav-arrow {
  font-size: 1rem;
  opacity: 0.4;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.mobile-actions .btn { width: 100%; justify-content: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 300px; }
  .hero-content-side { padding: 112px 32px 48px; }
  .hero-brand { font-size: 2.8rem; }
  .committed-inner { grid-template-columns: 1fr; }
  .committed-right { padding-left: 0; border-left: none; border-top: 2px solid var(--surface-2); padding-top: 24px; }
  .industries-section { grid-template-columns: 1fr; }
  .industries-image-side { height: 280px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-img-wrapper { order: -1; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .career-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .industries-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content-side { padding: 100px 24px 40px; }
  .hero-brand { font-size: 2.2rem; }
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 20px; }
  .float-buttons { bottom: 20px; right: 16px; }
}

/* Spinner Animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spinner {
  animation: spin 1s linear infinite;
}

/* Premium Keyframes */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideInRight {
  from {
    opacity: 0;
    transform: translateX(45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Typewriter Cursor */
.cursor {
  animation: blink 0.75s step-end infinite;
  color: var(--primary);
  font-weight: 300;
  margin-left: 2px;
}
@keyframes blink {
  from, to { color: transparent }
  50% { color: var(--primary); }
}
