:root {
  --bg: #f4e7d3;
  --bg-soft: #ead9bf;
  --bg-deep: #d9bf98;
  --white-block: #fffdf9;
  --text: #2d2217;
  --muted: rgba(45, 34, 23, 0.76);
  --line: rgba(90, 67, 39, 0.12);
  --gold: #b7843e;
  --gold-soft: #d6b07a;
  --gold-deep: #8f6329;
  --blue: #184d8f;
  --blue-dark: #113965;
  --success: #1f8f58;
  --error: #a33b3b;
  --radius: 22px;
  --shadow: 0 16px 40px rgba(88, 60, 24, 0.1);
  --dark-bg: #0b1420;
  --dark-bg-2: #101b28;
  --dark-card: rgba(255, 255, 255, 0.06);
  --dark-line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(183, 132, 62, 0.05), transparent 28%),
    linear-gradient(180deg, #f6ead8 0%, #efdfc8 100%);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  padding-bottom: 0px;
  background:
    linear-gradient(90deg, rgba(7, 12, 20, 0.8) 0%, rgba(7, 12, 20, 0.56) 34%, rgba(7, 12, 20, 0.18) 58%, rgba(214, 145, 50, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 12, 20, 0.08) 0%, rgba(7, 12, 20, 0.24) 38%, rgba(7, 12, 20, 0.74) 100%),
    url("../images/desert.jpeg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 21, 0.18), rgba(8, 13, 21, 0.02)),
    radial-gradient(circle at 80% 58%, rgba(255, 171, 63, 0.2), transparent 18%);
  z-index: 1;
}

.hero-top-fade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(6, 10, 16, 0.32), transparent);
  z-index: 1;
}

.hero-bottom-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 17, 0.42));
  z-index: 1;
}

.hero-right-sun {
  position: absolute;
  right: 6%;
  bottom: 19%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 189, 92, 0.3) 0%, rgba(255, 170, 60, 0.16) 38%, rgba(255, 170, 60, 0.02) 72%, transparent 100%);
  filter: blur(10px);
  z-index: 1;
}

.hero-dust {
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(205, 140, 60, 0.05) 45%, rgba(0, 0, 0, 0.14) 100%);
  z-index: 1;
}

.nav-wrap,
.hero-content {
  position: relative;
  z-index: 3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0 0;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  max-height: 88px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  transition: 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #d6b07a;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

.hero-content {
  padding: 50px 0 0;
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.hero-copy {
  max-width: 760px;
  padding-top: 30px;
}
.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 30px);
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
  max-width: 760px;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(15px, 2vw, 15px);
  line-height: 1.22;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  max-width: 820px;
}

.hero-small {
  margin: 0 0 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-highlight {
  margin: 0;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  color: #f0cf95;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 130px;
}

.hero-divider {
  width: 100%;
  max-width: 420px;
  height: 5px;
  margin: 18px 0 20px;
  background: linear-gradient(90deg, #d6b07a 0%, rgba(214, 176, 122, 0.55) 48%, rgba(214, 176, 122, 0) 100%);
  box-shadow: 0 0 10px rgba(214, 176, 122, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 25px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.28s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #1d63bb 0%, #0d4c96 100%);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #216dcf 0%, #1157aa 100%);
}

.btn-secondary {
  background: linear-gradient(180deg, #cb9d4a 0%, #b6842f 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #d7aa57 0%, #c18e38 100%);
}

/* ================= HERO STATS ================= */

.stats-wrap {
  margin-top: 72px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.stats-bar {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
}

.stat-item {
  position: relative;
  padding: 30px 24px 26px;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(8px);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 176, 122, 0.28);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.06) 100%);
}

.stat-item strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.stat-item span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  max-width: 180px;
  margin: 0 auto;
}

/* ================= SECTIONS ================= */

.section {
  padding: 95px 0;
  position: relative;
}

.section-light {
  background: transparent;
}

.section-white {
  background: var(--white-block);
}

.section-sand {
  background: #ead9bf;
}

.section-dark-block {
  background: linear-gradient(180deg, #0f1824 0%, #0b1420 100%);
}

.section-tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.section h2 {
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.12;
  margin: 14px 0 18px;
}

.section-light h2,
.section-white h2,
.section-sand h2,
.section-light h3,
.section-white h3,
.section-sand h3 {
  color: #2d2217;
}

.section-light p,
.section-white p,
.section-sand p {
  color: rgba(45, 34, 23, 0.78);
}

.section-dark-block h2,
.section-dark-block h3,
.section-dark-block p,
.section-dark-block .mini-grid span,
.section-dark-block .stack-list div,
.section-dark-block .region-wrap span {
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-box,
.content-card,
.panel,
.highlight-panel,
.form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 243, 0.58));
  border: 1px solid rgba(120, 88, 48, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(101, 72, 31, 0.1);
  position: relative;
  overflow: hidden;
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.feature-box::before,
.content-card::before,
.panel::before,
.highlight-panel::before,
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(183, 132, 62, 0));
}

.feature-box {
  padding: 24px;
}

.feature-box h3,
.content-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card-grid.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-card {
  padding: 28px;
}

.content-card:hover,
.feature-box:hover,
.panel:hover,
.highlight-panel:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
}

.business-card .card-line {
  width: 54px;
  height: 4px;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  margin-bottom: 18px;
}

.products-layout {
  align-items: center;
}

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

.product-chip {
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(120, 88, 48, 0.12);
  background: rgba(255, 255, 255, 0.54);
  color: #2d2217;
  font-weight: 600;
  transition: 0.2s ease;
}

.product-chip:hover {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(183, 132, 62, 0.26);
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel,
.highlight-panel {
  padding: 30px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.mini-grid span,
.stack-list div,
.region-wrap span {
  border: 1px solid rgba(120, 88, 48, 0.12);
  background: rgba(255, 255, 255, 0.48);
  border-radius: 14px;
  padding: 13px 15px;
  color: rgba(45, 34, 23, 0.88);
}

.section-dark-block .mini-grid span,
.section-dark-block .stack-list div,
.section-dark-block .region-wrap span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stack-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.region-wrap {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
  margin-top: 20px;
}

.highlight-panel {
  background: linear-gradient(180deg, rgba(183, 132, 62, 0.1), rgba(255, 255, 255, 0.42)), rgba(255, 255, 255, 0.54);
}

.highlight-panel h3 {
  font-size: 38px;
  margin: 0 0 12px;
  color: #2d2217;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.nav a.active-link {
  color: #fff;
}

.nav a.active-link::after {
  width: 100%;
}

/* ================= FORMS ================= */

.forms-section {
  padding-bottom: 104px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-card {
  padding: 30px;
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(120, 88, 48, 0.14);
  border-radius: 12px;
  padding: 14px 15px;
  color: #2d2217;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: rgba(183, 132, 62, 0.55);
  box-shadow: 0 0 0 3px rgba(183, 132, 62, 0.1);
}

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

.site-form input::placeholder,
.site-form textarea::placeholder {
  color: rgba(45, 34, 23, 0.48);
}

.site-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

/* ================= FLASH ================= */

.flash-wrap {
  padding-top: 22px;
}

.flash {
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid transparent;
  font-weight: 600;
}

.flash-success {
  background: rgba(31, 143, 88, 0.14);
  border-color: rgba(31, 143, 88, 0.28);
  color: #1f8f58;
}

.flash-error {
  background: rgba(163, 59, 59, 0.14);
  border-color: rgba(163, 59, 59, 0.28);
  color: #a33b3b;
}

/* ================= PRE-FOOTER CTA ================= */

.prefooter-cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18)),
    #ead9bf;
  padding: 34px 0;
  border-top: 1px solid rgba(120, 88, 48, 0.1);
  border-bottom: 1px solid rgba(120, 88, 48, 0.1);
}

.prefooter-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 243, 0.58));
  border: 1px solid rgba(120, 88, 48, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(101, 72, 31, 0.1);
  padding: 34px;
}

.prefooter-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  color: #2d2217;
}

.prefooter-copy p:last-child {
  margin: 0;
  color: rgba(45, 34, 23, 0.76);
}

.prefooter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================= FOOTER ================= */

.footer-dark {
  position: relative;
  background: linear-gradient(180deg, #101925 0%, #0b1420 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.footer-top-pattern {
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  background:
    radial-gradient(circle at 12% 30%, rgba(214, 176, 122, 0.1), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.04), transparent 24%);
  pointer-events: none;
}

.footer-grid-advanced {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 34px;
  padding: 72px 0 44px;
}

.footer-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-img {
  max-height: 82px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-company {
  min-width: 0;
}

.footer-company-text {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.9;
  max-width: 380px;
  margin: 0 0 24px;
}

.footer-contact-mini {
  display: grid;
  gap: 10px;
}

.footer-contact-mini a {
  color: rgba(255, 255, 255, 0.82);
  transition: 0.25s ease;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-social:hover {
  transform: translateY(-3px);
  background: rgba(214, 176, 122, 0.18);
  border-color: rgba(214, 176, 122, 0.34);
  color: #f0cf95;
}

.footer-contact-mini a:hover,
.footer-links a:hover,
.footer-bottom-links a:hover,
.footer-map-btn:hover {
  color: #f0cf95;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  position: relative;
  padding-left: 14px;
  transition: 0.25s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(214, 176, 122, 0.75);
  transform: translateY(-50%);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #f0cf95;
  transition: width 0.25s ease;
}

.footer-links a:hover::after {
  width: calc(100% - 14px);
}

.footer-address {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
  margin: 0 0 18px;
}

.footer-map-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.footer-map-card iframe {
  display: block;
  width: 100%;
  filter: grayscale(20%) contrast(1.05);
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #cb9d4a 0%, #b6842f 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.footer-map-btn:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: 0.25s ease;
}

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

.admin-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #f1e1c8, #e8d2b1);
}

.admin-login-card {
  width: min(460px, calc(100% - 32px));
  margin: 80px auto;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(120, 88, 48, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 270px 1fr;
}

.admin-sidebar {
  border-right: 1px solid rgba(120, 88, 48, 0.12);
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.36);
}

.admin-sidebar nav {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.admin-sidebar a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.admin-main {
  padding: 28px;
}

.admin-topbar {
  margin-bottom: 20px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.admin-section {
  margin-top: 24px;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(120, 88, 48, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(120, 88, 48, 0.08);
  text-align: left;
  vertical-align: top;
  color: #2d2217;
}

.table-wrap th {
  color: #8f6329;
  background: rgba(255, 255, 255, 0.28);
}

.small {
  font-size: 12px;
  color: rgba(45, 34, 23, 0.6);
}

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

@media (max-width: 1100px) {
  .two-col,
  .split-panels,
  .form-grid,
  .card-grid.four,
  .card-grid.three,
  .product-grid,
  .admin-dashboard,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-panel {
    grid-template-columns: 1fr 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .prefooter-cta-inner {
    grid-template-columns: 1fr;
  }

  .prefooter-actions {
    justify-content: flex-start;
  }

  .footer-grid-advanced {
    grid-template-columns: 1fr 1fr;
  }
}

.hero + main {
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .hero {
    min-height: auto;
    height: auto;
    max-height: none;
    padding-bottom: 0px;
  }

  .hero-content {
    padding-top: 42px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-copy h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .stats-wrap {
    margin-top: 42px;
    padding-bottom: 0;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-height: auto;
    padding: 22px 18px;
  }


  .nav {
    gap: 14px;
  }

  .brand-logo-img {
    max-height: 62px;
  }

  .prefooter-cta-inner {
    padding: 24px;
  }

  .footer-grid-advanced {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0 34px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-img {
    max-height: 62px;
  }

  .footer-map-card iframe {
    height: 200px;
  }
}

/* ================= PREMIUM FLOATING CONTACT WIDGET ================= */

.floating-contact-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.floating-contact-panel {
  width: 290px;
  padding: 14px;
  border-radius: 24px;
  display: grid;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.floating-contact-widget.open .floating-contact-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.floating-contact-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(214,176,122,0.26);
}

.floating-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.floating-contact-item.call .floating-contact-icon {
  background: linear-gradient(180deg, #1d63bb 0%, #0d4c96 100%);
}

.floating-contact-item.mail .floating-contact-icon {
  background: linear-gradient(180deg, #cb9d4a 0%, #b6842f 100%);
}

.floating-contact-item.whatsapp .floating-contact-icon {
  background: linear-gradient(180deg, #22c55e 0%, #169c46 100%);
}

.floating-contact-item.location .floating-contact-icon {
  background: linear-gradient(180deg, #7a5af8 0%, #5b3fd6 100%);
}

.floating-contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.floating-contact-text strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.floating-contact-text small {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.35;
  margin-top: 3px;
  word-break: break-word;
}

.floating-contact-toggle {
  min-width: 140px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(16,25,37,0.96), rgba(11,20,32,0.94));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.floating-contact-toggle:hover {
  transform: translateY(-3px);
  border-color: rgba(214,176,122,0.28);
  box-shadow: 0 24px 46px rgba(0,0,0,0.28);
}

.floating-toggle-main {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #cb9d4a 0%, #b6842f 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.floating-toggle-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.floating-contact-widget.open .floating-contact-toggle {
  border-color: rgba(214,176,122,0.30);
}

@media (max-width: 700px) {
  .floating-contact-widget {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact-panel {
    width: min(290px, calc(100vw - 28px));
    padding: 12px;
    border-radius: 20px;
  }

  .floating-contact-toggle {
    min-width: 126px;
    height: 54px;
    padding: 0 16px;
  }

  .floating-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 16px;
  }

  .floating-contact-text strong {
    font-size: 13px;
  }

  .floating-contact-text small {
    font-size: 11px;
  }
}

/* ================= AJAX TOAST ================= */

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-toast {
  min-width: 300px;
  max-width: 420px;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(-16px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 18px 40px rgba(88, 60, 24, 0.18);
  border: 1px solid rgba(120, 88, 48, 0.14);
}

.site-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.site-toast-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
}

.toast-success {
  background: linear-gradient(180deg, #8f6329 0%, #6f4b1f 100%);
  color: #fff7ea;
}

.toast-error {
  background: linear-gradient(180deg, #6e3c2f 0%, #532b22 100%);
  color: #fff3ee;
}

.site-toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  color: #fff;
}

.site-toast-message {
  font-size: 14px;
  line-height: 1.5;
}

.ajax-form button[disabled] {
  opacity: 0.75;
  pointer-events: none;
}

@media (max-width: 700px) {
  .toast-container {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .site-toast {
    min-width: 0;
    max-width: 100%;
  }
}


.inner-hero {
  position: relative;
  padding: 180px 0 90px;
  background:
    linear-gradient(90deg, rgba(7, 12, 20, 0.82) 0%, rgba(7, 12, 20, 0.56) 40%, rgba(7, 12, 20, 0.22) 100%),
    url("../images/hero-desert.jpg") center center / cover no-repeat;
}

.inner-hero-content {
  max-width: 760px;
}

.inner-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.05;
  color: #fff;
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  max-width: 760px;
}

.nav a.active-link {
  color: #fff;
}

.nav a.active-link::after {
  width: 100%;
}

.products-page-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .inner-hero {
    padding: 150px 0 70px;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }
}