* {
  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: 90vh;
  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;
  }

}

/* ===========================================
   ADMIN LOGIN
=========================================== */

.admin-login-page{

    margin:0;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    overflow:hidden;

    font-family:'Inter',sans-serif;

    background:url("../img/mjrbg.webp") center center/cover no-repeat fixed;

}

.admin-login-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(15,23,42,.85),
            rgba(17,24,39,.88)
        );

}

.admin-login-card{

    position:relative;

    z-index:2;

    width:420px;

    padding:45px;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.brand-login{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:30px;

}

.brand-login .brand-mark{

    width:58px;

    height:58px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#c9a961;

    color:#111;

    font-size:28px;

    font-weight:800;

}

.brand-login .brand-text strong{

    color:#fff;

    display:block;

}

.brand-login .brand-text small{

    color:#c9a961;

    letter-spacing:2px;

}

.admin-login-card h2{

    color:#fff;

    margin-bottom:8px;

}

.admin-login-card p{

    color:#d7d7d7;

    margin-bottom:25px;

}

.admin-login-card label{

    display:block;

    color:#fff;

    margin-bottom:8px;

    margin-top:15px;

}

.admin-login-card input{

    width:100%;

    padding:14px 18px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.3s;

}

.admin-login-card input::placeholder{

    color:#cfcfcf;

}

.admin-login-card input:focus{

    outline:none;

    border-color:#c9a961;

    background:rgba(255,255,255,.16);

}

.login-submit{

    width:100%;

    margin-top:28px;

    padding:14px;

    border:none;

    border-radius:12px;

    background:#c9a961;

    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.login-submit:hover{

    transform:translateY(-2px);

    background:#d8b975;

}

.login-error{

    margin-bottom:20px;

    padding:12px 15px;

    border-radius:10px;

    background:#dc3545;

    color:#fff;

    font-size:14px;

}

.admin-login-card small{

    display:block;

    margin-top:25px;

    color:#bbb;

    text-align:center;

}

/* ===========================================
ADMIN DASHBOARD
=========================================== */

.admin-wrapper{

display:flex;

min-height:100vh;

background:#f5f7fb;

}

.admin-sidebar{

width:260px;

background:#111827;

padding:30px;

display:flex;

flex-direction:column;

}

.sidebar-logo{

display:flex;

gap:15px;

align-items:center;

margin-bottom:45px;

color:white;

}

.sidebar-logo small{

color:#c9a961;

}

.admin-sidebar nav{

display:flex;

flex-direction:column;

gap:12px;

}

.admin-sidebar nav a{

color:#d9d9d9;

padding:14px 18px;

border-radius:12px;

text-decoration:none;

transition:.25s;

}

.admin-sidebar nav a:hover{

background:#1f2937;

color:white;

}

.admin-sidebar nav a.active{

background:#c9a961;

color:#111;

font-weight:700;

}

.admin-content{

flex:1;

padding:40px;

}

.admin-topbar{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-bottom:35px;

}

.stat-card{

background:white;

padding:28px;

border-radius:18px;

box-shadow:0 15px 30px rgba(0,0,0,.05);

}

.stat-card h3{

font-size:36px;

color:#c9a961;

margin-bottom:10px;

}

.admin-card{

background:white;

padding:35px;

border-radius:18px;

box-shadow:0 15px 30px rgba(0,0,0,.05);

}

/* ===== Sidebar V2 ===== */

.sidebar-header{

display:flex;

align-items:center;

gap:15px;

margin-bottom:35px;

}

.brand-info{

display:flex;

flex-direction:column;

}

.brand-info strong{

color:white;

font-size:20px;

line-height:1.2;

}

.brand-info small{

color:#C9A961;

}

.sidebar-title{

font-size:12px;

letter-spacing:2px;

color:#6B7280;

margin-bottom:20px;

font-weight:700;

}

.sidebar-menu{

display:flex;

flex-direction:column;

gap:10px;

}

.sidebar-user{

margin-top:auto;

display:flex;

align-items:center;

gap:15px;

padding:18px;

border-radius:16px;

background:rgba(255,255,255,.05);

margin-bottom:20px;

}

.avatar{

width:48px;

height:48px;

border-radius:50%;

background:#C9A961;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

font-size:20px;

color:#111827;

}

.sidebar-user strong{

display:block;

color:white;

}

.sidebar-user small{

color:#B8BDC7;

}

.online-dot{

display:inline-block;

width:8px;

height:8px;

border-radius:50%;

background:#10B981;

margin-right:6px;

}

.logout-btn{

display:block;

padding:14px;

border-radius:12px;

text-align:center;

text-decoration:none;

background:#DC2626;

color:white;

transition:.25s;

}

.logout-btn:hover{

background:#B91C1C;

}

/* ======================================
   MJR CAREER
====================================== */

.mjr-job-item{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

padding:30px;

margin-bottom:20px;

background:var(--panel);

border:1px solid var(--line);

border-radius:16px;

transition:.3s;

}

.mjr-job-item:hover{

border-color:var(--gold-line);

transform:translateY(-4px);

}

.mjr-job-left h3{

font-size:30px;

font-weight:800;

line-height:1.2;

margin-bottom:14px;

}

.mjr-job-info{

display:flex;

flex-wrap:wrap;

gap:26px;

margin-top:8px;

color:var(--muted);

}

.mjr-job-info span{

display:flex;

align-items:center;

gap:8px;

}

.mjr-job-info i{

width:18px;

color:var(--gold);

}

.mjr-job-right{

text-align:right;

display:flex;

flex-direction:column;

align-items:flex-end;

gap:12px;

}

.mjr-job-right small{

color:var(--muted);

}

.mjr-job-right strong{

font-size:20px;

}

.mjr-job-right .btn{

min-width:170px;

justify-content:center;

}

@media(max-width:768px){

.mjr-job-item{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

padding:34px 0;

border-bottom:1px solid var(--line);

}

.mjr-job-item:last-child{

border-bottom:none;

}

.mjr-job-right{

align-items:flex-start;

text-align:left;

}

}

/* ===========================
MJR JOB DETAIL
=========================== */

.mjr-detail-layout{

display:grid;

grid-template-columns:2fr 420px;

gap:30px;

}

.mjr-detail-card{

background:var(--panel);

border:1px solid var(--line);

border-radius:18px;

padding:35px;

margin-bottom:25px;

}

.mjr-detail-card h2{

margin-bottom:20px;

font-size:28px;

}

.mjr-detail-card p{

color:var(--muted);

line-height:2;

white-space:pre-line;

}

.mjr-info-card{

position:sticky;

top:100px;

background:var(--panel);

border:1px solid var(--line);

border-radius:18px;

padding:30px;

}

.mjr-info-card h3{

margin-bottom:25px;

}

.mjr-info-row{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:1px solid var(--line);

}

.mjr-info-row span{

color:var(--muted);

}

.mjr-info-row strong{

color:white;

}

@media(max-width:991px){

.mjr-detail-layout{

grid-template-columns:1fr;

}

.mjr-info-card{

position:relative;

top:auto;

}

}

/* ===================================
MJR CAREER HERO
=================================== */

.mjr-career-hero{

min-height:620px;

display:flex;

align-items:center;

}

.mjr-career-hero-grid{

display:grid;

grid-template-columns:2fr 380px;

gap:70px;

align-items:center;

}

.mjr-career-desc{

max-width:620px;

margin:28px 0;

line-height:1.9;

color:var(--muted);

}

.mjr-career-stat{

display:grid;

gap:18px;

}

.mjr-career-stat div{

background:rgba(255,255,255,.05);

backdrop-filter:blur(10px);

border:1px solid var(--gold-line);

border-radius:18px;

padding:28px;

}

.mjr-career-stat strong{

display:block;

font-size:42px;

font-weight:900;

color:var(--gold);

margin-bottom:8px;

}

.mjr-career-stat span{

color:white;

font-size:15px;

}

@media(max-width:991px){

.mjr-career-hero-grid{

grid-template-columns:1fr;

}

}

/* ===================================
   MJR WHY JOIN US
=================================== */

.mjr-benefit-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:24px;

margin-top:40px;

margin-bottom:70px;

}

.mjr-benefit-card{

background:var(--panel);

border:1px solid var(--line);

border-radius:18px;

padding:35px 30px;

transition:.3s;

}

.mjr-benefit-card:hover{

transform:translateY(-6px);

border-color:var(--gold-line);

}

.mjr-benefit-card i{

font-size:42px;

color:var(--gold);

margin-bottom:22px;

display:block;

}

.mjr-benefit-card h3{

font-size:22px;

margin-bottom:14px;

color:var(--text);

}

.mjr-benefit-card p{

color:var(--muted);

line-height:1.8;

}

@media(max-width:768px){

.mjr-benefit-grid{

grid-template-columns:1fr;

}

}

/* ===================================
JOB DETAIL IMPROVEMENT
=================================== */

.mjr-back-link{

display:inline-flex;

align-items:center;

gap:10px;

margin-bottom:25px;

color:var(--gold);

font-weight:700;

}

.mjr-back-link:hover{

opacity:.8;

}

.mjr-job-meta{

display:flex;

flex-wrap:wrap;

gap:30px;

margin-top:18px;

}

.mjr-job-meta span{

display:flex;

align-items:center;

gap:8px;

color:#ddd;

}

.mjr-job-meta i{

color:var(--gold);

}

.mjr-divider{

border:none;

height:1px;

background:var(--line);

margin:22px 0;

}

.mjr-apply-note{

font-size:14px;

line-height:1.8;

color:var(--gold);

margin-bottom:20px;

}

.mjr-detail-card h2{

display:flex;

align-items:center;

gap:12px;

}

.mjr-detail-card h2 i{

color:var(--gold);

font-size:22px;

}

.mjr-list{
    margin:0;
    padding-left:22px;
}
.mjr-list li{
    margin-bottom:10px;
    line-height:1.8;
    color:#ddd;
}

.mjr-detail-sidebar{
    position:sticky;
    top:110px;
}

.mjr-company-name{
    display:flex;
    align-items:center;
    gap:8px;
    margin:10px 0 14px;
    font-size:.95rem;
    color:var(--gold);
    font-weight:600;
}

.mjr-company-name i{
    font-size:14px;
}

.alert-danger{
    background:#fdeaea;
    color:#b42318;
    border:1px solid #f5c2c7;
    padding:12px 16px;
    border-radius:8px;
    margin-bottom:20px;
}

.deadline-text{
    color:#c1121f !important;
    font-weight:700;
}

.job-info-title{
    color:var(--gold);
    font-weight:700;
    letter-spacing:.5px;
}

header,
footer{
    display: none !important;
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* Container sedikit lebih lega */
.container{
    width:min(1320px,92%);
}

/* Hero */
.page-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 0 60px;
}

.mjr-career-hero-grid{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:60px;
    align-items:center;
}

.mjr-career-hero h1{
    font-size:clamp(42px,6vw,84px);
    line-height:1.05;
    font-weight:800;
}

.mjr-career-desc{
    font-size:clamp(16px,2vw,20px);
    max-width:650px;
    line-height:1.8;
}

.btn-gold{
    padding:16px 34px;
    border-radius:12px;
    font-weight:600;
}

/* Statistik kanan */
.mjr-career-stat{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mjr-career-stat > div{
    padding:28px;
    border-radius:24px;
    backdrop-filter:blur(18px);
}

.mjr-career-stat strong{
    display:block;
    font-size:clamp(40px,4vw,62px);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width:991px){

    .page-hero{
        padding:120px 0 70px;
        text-align:center;
    }

    .mjr-career-hero-grid{

        grid-template-columns:1fr;
        gap:50px;

    }

    .mjr-career-desc{

        margin:auto;

    }

    .mjr-career-stat{

        display:grid;

        grid-template-columns:repeat(3,1fr);

        gap:20px;

    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

    .page-hero{

        min-height:auto;

        padding:110px 0 60px;

    }

    .mjr-career-hero h1{

        font-size:42px;

    }

    .mjr-career-desc{

        font-size:16px;

    }

    .btn-gold{

        width:100%;

        text-align:center;

    }

    .mjr-career-stat{

        grid-template-columns:1fr;

    }

    .mjr-career-stat > div{

        text-align:center;

    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:480px){

    .mjr-career-hero h1{

        font-size:34px;

    }

    .eyebrow{

        font-size:13px;

    }

    .mjr-career-desc{

        font-size:15px;

    }

}

.hero-action{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

    margin-top:40px;

}

.btn-login{

    border:1px solid rgba(255,255,255,.4);

    color:#fff;

    padding:15px 30px;

    border-radius:12px;

    transition:.3s;

}

.btn-login:hover{

    background:#fff;

    color:#111;

}

.modal-content{

    border:none;

    border-radius:20px;

}

.modal-header{

    padding:25px 25px 10px;

}

.modal-body{

    padding:25px;

}

.form-control{

    height:52px;

    border-radius:12px;

}

@media(max-width:768px){

.hero-action{

flex-direction:column;

}

.hero-action .btn{

width:100%;

}

}

.login-error{

    display:none;

    margin-top:15px;

    padding:12px 16px;

    border-radius:10px;

    background:#dc3545;

    color:#fff;

    font-size:14px;

    text-align:center;

}