* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #070707;
  --black-2: #0c0d0d;
  --panel: #111111;
  --panel-2: #181818;
  --gold: #d79a3d;
  --gold-2: #f0bd67;
  --text: #f8f5ef;
  --muted: #b8b2aa;
  --line: rgba(255,255,255,.09);
  --gold-line: rgba(215,154,61,.35);
  --white: #f5f2ec;
  --dark-text: #151515;
  --shadow: 0 28px 80px rgba(0,0,0,.42);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  height: 76px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(7,7,7,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;

  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: linear-gradient(135deg, #f0b24d, #c8892d);

  color: #111;
  font-size: 30px;
  font-weight: 900;

  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
}

.brand-text small {
  margin-top: 4px;

  color: #d79a3d;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2.6px;
  text-transform: uppercase;

  opacity: .9;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 600;
  transition: .25s;
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--gold);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 2px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 12px;
}

.login-button {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 8px;
  min-height: 42px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s;
}

.login-button:hover {
  background: var(--gold);
  color: #111;
}

.nav-login {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: .25s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.login-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 7%;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.login-modal.show {
  display: flex;
}

.login-card {
  width: min(420px, 100%);
  background: linear-gradient(180deg, #151515, #0d0d0d);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}

.login-icon {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 10px;
}

.login-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.login-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.login-card label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-card input[type="text"],
.login-card input[type="password"] {
  width: 100%;
  height: 48px;
  background: #1b1b1b;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  padding: 0 14px;
  margin-bottom: 16px;
  outline: 0;
}

.login-card input:focus {
  border-color: var(--gold);
}

.login-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2px 0 18px;
}

.remember {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin: 0 !important;
}

.login-row a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.login-submit {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #15100a;
  font-weight: 900;
  cursor: pointer;
}

.login-card small {
  display: block;
  text-align: center;
  color: #898989;
  margin-top: 18px;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 60px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(215,154,61,.13), transparent 32%),
    linear-gradient(90deg, #070707 0%, #0a0a0a 42%, #12100d 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.72), rgba(7,7,7,.35)),
    url("../img/mainbg.webp") center right/cover;
  opacity: .95;
}

.hero-grid {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.eyebrow {
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h1,
.page-hero h1,
.section h2 {
  font-family: Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -.055em;
}

.hero-content h1 {
  font-size: clamp(46px, 6.8vw, 82px);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-content h1 span {
  color: var(--gold);
}

.accent-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 24px;
}

.hero-content p {
  max-width: 620px;
  color: #d7d0c8;
  line-height: 1.8;
  font-size: 17px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #17100a;
}

.btn-outline {
  border: 1px solid var(--gold-line);
  color: white;
  background: rgba(0,0,0,.18);
}

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(17,17,17,.86);
  border: 1px solid var(--line);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--gold-line);
}

.feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item span {
  color: var(--gold);
  font-size: 34px;
}

.feature-item h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.section {
  padding: 72px 0;
  background: var(--black-2);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.view-link {
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: .25s;
}

.product-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.product-card img {
  height: 145px;
  object-fit: cover;
}

.product-card div {
  padding: 15px;
}

.product-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.product-card a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.about-preview {
  background:
    radial-gradient(circle at 100% 20%, rgba(215,154,61,.08), transparent 28%),
    #090909;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.about-copy {
  padding-right: 20px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 26px;
}

.company-preview-card {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.company-preview-card img {
  transform: scale(1.04);
  height: 240px;
  object-fit: cover;
}

.company-preview-card div {
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.company-preview-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.company-preview-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.company-preview-card a {
  color: var(--gold);
  font-weight: 800;
  margin-top: auto;
}

.stats-panel {
  display: grid;
  gap: 12px;
}

.stats-panel {
  display: grid;
  gap: 12px;
}

.stats-panel div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.stats-panel strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
}

.stats-panel span {
  color: var(--muted);
  font-size: 13px;
}

.gallery-preview {
  background: var(--black-2);
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-tile {
  min-height: 145px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

.gallery-tile img {
  height: 100%;
  min-height: 145px;
  object-fit: cover;
  filter: brightness(.75);
  transition: .35s;
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

.gallery-tile div {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-weight: 800;
  font-size: 13px;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.68), rgba(7,7,7,.32)),
    url("https://images.unsplash.com/photo-1517581177682-a085bb7ffb38?auto=format&fit=crop&w=1800&q=80") center right/cover;
}

.page-hero .container {
  padding: 76px 0;
}

.breadcrumb {
  color: var(--muted);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: 20px;
}

.page-hero p:last-child {
  max-width: 580px;
  color: #ded8cf;
  line-height: 1.8;
}

.products-page {
  background-image:
    linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.68), rgba(7,7,7,.32)),
    url("../img/productsbg.webp");
}

.gallery-page {
  background-image:
    linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.68), rgba(7,7,7,.32)),
    url("../img/gallerybg.webp");
}

.about-page {
  background-image:
    linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.58), rgba(7,7,7,.25)),
    url("../img/abtbg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-page {
  background-image:
    linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.68), rgba(7,7,7,.32)),
    url("../img/contactbg.webp");

  background-size: cover;
  background-position: center;
}

.product-detail-grid {
  display: grid;
  gap: 22px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.product-detail-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.product-detail-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .15em;
}

.product-detail-card h2 {
  margin: 10px 0 14px;
}

.product-detail-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-page-card {
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

.gallery-page-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: brightness(.78);
}

.gallery-page-card div {
  position: absolute;
  left: 22px;
  bottom: 22px;
}

.gallery-page-card h3 {
  font-size: 24px;
}

.white-section {
  background: var(--white);
  color: var(--dark-text);
}

.about-company {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.about-company.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.about-company.reverse .about-image {
  order: 2;
}

.about-company.reverse .about-text {
  order: 1;
}

.about-image img {
  height: 430px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.white-section .eyebrow {
  color: var(--gold);
}

.about-text h2 {
  font-size: clamp(30px, 5vw, 50px);
  letter-spacing: -.05em;
}

.about-text p {
  max-width: 640px;
  line-height: 1.9;
  color: #333;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.about-stats strong {
  display: block;
  font-size: 28px;
  color: var(--dark-text);
}

.about-stats span {
  display: block;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.contact-banner {
  background: var(--white);
  color: var(--dark-text);
}

.contact-banner-inner {
  background:
    linear-gradient(90deg, rgba(7,7,7,.93), rgba(7,7,7,.72)),
    url("https://images.unsplash.com/photo-1517581177682-a085bb7ffb38?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
  border-radius: 12px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-banner-inner p {
  color: var(--muted);
  margin-top: 8px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.branch-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.branch-card iframe {
  width: 100%;
  height: 240px;
  border: 0;
  filter: grayscale(.55) invert(.9) contrast(.95);
}

.branch-card div {
  padding: 22px;
}

.branch-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
}

.branch-card h3 {
  font-size: 28px;
  margin: 8px 0 12px;
}

.branch-card p {
  color: var(--muted);
  margin-bottom: 8px;
}

.branch-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 900;
}

.site-footer {
  background: #070707;
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}

.footer-grid {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr .9fr .9fr 1fr 1.2fr;
  gap: 42px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0;
}

.footer-logo {
  align-items: center;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
}

.site-footer h4 {
  margin-bottom: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: var(--muted);
  margin-bottom: 9px;
  font-size: 14px;
}

.site-footer a:hover,
.gold-link {
  color: var(--gold) !important;
}

.footer-wa {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #17100a !important;
  display: inline-flex !important;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 900;
}

.footer-bottom {
  width: min(1320px, calc(100% - 48px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-line);
  background: rgba(215,154,61,.18);
  color: var(--gold);
  border-radius: 999px;
  cursor: pointer;
  z-index: 20;
}

/* =========================================
   CLEAN RESPONSIVE MOBILE FIX
========================================= */

@media (max-width: 1180px) {

  .site-header {
    padding: 0 24px;
  }

  .about-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-panel {
    grid-column: span 2;
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail-card {
    grid-template-columns: 260px 1fr;
  }

}


@media (max-width: 920px) {

  body {
    overflow-x: hidden;
  }

  .desktop-login {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-login {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .site-header {
    height: 72px;
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
    border-radius: 10px;
  }

  .brand-text strong {
    font-size: 14px;
    line-height: 1.1;
  }

  .brand-text small {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 12px;

    background: rgba(10,10,10,.98);

    border: 1px solid var(--line);
    border-radius: 14px;

    box-shadow: var(--shadow);

    z-index: 999;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a.active::after {
    display: none;
  }

  .container,
  .footer-grid,
  .footer-bottom {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0 32px;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 18px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn,
  .login-button {
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .feature-item {
    padding: 18px;
    gap: 14px;

    border-right: 0;
    border-bottom: 1px solid var(--gold-line);

    align-items: flex-start;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .feature-item img {
    width: 58px;
    height: 58px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section h2,
  .page-hero h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .view-link {
    white-space: normal;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 220px;
  }

  .about-preview-grid,
  .about-company,
  .about-company.reverse,
  .product-detail-card,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .about-company.reverse .about-image,
  .about-company.reverse .about-text {
    order: initial;
  }

  .about-copy {
    padding-right: 0;
  }

  .company-preview-card img,
  .about-image img {
    height: 240px;
  }

  .stats-panel,
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-row,
  .gallery-grid-page {
    grid-template-columns: 1fr;
  }

  .gallery-tile {
    min-height: 220px;
  }

  .gallery-tile img {
    min-height: 220px;
  }

  .gallery-page-card,
  .gallery-page-card img {
    min-height: 250px;
  }

  .product-detail-card {
    padding: 14px;
  }

  .product-detail-card img {
    height: 220px;
  }

  .contact-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .branch-card iframe {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }

  .login-modal {
    justify-content: center;
    padding: 16px;
  }

  .login-card {
    padding: 22px;
  }

}


@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 29px;
  }

  .section h2,
  .page-hero h1 {
    font-size: 26px;
  }

  .stats-panel,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .company-preview-card img,
  .about-image img,
  .product-card img,
  .gallery-tile img {
    height: 210px;
  }

}