/* ===== KANAK ALLOYS - Industrial Precision Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  --charcoal: #1C2434;
  --bronze: #B87333;
  --bronze-hover: #A0622B;
  --off-white: #F8F9FA;
  --white: #FFFFFF;
  --near-black: #0B1C30;
  --gray-700: #4A5568;
  --gray-500: #718096;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --error: #BA1A1A;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--near-black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--bronze);
  color: var(--white);
}
.btn-primary:hover { background: var(--bronze-hover); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-dark-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--gray-300);
}
.btn-dark-outline:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(28, 36, 52, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-brand-text strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-brand-text span {
  color: var(--bronze);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bronze);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  font-size: 12px !important;
  background: var(--bronze);
  color: var(--white) !important;
  letter-spacing: 0.06em;
}
.nav-cta:hover { background: var(--bronze-hover); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,36,52,0.85) 0%, rgba(28,36,52,0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 80px;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid var(--bronze);
  padding: 8px 20px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 520px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-card {
  padding: 32px;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--bronze); }

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 120px 0;
  background: var(--off-white);
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}
.products-header .section-subtitle { margin: 0 auto; }

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

.product-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bronze);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover {
  border-color: var(--bronze);
  transform: translateY(-4px);
}
.product-card:hover::before { transform: scaleX(1); }

.product-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--bronze);
  fill: none;
  stroke-width: 1.5;
}

.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.product-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== GRADES ===== */
.grades {
  padding: 80px 0;
  background: var(--charcoal);
}

.grades-inner {
  text-align: center;
}

.grades .section-title { color: var(--white); }

.grades-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.grade-tag {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.grade-tag:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

/* ===== INFRASTRUCTURE ===== */
.infrastructure {
  padding: 120px 0;
  background: var(--white);
}

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

.infra-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.infra-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.infra-images img:hover { filter: grayscale(0%); }
.infra-images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.infra-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.infra-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.infra-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
}

.infra-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--bronze);
  fill: none;
  stroke-width: 1.5;
}

.infra-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.infra-feature p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== QUALITY ===== */
.quality {
  padding: 120px 0;
  background: var(--off-white);
}

.quality-header {
  text-align: center;
  margin-bottom: 64px;
}
.quality-header .section-subtitle { margin: 0 auto; }

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

.quality-card {
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.quality-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.quality-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--bronze);
  fill: none;
  stroke-width: 1.5;
}

.quality-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.quality-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== CUSTOMERS ===== */
.customers {
  padding: 120px 0;
  background: var(--charcoal);
}

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

.customers .section-title { color: var(--white); }
.customers .section-subtitle {
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
}

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

.customer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.customer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bronze);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.customer-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--bronze);
  transform: translateY(-4px);
}

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

.customer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.customer-type {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== MAP SECTION ===== */
.map-section {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-200);
}

.map-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bronze);
  display: inline-block;
}

.map-container {
  width: 100%;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.4s ease;
  cursor: pointer;
}
.gallery-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

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

.lightbox-caption {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  letter-spacing: 0.02em;
}

.lightbox-counter {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.15);
}

.lightbox-close svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
  fill: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--near-black);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--bronze);
}

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

.contact-info { display: flex; flex-direction: column; gap: 40px; }

.contact-block h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bronze);
  display: inline-block;
}

.contact-block p,
.contact-block a {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
}

.contact-block a:hover { color: var(--bronze); }

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  border-radius: 4px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bronze); }

.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 14px;
  padding: 3px 0;
}
.footer-contact a:hover { color: var(--bronze); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom .udyam {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); }

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  pointer-events: none;
}

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

.back-to-top:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .hero-content { padding: 0 40px; }
  .section-title { font-size: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .infra-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 36px; }
  .hero-content { padding: 0 24px; }
  .hero-tagline { font-size: 18px; }
  .section-title { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .customers-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .map-container iframe { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
