/* ── CSS Variables ── */
:root {
  --gold: #b8965a;
  --dark: #141414;
  --mid: #2a2a2a;
  --light-bg: #f7f4f0;
  --cream: #ede8e0;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.65);
}

/* ── Shared Section Utilities ── */
.ds-section { overflow: hidden; }
.ds-section .container { position: relative; }

.ds-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ds-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
}

.ds-h2 {
     font-size: 2.9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.ds-h2--light { color: var(--white); }
.ds-h2--dark  { color: var(--dark); }

.ds-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ds-cta--dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.ds-cta--dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.ds-cta--gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.ds-cta--gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
}

.ds-cta--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.ds-cta--outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ── Scroll-reveal animation ── */
.ds-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ds-reveal.ds-revealed {
  opacity: 1;
  transform: translateY(0);
}
.ds-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ds-reveal-left.ds-revealed {
  opacity: 1;
  transform: translateX(0);
}
.ds-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ds-reveal-right.ds-revealed {
  opacity: 1;
  transform: translateX(0);
}
.ds-delay-1 { transition-delay: 0.15s; }
.ds-delay-2 { transition-delay: 0.3s; }
.ds-delay-3 { transition-delay: 0.45s; }
.ds-delay-4 { transition-delay: 0.6s; }

/* ── Shared two-col grid ── */
.ds-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ── Shared image styles ── */
.ds-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Responsive common ── */
@media (max-width: 991px) {
  .ds-two-col { grid-template-columns: 1fr; gap: 40px; }
  .ds-h2 { font-size: 30px; }
}
@media (max-width: 575px) {
  .ds-h2 { font-size: 26px; }
  .ds-cta { padding: 11px 26px; }
}

.hm-s1 {
  padding: 110px 0;
  background: var(--light-bg);
}
.hm-s1-visual {
  position: relative;
  height: 480px;
}
.hm-s1-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 82%;
  height: 400px;
  overflow: hidden;
  border-radius: 3px;
}
.hm-s1-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 220px;
  overflow: hidden;
  border-radius: 3px;
  border: 5px solid var(--light-bg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.hm-s1-badge {
  position: absolute;
  top: -18px; right: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 2px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
    .hm-s1 {
        padding: 32px 0;
        background: var(--light-bg);
    }
    .hm-s2 {
    padding: 54px 0;
    background: var(--dark);
}
.hm-s3 {
    padding: 49px 0;
    background: var(--white);
}
.hm-s4 {
    padding: 49px 0;
    background: #1b2030;
}
.hm-s5 {
    padding: 49px 0;
    background: var(--cream);
}
.hm-s7 {
    padding: 49px 0;
    background: #1e1e1e;
    position: relative;
}
.hm-s8 {
    padding: 60px 0;
    background: var(--light-bg);
}
.hm-s9 {
    padding: 49px 0;
    background: var(--white);
}
.hm-s11 {
    padding: 59px 0;
    background: var(--white);
}
.hm-s12 {
    padding: 56px 0;
    background: var(--dark);
}
}
@media (max-width: 991px) {
  .hm-s1-visual { height: 320px; }
  .hm-s1-img-main { width: 100%; height: 260px; }
  .hm-s1-img-accent { display: none; }
}

.hm-s2 {
  padding: 110px 0;
  background: var(--dark);
}
.hm-s2-img-frame {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 3px;
}
.hm-s2-img-line {
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  z-index: 0;
  pointer-events: none;
}
.hm-s2-img-frame img { border-radius: 3px; height: 100%; }
.hm-s2-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hm-s2-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 24px;
}
.hm-s2-stat:last-child { border-right: none; margin-right: 0; }
.hm-s2-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hm-s2-stat span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
@media (max-width: 991px) {
  .hm-s2-img-frame { height: 280px; }
  .hm-s2-img-line { display: none; }
  .hm-s2-stats { gap: 16px; }
  .hm-s2-stat { padding-right: 16px; margin-right: 16px; }
  .hm-s2-stat strong { font-size: 26px; }
}

.hm-s3 {
  padding: 110px 0;
  background: var(--white);
}
.hm-s3-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.hm-s3-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 14px;
  height: 460px;
}
.hm-s3-tile-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hm-s3-tile-col .hm-s3-tile { height: calc(50% - 7px); }
.hm-s3-tile {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.hm-s3-tile--tall { height: 100%; }
.hm-s3-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.hm-s3-tile:hover img { transform: scale(1.05); }
.hm-s3-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.68));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 36px 16px 14px;
}
@media (max-width: 991px) {
  .hm-s3-header { grid-template-columns: 1fr; gap: 20px; }
  .hm-s3-mosaic { grid-template-columns: 1fr 1fr; height: auto; }
  .hm-s3-tile--tall:last-child { display: none; }
  .hm-s3-tile--tall { height: 240px; }
  .hm-s3-tile-col .hm-s3-tile { height: 160px; }
}
@media (max-width: 575px) {
  .hm-s3-mosaic { grid-template-columns: 1fr; height: auto; }
  .hm-s3-tile-col { display: none; }
  .hm-s3-tile--tall { height: 260px; }
}

.hm-s4 {
  padding: 110px 0;
  background: #1b2030;
}
.hm-s4-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 28px;
}
.hm-s4-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 13px 0 13px 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  position: relative;
}
.hm-s4-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.hm-s4-visual {
  position: relative;
}
.hm-s4-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.hm-s4-corner-box {
  position: absolute;
  top: -22px; right: -22px;
  background: var(--gold);
  padding: 22px 26px;
  border-radius: 2px;
  text-align: center;
}
.hm-s4-corner-box strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}
.hm-s4-corner-box span {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 5px;
}
@media (max-width: 991px) {
  .hm-s4-visual img { height: 280px; }
  .hm-s4-corner-box { top: auto; bottom: -16px; right: 10px; }
}

.hm-s5 {
  padding: 110px 0;
  background: var(--cream);
}
.hm-s5-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.hm-s5-desc { align-self: end; }
.hm-s5-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hm-s5-card {
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 0.45s ease, transform 0.3s ease;
}
.hm-s5-card:hover { transform: translateY(-6px); }
.hm-s5-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 50px 20px 22px;
}
.hm-s5-card-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}
.hm-s5-card h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 991px) {
  .hm-s5-top { grid-template-columns: 1fr; gap: 16px; }
  .hm-s5-cards { grid-template-columns: 1fr 1fr; }
  .hm-s5-card { height: 220px; }
}
@media (max-width: 575px) {
  .hm-s5-cards { grid-template-columns: 1fr; }
  .hm-s5-card { height: 200px; }
}

.hm-s6 { background: var(--white); }
.hm-s6-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hm-s6-image {
  position: relative;
  overflow: hidden;
}
.hm-s6-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hm-s6-image:hover img { transform: scale(1.03); }
.hm-s6-image-tag {
  position: absolute;
  bottom: 28px; right: -1px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px 0 0 2px;
}
.hm-s6-content {
  display: flex;
  align-items: center;
  background: var(--white);
}
.hm-s6-inner {
  padding: 70px 60px;
}
.hm-s6-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 24px;
}
.hm-s6-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-radius: 3px;
  border-left: 3px solid var(--gold);
}
.hm-s6-step span {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.hm-s6-step p {
  margin: 0 !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
@media (max-width: 991px) {
  .hm-s6-wrapper { grid-template-columns: 1fr; }
  .hm-s6-image { height: 300px; }
  .hm-s6-inner { padding: 50px 24px; max-width: 100%; }
}
@media (max-width: 575px) {
  .hm-s6-steps { grid-template-columns: 1fr; }
}

.hm-s7 {
  padding: 110px 0;
  background: #1e1e1e;
  position: relative;
}
.hm-s7 .container { position: relative; z-index: 1; }
.hm-s7-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hm-s7-use-cases {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}
.hm-s7-use {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.hm-s7-use:hover {
  border-color: var(--gold);
  background: rgba(184,150,90,0.08);
}
.hm-s7-use-icon { font-size: 24px; margin-bottom: 10px; }
.hm-s7-use span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hm-s7-visual {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  height: 500px;
}
.hm-s7-img-wrap {
  overflow: hidden;
  border-radius: 3px;
  height: 100%;
}
.hm-s7-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.hm-s7-img-wrap:hover img { transform: scale(1.04); }
.hm-s7-img-wrap--sm { margin-top: 60px; }
@media (max-width: 991px) {
  .hm-s7-inner { grid-template-columns: 1fr; gap: 40px; }
  .hm-s7-visual { height: 260px; }
  .hm-s7-img-wrap--sm { display: none; }
  .hm-s7-visual { grid-template-columns: 1fr; }
  .hm-s7-use-cases { flex-direction: column; }
}

.hm-s8 {
  padding: 110px 0;
  background: var(--light-bg);
}
.hm-s8-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hm-s8-img-primary {
  overflow: hidden;
  border-radius: 3px;
  height: 360px;
}
.hm-s8-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.hm-s8-img-primary:hover img { transform: scale(1.04); }
.hm-s8-swatch-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.hm-s8-swatch {
  flex: 1;
  height: 54px;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.hm-s8-swatch:hover { transform: scaleY(1.08); }
.hm-s8-swatch span {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  white-space: nowrap;
  color: #666;
  letter-spacing: 0.5px;
}
.hm-s8-feature {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.hm-s8-feat-item {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 3px 3px 0;
}
.hm-s8-feat-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.hm-s8-feat-item span {
  font-size: 13px;
  color: #777;
  margin-top: 3px;
}
@media (max-width: 991px) {
  .hm-s8-inner { grid-template-columns: 1fr; gap: 40px; }
  .hm-s8-img-primary { height: 260px; }
}

.hm-s9 {
  padding: 110px 0;
  background: var(--white);
}
.hm-s9-title-row {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.hm-s9-title-line {
  background: #ddd;
  height: 80px;
  width: 1px;
}
.hm-s9-images {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  height: 420px;
}
.hm-s9-img-wrap {
  overflow: hidden;
  border-radius: 3px;
}
.hm-s9-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.hm-s9-img-wrap:hover img { transform: scale(1.04); }
.hm-s9-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding: 36px 44px;
  background: var(--dark);
  border-radius: 3px;
}
.hm-s9-cta-strip p {
  color: rgba(255,255,255,0.8) !important;
  margin: 0 !important;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .hm-s9-title-row { grid-template-columns: 1fr; }
  .hm-s9-title-line { display: none; }
  .hm-s9-images { grid-template-columns: 1fr; height: auto; }
  .hm-s9-img-wrap { height: 240px; }
  .hm-s9-img-wrap--big { height: 260px; }
  .hm-s9-cta-strip { flex-direction: column; gap: 20px; text-align: center; padding: 30px 20px; }
}

.hm-s10 {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.hm-s10-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hm-s10-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-s10-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 45%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}
.hm-s10-container {
  position: relative;
  z-index: 2;
}
.hm-s10-content { max-width: 600px; }
.hm-s10-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hm-s10-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.hm-s10-benefit:hover {
  border-color: var(--gold);
  background: rgba(184,150,90,0.12);
}
.hm-s10-benefit span { color: var(--gold); font-weight: 800; }
@media (max-width: 575px) {
  .hm-s10 { padding: 22px 0; }
}

.hm-s11 {
  padding: 110px 0;
  background: var(--white);
}
.hm-s11-visual {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
  height: 560px;
}
.hm-s11-img-main { overflow: hidden; border-radius: 3px; }
.hm-s11-img-foot {
  overflow: hidden;
  border-radius: 3px;
  margin-top: 60px;
}
.hm-s11-img-main img,
.hm-s11-img-foot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.hm-s11-img-main:hover img,
.hm-s11-img-foot:hover img { transform: scale(1.04); }
.hm-s11-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0;
  border-left: 2px solid var(--cream);
  padding-left: 28px;
}
.hm-s11-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  position: relative;
}
.hm-s11-step::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.hm-s11-step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  padding-top: 3px;
  flex-shrink: 0;
}
.hm-s11-step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.hm-s11-step p {
  font-size: 13px !important;
  color: #888 !important;
  margin: 3px 0 0 !important;
}
@media (max-width: 991px) {
  .hm-s11-visual { grid-template-columns: 1fr; height: 280px; }
  .hm-s11-img-foot { margin-top: 0; display: none; }
}

.hm-s12 {
  padding: 110px 0;
  background: var(--dark);
}
.hm-s12-header {
  margin-bottom: 60px;
}
.hm-s12-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.hm-s12-card {
  padding: 40px 34px;
  background: var(--dark);
  transition: background 0.3s;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hm-s12-card:hover { background: #1e1e1e; }
.hm-s12-icon {
  font-size: 28px;
  margin-bottom: 18px;
}
.hm-s12-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
}
.hm-s12-card--quote {
  background: var(--gold);
  border: none;
}
.hm-s12-card--quote:hover { background: #c9a868; }
.hm-s12-card--quote p {
  color: var(--white) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-style: italic;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .hm-s12-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .hm-s12-grid { grid-template-columns: 1fr; }
}

.hm-s13 {
  padding: 110px 0;
  background: var(--light-bg);
}
.hm-s13-header { margin-bottom: 60px; }
.hm-s13-faqs { max-width: 820px; }
.hm-s13-item {
  border-bottom: 1px solid #ddd;
}
.hm-s13-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 20px;
  transition: color 0.3s;
}
.hm-s13-q:hover { color: var(--gold); }
.hm-s13-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.hm-s13-item.open .hm-s13-icon { transform: rotate(45deg); }
.hm-s13-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.hm-s13-item.open .hm-s13-a { max-height: 200px; padding-bottom: 18px; }
.hm-s13-a p { color: #666; font-size: 15px; line-height: 1.7; margin: 0; }
/* Side-by-side layout wrapper */
.hm-s14-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left content takes equal space, left-aligned now */
.hm-s14-inner .hm-s14-content {
  flex: 1;
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.hm-s14-inner .hm-s14-content p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hm-s14-inner .hm-s14-btns {
  justify-content: flex-start;
}

/* Right form column */
.hm-s14-form {
  flex: 0 0 460px;
  width: 460px;
}

.hm-s14-form .banner-form-glass {
  max-width: 100%;
  animation: none; /* avoid re-triggering banner animation */
}

/* Tablet: stack vertically */
@media (max-width: 991px) {
  .hm-s14-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hm-s14-inner .hm-s14-content {
    text-align: center;
  }

  .hm-s14-inner .hm-s14-content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hm-s14-inner .hm-s14-btns {
    justify-content: center;
  }

  .hm-s14-form {
    flex: unset;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hm-s14-inner {
    gap: 30px;
  }
}

.hm-s14 {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}
.hm-s14-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hm-s14-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-s14-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.76);
  z-index: 1;
}
.hm-s14-container {
  position: relative;
  z-index: 2;
}
.hm-s14-content { max-width: 640px; margin: 0 auto; }
.hm-s14-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .hm-s14 { padding: 100px 0; }
  .hm-s14-btns { flex-direction: column; align-items: center; }
}
/* ── Banner Layout ── */
.banner-area {
  position: relative;
  min-height: 109vh;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .banner-area { min-height: 107vh; }
}

@media (max-width: 768px) {
  .banner-area { min-height: 140vh; }
}

@media (max-width: 430px) {
  .banner-area { min-height: 155vh; }
}

@media (max-width: 390px) {
  .banner-area { min-height: 160vh; }
}

@media (max-width: 375px) {
  .banner-area { min-height: 165vh; }
}

@media (max-width: 360px) {
  .banner-area { min-height: 170vh; }
}

@media (max-width: 575px) {
  .banner-area {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 60px;
  }

  .banner-area .fullscreen {
    min-height: unset !important;
    height: auto !important;
    padding: 100px 0 60px;
  }
}
@media (max-width: 360px) {
  /* Small Android devices */
  .banner-area {
    min-height: 199vh;
  }
}
.banner-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.banner-area .overlay-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-area .container {
  position: relative;
  z-index: 2;
}

.banner-area .fullscreen {
  min-height: 100vh;
  padding: 120px 0 80px;
}

/* ── Left Content ── */
.banner-left {
  text-align: left !important;
  padding-right: 40px;
  animation: bfadeLeft 0.9s ease both;
}

.banner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a95e;
  border-left: 3px solid #c9a95e;
  padding-left: 12px;
  margin-bottom: 20px;
}

.banner-left h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-left p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 500px;
  margin-bottom: 14px !important;
      font-weight: 600;
}

/* ── Glass Form ── */
.banner-form-glass {
  width: 100%;
  max-width: 460px;
  background: rgb(0 0 0 / 58%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 26px 28px;
  animation: bfadeRight 0.9s ease 0.2s both;
}

.banner-form-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.banner-form-header h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
}

.banner-form-header p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

/* ── Form Grid: 6-6 two-column layout ── */
.banner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Full-width fields */
.bf-group--full {
  grid-column: 1 / -1;
}

.bf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bf-group label {
  color: rgba(255, 255, 255, 0.70);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: left;
}

.bf-group input,
.bf-group select,
.bf-group textarea {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 9px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}

.bf-group input::placeholder,
.bf-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.bf-group select option {
  background: #1a1a1a;
  color: #fff;
}

.bf-group input:focus,
.bf-group select:focus,
.bf-group textarea:focus {
  border-color: #c9a95e;
  background: rgba(255, 255, 255, 0.14);
}

.bf-group textarea {
  resize: none;
  height: 72px;
}

.bf-submit {
  grid-column: 1 / -1;
  padding: 12px;
  background: #c9a95e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.bf-submit:hover {
  background: #b8965a;
  transform: translateY(-2px);
}

/* ── Animations ── */
@keyframes bfadeLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bfadeRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .banner-left {
    padding-right: 0;
    text-align: center !important;
    margin-bottom: 36px;
  }
  .banner-left p { max-width: 100%; }
  .banner-tag { border-left: none; padding-left: 0; border-bottom: 2px solid #c9a95e; padding-bottom: 4px; }
  .banner-left h1 { font-size: 30px; }
  .col-lg-6.d-flex { justify-content: center !important; }
  .banner-form-glass { max-width: 100%; }
}

@media (max-width: 575px) {
  .banner-left h1 { font-size: 26px; }
  .banner-form-glass { padding: 20px 16px; }
  .banner-area .fullscreen { padding: 100px 0 60px; }
  .banner-form { grid-template-columns: 1fr; }
  .bf-group--full { grid-column: 1; }
  .bf-submit { grid-column: 1; }
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-social a:hover {
    background: #c9a95e;
    border-color: #c9a95e;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .header-social {
        /* display: none; */
        align-items: center;
        justify-content: center;
    }
}

/* ===== Custom Footer Styling ===== */

.custom-footer-area {
    background: #111;
    color: #ddd;
    padding-top: 70px;
    padding-bottom: 30px;
    position: relative;
}

.custom-footer-area h5,
.custom-footer-area h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    
}

.custom-footer-area p {
    font-size: 14px;
    line-height: 1.8;
    color: #bfbfbf;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

/* About Section */
.footer-about {
    border-left: 2px solid #c9a14a;
    padding-left: 15px;
    transition: 0.3s ease;
}

.footer-about:hover {
    border-color: #ffffff;
    transform: translateX(5px);
}

/* Contact Section */
.footer-contact-list {
    padding-left: 0;
}

.footer-contact-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #bfbfbf;
}

.footer-contact-list strong {
    color: #ffffff;
    font-weight: 600;
}

/* Social Section */
.footer-social-area p {
    font-size: 14px;
    color: #bfbfbf;
}

/* Using Your Existing header-social Class */
.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s ease;
}

.header-social a:hover {
    background: #c9a14a;
    color: #111;
    transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .custom-footer-area {
        text-align: center;
    }

    .footer-about {
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-left: 0;
        padding-bottom: 15px;
    }

    .header-social a {
        margin-bottom: 10px;
    }
}
#mobile-nav-toggle {
  display: none !important;
}

.hero-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px !important;
    flex-wrap: wrap;
}

/* Secondary White Border Button */
.secondary-btn {
    display: inline-block;
    padding: 7px 30px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
        margin-left: 20px;
}

/* Hover Effect */
.secondary-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn-wrapper a {
        width: 100%;
        text-align: center;
    }
}