/* ============================================================
 Global Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:        #0382c5;
  --blue-dark:   #2b4664;
  --ink:         #070031;
  --black:      #111111;
  --gray-dark:  #333333;
  --gray-mid:   #666666;
  --gray-light: #aaaaaa;
  --border:     #e8e8e8;
  --bg-light:   #f7f7f7;
  --white:      #ffffff;
  --font-head:  'DM Sans', sans-serif;
  --font-body:  'Lexend', sans-serif;
  --header-h:   72px;
  --radius:     10px;
  --transition: 0.25s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.13);
}
[data-animate]:not([data-animate="from-left"]):not([data-animate="from-right"]):not([data-animate="from-bottom"]):not([data-animate="fade"]).visible {
  animation: fadeIn 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--gray-dark); background: var(--white); line-height: 1.7; padding-top: var(--header-h); }
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
address { font-style: normal; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
section { padding: 40px 0; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'ubuntu'; letter-spacing: 1px; color: var(--blue); line-height: 1.1; }
.section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 12px; }
.section-title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px;color: var(--blue);font-family: 'ubuntu'; }
.section-subtitle { font-size: 16px; color: var(--gray-mid); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.accent-line { width: 48px; height: 3px; background: var(--blue); margin-bottom: 20px; }
.center .accent-line { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn { display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 12px 28px; border-radius: var(--radius); border: 2px solid var(--ink); transition: all var(--transition); cursor: pointer; }
.btn-primary       { background: var(--blue);   color: var(--ink); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline       { background: transparent;  color: var(--blue);   border-color: var(--blue); }
.btn-outline:hover { background: var(--blue);   color: var(--white); }
.btn-dark          { background: var(--black); color: var(--blue); border-color: var(--black); }
.btn-dark:hover    { background: #222;color: var(--white) }
.btn-white         { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover   { background: #eee; }

/* ── Form ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 6px; }
.form-group input,.form-group textarea,.form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 15px; color: var(--black); background: var(--white); outline: none; transition: border-color var(--transition); }
.form-group input:focus,.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); background: var(--white); border-bottom: 1px solid var(--border); z-index: 1000; transition: box-shadow var(--transition); }
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.09);  background: rgba(255, 255, 255, 0.15);backdrop-filter: blur(12px);-webkit-backdrop-filter: blur(12px);border-bottom: 1px solid rgba(255, 255, 255, 0.2);}
#site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 600px) {
  #site-header .container { justify-content: center; }
  #site-header.scrolled{ background: rgb(255, 255, 255); }
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-bars { display: flex; flex-direction: column; gap: 3px; }
.logo-bars span { display: block; height: 5px; border-radius: 1px; background: var(--blue); }
.logo-bars span:nth-child(1) { width: 28px; }
.logo-bars span:nth-child(2) { width: 22px; }
.logo-bars span:nth-child(3) { width: 16px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-head); font-size: 26px; letter-spacing: 2px; color: var(--black); }
.logo-name em { color: var(--blue); font-style: normal; }
.logo-tagline { font-size: 8px; letter-spacing: 4px; color: var(--gray-light); font-weight: 500; text-transform: uppercase; margin-top: 3px; }

.header-right { display: flex; align-items: center; gap: 2rem; }
.nav-divider  { width: 1px; height: 32px; background: var(--border); }
nav ul { display: flex; align-items: center; gap: 1.5rem; }
nav a { font-size: 15px; font-weight: 750; letter-spacing: 0.5px; color: var(--blue-dark); position: relative; transition: color var(--transition);font-family:'DM Sans', sans-serif; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width var(--transition); }
nav a:hover, nav a.active { color: var(--blue); }
nav a:hover::after, nav a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 24px 5%; z-index: 999; box-shadow: var(--shadow); flex-direction: column; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav ul { flex-direction: column; gap: 0; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--black); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--black); color: var(--white); padding: 72px 0 56px; position: relative; overflow: hidden;display: flex; align-items: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(204,31,31,0.05) 40px, rgba(204,31,31,0.05) 41px); }
.page-hero .container { position: relative;text-align: center; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: var(--white); font-size: 20px; }
.breadcrumb   { display: flex; gap: 8px; font-size: 13px; color: var(--gray-light); margin-bottom: 12px; align-items: center;justify-content: center; }
.breadcrumb a { color: var(--blue); text-align: center;}

/* ============================================================
   HOME — HERO
   ============================================================ */
/* ============================================================
   HOME — HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

/* ── Carousel track ── */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.prev {
  opacity: 0;
  transform: scale(1.04);
}

/* ── Gradient overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.15) 100%
  );
}

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 92px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 0.95;
}
.hero h1 span { color: var(--blue); }
.hero p { font-size: 17px; color: #ccc; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Arrows ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.30);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow--prev { left: 28px; }
.hero-arrow--next { right: 28px; }

/* ── Dot indicators ── */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--blue);
  width: 28px;
  border-radius: 4px;
  transform: none;
}

/* ── Scroll hint ── */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: #777;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::before {
  content: '↓';
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--blue);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 600px) {
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow--prev { left: 12px; }
  .hero-arrow--next { right: 12px; }
}

/* Stats bar */
.stats-bar { background: var(--blue); padding: 28px 0; }
.stats-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; color: var(--white); }
.stat-number { font-family: var(--font-head); font-size: 44px; letter-spacing: 1px; line-height: 1; }
.stat-label  { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }

/* ============================================================
   GLOBAL SCROLL-TRIGGERED ANIMATION SYSTEM
   ============================================================ */

/* Keyframes */
@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(70px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromBottom {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Pre-animation hidden state — all [data-animate] elements start invisible */
[data-animate] { opacity: 0; }

/* When .visible is added by JS, fire the matching animation with CSS var delay */
[data-animate="from-left"].visible {
  animation: slideFromLeft  0.8s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: var(--delay, 0s);
}
[data-animate="from-right"].visible {
  animation: slideFromRight 0.8s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: var(--delay, 0s);
}
[data-animate="from-bottom"].visible {
  animation: slideFromBottom 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: var(--delay, 0s);
}
[data-animate="fade"].visible {
  animation: fadeIn 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

/* ============================================================
   ABOUT TEASER — 2-column layout
   ============================================================ */
.about-teaser { background: var(--white); }
.about-teaser .container { display: block; }

.about-teaser-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* LEFT column */
.about-left { display: flex; flex-direction: column; }
.about-left .section-subtitle { font-size: 15px; color: var(--gray-mid); line-height: 1.75; margin-bottom: 28px; }

.about-left-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-left-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-left-img:hover img { transform: scale(1.04); }

/* RIGHT column */
.about-right { display: flex; flex-direction: column; gap: 0; }

.about-feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.about-feature-img { width: auto; height: 500px; overflow: hidden; background: #ddd; }
.about-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.about-feature-card:hover .about-feature-img img { transform: scale(1.06); }

.about-feature-body { padding: 20px 22px 24px; }
.about-feature-body h3 { font-family: 'ubuntu'; font-size: 20px; color: var(--blue); margin-bottom: 8px; letter-spacing: 0.5px; }
.about-feature-body p  { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }

@media (max-width: 600px) {
  .about-feature-img { width: auto; height: 250px; overflow: hidden; background: #ddd; }
}
  
@media (max-width: 900px) {
  .about-teaser-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-left-img img  { height: 280px; }
}

/* Features */
.features { background: var(--bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.feature-card { background: #ededed; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: box-shadow var(--transition), transform var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature{display: flex; flex-direction: row; align-items: center; text-align: center; gap: 12px; }
.feature-icon { width: 48px; height: 48px; background: var(--white);; border-radius: 25px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--blue-dark); }
.feature-card h3 { font-size: 20px; margin-bottom: 10px;color: var(--blue); }
.feature-card p  { font-size: 15px; color: var(--blue-dark); line-height: 1.65; }

/* ============================================================
   PRODUCTS TEASER SECTION - COMPOUND WALLS AVAILABLE
   Modern, clean, and consistent
   ============================================================ */

/* Section Container & Spacing */
.products-teaser {
  padding: 80px 0;
   background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('uploads/delivery.png') no-repeat center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}


/* Container (main width & centering) – if global .container exists, it will complement */
.products-teaser .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Header Styles (Unified with site) ---------- */
.products-teaser .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-teaser .section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(190, 197, 255, 0.08);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.products-teaser .accent-line {
  width: 60px;
  height: 3px;
  background: var(--blue-dark);
  margin: 12px auto 20px auto;
  border-radius: 4px;
}

.products-teaser .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.products-teaser .section-title br {
  display: inline-block;
}

/* ---------- Product Grid (2 column, responsive) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}

/* ---------- Product Card (Neomorphic / Elevated) ---------- */
.product-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 40px -18px rgba(0, 0, 0, 0.18);
  border-color: #eaeef5;
}

/* Card Image Area (background image from inline style) */
.product-card-img {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: #eef2f7;
  transition: transform 0.4s ease;
  overflow: hidden;
}

/* subtle zoom on hover (image scale only if needed) */
.product-card:hover .product-card-img {
  transform: scale(1.02);
}

/* Product Tag (4 Inch / 5 Inch) */
.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 40px;
  box-shadow: 0 6px 12px -8px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(0px);
  z-index: 2;
  transition: all 0.2s;
}

.product-card:hover .product-tag {
  background: var(--blue-dark);
  color: #fff;
  border: none;
  letter-spacing: 1.2px;
}

/* Card Body (typography + spacing) */
.product-card-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.product-card-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5568;
  margin-bottom: 28px;
  flex: 1;
}

/* Action Buttons Container */
.product-card-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- Button Styles (consistent with global design) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid transparent;
  line-height: 1.2;
}

.btn-outline {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue-dark);
  color: #ffffff;
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -6px rgba(50, 40, 198, 0.3);
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background: #fff;
  color: var(--ink);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -12px rgba(198, 40, 40, 0.45);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .products-teaser {
    padding: 64px 0;
  }
  .products-teaser .section-title {
    font-size: 2rem;
  }
  .products-grid {
    gap: 24px;
  }
  .product-card-img {
    height: 230px;
  }
  .product-card-body h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-card-img {
    height: 210px;
  }
  .product-card-body {
    padding: 22px 20px 28px;
  }
  .product-card-body h3 {
    font-size: 1.5rem;
  }
  .product-card-actions {
    gap: 12px;
  }
  .btn {
    padding: 8px 18px;
    font-size: 0.7rem;
  }
  .products-teaser .section-title br {
    display: none;
  }
}

@media (max-width: 480px) {
  .products-teaser .container {
    padding: 0 0px;
  }
  .product-card-body {
    padding: 18px 16px 24px;
  }
  .product-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    text-align: center;
    justify-content: center;
  }
}

/* product-card entrance handled by global [data-animate] system */

/* Additional polish: active interaction */
.product-card-actions .btn:active {
  transform: translateY(1px);
}

/* No image fallback warning (if background image missing, we show solid light bg) */
.product-card-img {
  background-color: #eef2f9;
}

/* ensure that any existing .btn-white or other doesn't break, but provide safety */
.products-teaser .btn-white {
  background: white;
  color: #1e1e2a;
  border: 1px solid #ddd;
}
.products-teaser .btn-white:hover {
  background: #f5f5f5;
  border-color: #c62828;
  color: #c62828;
}


/* Gallery */
.gallery { background: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,220px); gap: 12px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); background: #ddd; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
@media(max-width: 600px){
    .gallery-item { height:200px;}
}
/* CTA band */
.cta-band {  background: linear-gradient(to right,rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.3)),url('uploads/about-wall.png') no-repeat center center; background-size: cover;background-attachment: fixed; padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px,4vw,48px); color: var(--white); margin-bottom: 12px; }
.cta-band h4  { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 32px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story img { border-radius: var(--radius); width: 100%; height: 420px; object-fit: cover; background: #ddd; }
.about-highlights { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.highlight-pill { background: rgba(182, 198, 255, 0.4); color: var(--blue); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; }

.specialties { background: linear-gradient(to right,rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.3)),url('uploads/installation.png') no-repeat center center; background-size: cover;background-attachment: fixed; }
.specialty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.specialty-card { background: #ededed; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center;transition: box-shadow var(--transition), transform var(--transition); }
.specialty-icon { font-size: 32px; margin-bottom: 14px; }
.specialty-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--blue); }
.specialty-card p  { font-size: 14px; color: var(--blue-dark); }
.specialty-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.why-choose .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-choose img { border-radius: var(--radius); width: 100%; height: 460px; object-fit: cover; background: #ddd; }
.why-list { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.why-check { width: 22px; height: 22px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.why-check svg { color: var(--white); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border); }
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse .pd-img { order: 2; }
.product-detail.reverse .pd-content { order: 1; }
.pd-img img { border-radius: var(--radius); width: 100%; height: 380px; object-fit: cover; background: #ddd; }
.pd-content h2 { font-size: 36px; margin-bottom: 12px; }
.pd-content p  { font-size: 15px; color: var(--gray-mid); margin-bottom: 20px; line-height: 1.7; }
.product-specs { display: flex; gap: 16px; flex-wrap: wrap; margin: 20px 0 28px; }
.spec-item { background: var(--bg-light); padding: 14px 20px; border-radius: var(--radius); text-align: center; min-width: 100px; }
.spec-item strong { display: block; font-family: var(--font-head); font-size: 28px; color: var(--blue); }
.spec-item span   { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-mid); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--bg-light); }
.contact-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.contact-form-box h2 { font-size: 28px; margin-bottom: 6px; }
.contact-form-box .sub { font-size: 15px; color: var(--gray-mid); margin-bottom: 28px; }
.contact-info h2 { font-size: 28px; margin-bottom: 24px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(170, 184, 254, 0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.ci-item h4 { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-mid); font-family: var(--font-body); margin-bottom: 4px; }
.ci-item p, .ci-item a { font-size: 15px; color: var(--black); }
.ci-item a:hover { color: var(--blue); }
.map-wrap { margin-top: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 450px; border: none; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--ink); color: #ccc; }
.footer-top  { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-heading { font-size: 18px; color: var(--white); letter-spacing: 1px; margin-bottom: 18px; }
.footer-desc { font-size: 14px; color: #888; line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: #bbb; transition: all var(--transition); }
.footer-socials a:hover { background: var(--blue); color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { display: flex; align-items: center; gap: 8px; }
.footer-links a { font-size: 14px; color: #888; transition: color var(--transition); }
.footer-links a:hover { color: var(--blue); }
.footer-address { font-size: 14px; color: #888; line-height: 1.8; }
.footer-contact-link { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(204,31,31,0.4); padding: 8px 16px; border-radius: var(--radius); transition: all var(--transition); }
.footer-contact-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center;background: var(--white) }
.footer-bottom p { font-size: 15px; color: #555; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-story .container,.why-choose .container { grid-template-columns: 1fr; gap: 40px; }
  .product-detail,.contact-section .container { grid-template-columns: 1fr; }
  .product-detail.reverse .pd-img,.product-detail.reverse .pd-content { order: unset; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  section { padding: 20px 0; }
  .header-right { display: none; }
  .hamburger { display: flex; }
  .stats-bar .container { flex-direction: column; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .footer-bottom p { font-size: 10px; color: #555; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

.contacts-grid{
   display: flex;
   justify-content: center;
   gap: 25px;
   margin-top: 25px;
}

#icon-contact{
  color: var(--blue-dark);
  font-size: 20px;
  margin-left: 10px;
}

.area-icon h3{
  font-family: ui-monospace;
}

.contact-info h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #0d1b4b;
    line-height: 1.15;
    margin-bottom: 20px;
}

.grill{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--blue-dark);
}

@media (max-width : 768px){
  .grill{
    font-size: 1rem;
  }
}

.gallery-grid-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.gallery-items { overflow: hidden; border-radius: var(--radius); background: #ddd; }
.gallery-items img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-items:hover img { transform: scale(1.06); }


@media (max-width : 768px){
  .gallery-grid-container{
    grid-template-columns: 1fr;
  }
}