/* =============================================
   WORLD STONE — Main Stylesheet
   Colors extracted from brand logo
   ============================================= */

:root {
  --primary:       #0d3d4f;
  --teal:          #1a7a8a;
  --teal-light:    #2db0c8;
  --teal-pale:     #e8f4f7;
  --gold:          #c9a96e;
  --gold-light:    #f5efe4;
  --dark:          #0a1e26;
  --text:          #2c3e50;
  --text-light:    #637680;
  --bg:            #f5f7f8;
  --white:         #ffffff;
  --border:        #dde6ea;
  --shadow:        0 4px 24px rgba(13,61,79,.10);
  --shadow-lg:     0 12px 48px rgba(13,61,79,.18);
  --radius:        8px;
  --radius-lg:     16px;
  --nav-h:         80px;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--primary); }
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Utilities ──────────────────────────────── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section         { padding: 80px 0; }
.section-sm      { padding: 48px 0; }
.text-center     { text-align: center; }
.text-white      { color: var(--white) !important; }
.text-teal       { color: var(--teal); }
.text-gold       { color: var(--gold); }
.bg-primary      { background: var(--primary); }
.bg-teal         { background: var(--teal); }
.bg-pale         { background: var(--teal-pale); }
.bg-gold-light   { background: var(--gold-light); }
.bg-dark         { background: var(--dark); }

/* ─── Section Label ──────────────────────────── */
.label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.label-gold {
  color: var(--gold);
  background: var(--gold-light);
}
.label-white {
  color: var(--teal-light);
  background: rgba(255,255,255,.12);
}

/* ─── Section Header ─────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.text-center h2 { max-width: 700px; margin: 0 auto 16px; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin: 20px auto 0;
}
.divider-left { margin-left: 0; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b5924e; border-color: #b5924e; transform: translateY(-2px); }
.btn-lg { padding: 17px 42px; font-size: 1rem; }

/* ─── Top Bar ─────────────────────────────────  */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.8); transition: color .2s; }
.topbar a:hover { color: var(--teal-light); }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }
.topbar-social  { display: flex; gap: 12px; }
.topbar-social a { font-size: 1rem; }

/* ─── Navigation ─────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,61,79,.08);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong { font-size: 1.1rem; color: var(--primary); letter-spacing: .03em; }
.nav-logo-text small { font-size: .72rem; color: var(--teal); letter-spacing: .06em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .92rem;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover  { color: var(--teal); background: var(--teal-pale); }
.nav-links a.active { color: var(--teal); font-weight: 700; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 18px; right: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}
.nav-cta { margin-left: 16px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ─── Mobile Menu ────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--teal); background: var(--teal-pale); }

/* ─── Page Hero (inner pages) ─────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/gallery/gallery-22.jpg') center/cover no-repeat;
  opacity: .12;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 16px; }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .5; }

/* ─── Stats Bar ──────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--gold); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); letter-spacing: .05em; text-transform: uppercase; }

/* ─── Cards ──────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 28px; }
.card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* ─── Feature List ───────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  box-shadow: 0 2px 8px rgba(13,61,79,.06);
}
.feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.feature-text h4 { margin-bottom: 4px; color: var(--primary); font-size: 1rem; }
.feature-text p  { font-size: .88rem; margin: 0; }

/* ─── Grid Layouts ───────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ─── Gallery Grid ───────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,61,79,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: .9rem; font-weight: 600; }

/* ─── Lightbox ───────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none; border: none;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* ─── CTA Banner ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/gallery/gallery-35.jpg') center/cover no-repeat;
  opacity: .08;
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 580px; margin: 0 auto 36px; }
.cta-buttons   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact Form ───────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
label { font-size: .88rem; font-weight: 600; color: var(--primary); }
input, select, textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s;
  font-family: inherit;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 8px; }

/* ─── Contact Info ───────────────────────────── */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text h4 { color: var(--white); font-size: .9rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.contact-detail-text a, .contact-detail-text p { color: rgba(255,255,255,.8); font-size: 1rem; margin: 0; transition: color .2s; }
.contact-detail-text a:hover { color: var(--teal-light); }
.social-links { display: flex; gap: 12px; margin-top: 36px; }
.social-link {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.social-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ─── Footer ─────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img  { height: 52px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p    { font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-heading    { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px; }
.footer-links      { display: flex; flex-direction: column; gap: 10px; }
.footer-links a    { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--teal-light); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact-item span { font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m2-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: center;
}
.m2-signature__mark {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: #55c8e8;
  filter: drop-shadow(0 0 6px rgba(85, 200, 232, 0.55));
  animation: m2-sig-pulse 3.4s ease-in-out infinite;
}
.m2-signature__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes m2-sig-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.12) rotate(45deg); opacity: 1; }
}
.m2-signature__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.m2-signature__logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.m2-signature__logo img {
  height: 18px !important;
  width: auto !important;
  max-width: 52px !important;
  display: block;
  border-radius: 4px;
  object-fit: contain;
  filter: none !important;
}
.m2-signature__tag {
  color: #fff;
  font-size: 13px;
}
.m2-signature__tag strong {
  color: #fff;
  font-weight: 700;
}
.m2-signature__year {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

/* ─── Products ───────────────────────────────── */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-body { padding: 28px; }
.product-body h3 { margin-bottom: 10px; }
.product-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.type-tag {
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ─── Why Us Cards ───────────────────────────── */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--teal);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--teal); }
.why-card h4 { margin-bottom: 10px; }

/* ─── Font Awesome icon sizing in containers ──── */
.feature-icon .fas,
.feature-icon .fab,
.card-icon .fas,
.card-icon .fab,
.why-icon .fas,
.why-icon .fab,
.wbc-icon .fas,
.wbc-icon .fab,
.vm-icon .fas,
.vm-icon .fab,
.contact-detail-icon .fas,
.contact-detail-icon .fab,
.stone-header-icon .fas,
.stone-header-icon .fab { font-size: 1.5rem; }

.why-check-icon .fas  { font-size: 1rem; color: var(--teal); }
.check .fas           { color: #27ae60; }
.cross .fas           { color: #e74c3c; }
.stars .fas           { color: var(--gold); font-size: .9rem; }
.social-link .fas,
.social-link .fab     { font-size: 1rem; }
.topbar-social .fas,
.topbar-social .fab   { font-size: .85rem; }
.footer-contact-item .fas { font-size: 1rem; color: var(--teal-light); }
.is-icon .fas         { font-size: 1.8rem; display: block; }

/* market flags – keep as emoji, no override */

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section  { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .grid-2   { grid-template-columns: 1fr; gap: 28px; }
  .grid-3   { grid-template-columns: 1fr; gap: 20px; }
  .grid-4   { grid-template-columns: repeat(2,1fr); }
  .nav-links, .nav-cta, .topbar-social { display: none; }
  .nav-burger { display: flex; }
  /* Gallery */
  .gallery-grid  { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .gallery-main  { grid-template-columns: repeat(2,1fr); gap: 8px; }
  /* Forms */
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-form { padding: 24px 20px; }
  .contact-info-card { padding: 28px 20px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .m2-signature { gap: 8px 10px; }
  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-number { font-size: 2.2rem; }
  /* Lightbox */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-inner { max-width: 95vw; }
  /* Hero fixes */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  /* Why big cards */
  .why-big-grid { grid-template-columns: 1fr; }
  .why-big-card { flex-direction: row; padding: 24px; gap: 16px; }
  /* Topbar */
  .topbar .container { flex-direction: column; gap: 4px; padding: 6px 16px; text-align: center; }
  .topbar-contact { flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
  /* Page hero */
  .page-hero { padding: 56px 0 48px; }
  .page-hero h1 { font-size: clamp(1.6rem,6vw,2.4rem); }
  /* Process steps */
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .process-steps::before { display: none; }
  /* Gallery preview */
  .gallery-preview-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-preview-grid .gp-large { grid-row: auto; aspect-ratio: 4/3; }
  /* About badge */
  .about-img-wrap img { height: 300px !important; }
  /* Feature list */
  .feature-list { gap: 10px; }
  /* Vision mission */
  .vision-mission-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 32px 24px; }
  /* Value grid */
  .value-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; }
  /* Info strip */
  .info-strip { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  /* Markets */
  .markets-grid { gap: 28px 40px; }
  /* Comparison table */
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: .82rem; }
  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }
  /* Timeline */
  .timeline { padding-left: 28px; }
  /* Quick list why-us */
  .quick-list { grid-template-columns: 1fr; gap: 8px; }
  /* Product types */
  .ptype-grid { grid-template-columns: 1fr 1fr !important; }
  /* Variety grid */
  .variety-grid { grid-template-columns: repeat(2,1fr); }
  /* Nav logo */
  .nav-logo img { height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-main  { grid-template-columns: 1fr 1fr; gap: 6px; }
  .grid-4 { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .why-big-card { padding: 20px; }
  .wbc-icon { width: 52px; height: 52px; font-size: 1.2rem; }
  .vm-card { padding: 28px 20px; }
  .contact-form { padding: 20px 14px; }
  .contact-info-card { padding: 24px 16px; }
  .footer-grid { gap: 20px; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
  .stat-number { font-size: 2rem; }
  .ptype-grid { grid-template-columns: 1fr !important; }
  .hero-actions .btn { font-size: .9rem; padding: 13px 20px; }
  /* Finishes grid on products */
  .finishes-grid { gap: 8px; }
  .finish-badge { font-size: .82rem; padding: 6px 14px; }
  /* Process steps */
  .process-steps { grid-template-columns: 1fr; }
  .process-num { width: 50px; height: 50px; font-size: 1.1rem; }
}
