/* ==========================================================================
   Sri Sai Srinivasa Electricals — Stylesheet
   ========================================================================== */

:root {
  --navy: #0b1523;
  --navy-light: #12213a;
  --charcoal: #1a2332;
  --blue: #1e6fd9;
  --blue-dark: #144e9c;
  --blue-light: #4a9bff;
  --orange: #f5a623;
  --orange-dark: #d98a0d;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --gray-100: #eef1f5;
  --gray-300: #cbd3dd;
  --gray-500: #6b7789;
  --gray-700: #3c4657;
  --text-dark: #14202f;
  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(11, 21, 35, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 21, 35, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 21, 35, 0.25);
  --transition: 0.3s ease;
  --header-height: 78px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gray-100);
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(30, 111, 217, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-tag-light {
  color: var(--orange);
  background: rgba(245, 166, 35, 0.12);
}

.section-heading { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-heading h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.section-desc { color: var(--gray-500); font-size: 16.5px; }
.section-dark .section-desc { color: var(--gray-300); }

.grid { display: grid; gap: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(245, 166, 35, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); border-color: var(--white); }

.btn-lg { padding: 17px 40px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(11, 21, 35, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled {
  background: rgba(11, 21, 35, 0.96);
  box-shadow: var(--shadow-md);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.deity-icons { display: flex; align-items: center; gap: 6px; margin-right: 14px; flex-shrink: 0; }
.deity-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-sm);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--navy);
  border-radius: 10px;
  font-size: 19px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { color: var(--white); font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; }
.logo-text small { color: var(--orange); font-size: 11px; letter-spacing: 2px; font-weight: 600; }

.main-nav ul { display: flex; align-items: center; gap: 30px; }
.nav-link {
  color: var(--gray-100);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.btn-quote { padding: 11px 24px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(115deg, #060c16 0%, var(--navy) 45%, var(--blue-dark) 100%);
  isolation: isolate;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(245, 166, 35, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(74, 155, 255, 0.18) 0%, transparent 50%);
  z-index: -1;
}
.hero-icon-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.07;
  pointer-events: none;
}
.hero-icon-pattern i {
  position: absolute;
  color: var(--white);
  font-size: clamp(90px, 14vw, 200px);
}
.hero-icon-pattern i:nth-child(1) { top: -4%; right: 4%; transform: rotate(12deg); }
.hero-icon-pattern i:nth-child(2) { bottom: -6%; right: 20%; transform: rotate(-8deg); font-size: clamp(120px, 18vw, 260px); }
.hero-icon-pattern i:nth-child(3) { top: 30%; right: -4%; transform: rotate(20deg); }
.hero-icon-pattern i:nth-child(4) { bottom: 8%; left: -5%; transform: rotate(-15deg); }
.hero-icon-pattern i:nth-child(5) { top: -8%; left: 10%; transform: rotate(10deg); font-size: clamp(80px, 12vw, 160px); }
.hero-icon-pattern i:nth-child(6) { bottom: -10%; left: 40%; transform: rotate(6deg); font-size: clamp(70px, 10vw, 140px); }
.hero-content { padding: 70px 24px 60px; color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5.5vw, 58px);
  max-width: 780px;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--gray-300);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 64px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 36px;
  max-width: 900px;
}
.stat-item { text-align: left; }
.stat-number, .stat-plus {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--orange);
}
.stat-icon { font-size: 26px; color: var(--orange); display: block; margin-bottom: 6px; }
.stat-item p { color: var(--gray-300); font-size: 14px; margin-top: 4px; }

/* ---------- Work Gallery Slider ---------- */
.work-slider {
  position: relative;
  width: 100%;
  background: var(--navy);
  padding: calc(var(--header-height) + 32px) 0 40px;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.slider-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background var(--transition), transform var(--transition);
}
.slider-dots button.active { background: var(--orange); transform: scale(1.25); }

@media (max-width: 600px) {
  .slider-track { height: 260px; }
}


/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }

/* ---------- Placeholder photo panels (swap for real <img> when available) ---------- */
.placeholder-photo {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 14px, rgba(255,255,255,0) 14px 28px),
    linear-gradient(135deg, var(--blue-dark), var(--navy) 70%);
  border-radius: var(--radius);
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
}
.placeholder-photo i { font-size: 40px; color: var(--orange); }
.placeholder-photo span { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.5px; }
.placeholder-photo small { font-size: 12px; color: rgba(255, 255, 255, 0.6); max-width: 220px; }
.placeholder-photo-tall {
  height: 460px;
  box-shadow: var(--shadow-lg);
}
.about-media-badge {
  position: absolute;
  bottom: -24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-media-badge i { font-size: 22px; color: var(--blue); }
.about-media-badge strong { display: block; font-size: 15px; color: var(--navy); }
.about-media-badge span { font-size: 13px; color: var(--gray-500); }

.about-text h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 18px; }
.about-text p { color: var(--gray-700); margin-bottom: 16px; }
.about-points { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.about-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700); font-weight: 500; }
.about-points i { color: var(--blue); margin-top: 3px; }

/* ---------- Services ---------- */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 166, 35, 0.4);
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--gray-300); font-size: 14.5px; }

/* ---------- Industries ---------- */
.industries-grid { grid-template-columns: repeat(3, 1fr); }
.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.industry-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-dark), var(--navy) 75%);
}
.industry-visual i { font-size: 42px; color: var(--orange); transition: transform var(--transition); }
.industry-card:hover .industry-visual i { transform: scale(1.15); }
.industry-label {
  padding: 14px 18px;
  background: var(--white);
}
.industry-label span { font-weight: 600; font-size: 15px; color: var(--navy); }

/* ---------- Why Choose Us ---------- */
.why-grid { grid-template-columns: repeat(3, 1fr); }
.why-card {
  text-align: center;
  padding: 34px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(74, 155, 255, 0.4); }
.why-card i { font-size: 30px; color: var(--blue-light); margin-bottom: 16px; }
.why-card h3 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.why-card p { color: var(--gray-300); font-size: 14.5px; }

/* ---------- Projects Gallery ---------- */
.projects-grid { grid-template-columns: repeat(3, 1fr); }
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.project-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.project-card:hover img { transform: scale(1.06); }
.project-card .placeholder-photo { height: 220px; border-radius: 0; border-width: 0 0 1px 0; }
.project-card figcaption {
  background: var(--white);
  color: var(--navy);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
}
.section-desc code {
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--blue-dark);
}

/* ---------- Safety ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.safety-text p { color: var(--gray-300); margin-bottom: 22px; }
.safety-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: var(--gray-100);
}
.safety-list i { color: var(--orange); font-size: 18px; width: 22px; text-align: center; }
.safety-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); height: 420px; width: 100%; object-fit: cover; }
.safety-media .placeholder-photo-tall { height: 420px; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); font-size: clamp(26px, 4vw, 36px); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 30px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-size: 21px; margin-bottom: 6px; }
.contact-proprietor { color: var(--gray-500); font-size: 14.5px; margin-bottom: 28px; }
.contact-details li { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-details li:last-child { margin-bottom: 0; }
.contact-details i {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(30, 111, 217, 0.1);
  color: var(--blue);
  border-radius: 10px;
  font-size: 16px;
}
.contact-details strong { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 3px; }
.contact-details span { font-size: 14.5px; color: var(--gray-700); }
.contact-details em { display: block; color: var(--gray-500); font-size: 12.5px; font-style: italic; margin-top: 2px; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--gray-500); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: #070d17; color: var(--gray-300); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 18px; }
.footer-about p { font-size: 14px; line-height: 1.7; color: var(--gray-500); }
.footer-col h4 { color: var(--white); font-size: 15.5px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col ul li a { color: var(--gray-300); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--orange); margin-top: 3px; }
.footer-contact em { display: block; color: var(--gray-500); font-size: 11.5px; }

.footer-bottom { padding: 22px 0; background: #04080f; margin-top: 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--gray-500); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Scroll reveal ---------- */
/* Elements are fully visible by default so content never depends on
   JavaScript to be seen (progressive enhancement). js/script.js adds the
   "js-armed" class only when it can guarantee the reveal will actually run
   (IntersectionObserver supported), then toggles "in-view" on scroll. If
   JavaScript is disabled or fails to load, .reveal elements simply stay at
   their default, fully visible state. */
.reveal.js-armed {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.js-armed.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .about-grid, .safety-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media img, .safety-media img { height: 340px; }
  .services-grid, .industries-grid, .why-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--navy);
    max-height: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: max-height 0.35s ease;
  }
  .main-nav.open { max-height: 500px; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
  }
  .main-nav ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav .nav-link { display: block; padding: 16px 0; }
  .hamburger { display: flex; }
  .btn-quote { display: none; }
  .about-points { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .deity-icons { gap: 4px; margin-right: 8px; }
  .deity-icon { width: 26px; height: 26px; }
  .section-pad { padding: 60px 0; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-content { padding-top: 50px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .industries-grid, .why-grid, .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-info-card, .contact-form-wrap { padding: 28px 22px; }
  .about-media-badge { position: static; margin-top: -30px; margin-left: 16px; width: fit-content; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .btn { padding: 13px 22px; font-size: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}
