﻿:root {
  --white: #ffffff;
  --black: #111111;
  --grey: #6f6f6f;
  --muted: #666666;
  --bg: #fbf8f1;
  --soft: #f7f1ec;
  --orange: #d82b26;
  --red: #d81a1a;
  --light: #faf7f4;
  --overlay: rgba(18, 18, 18, 0.45);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--light);
}

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

button,
input {
  font: inherit;
}

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

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
}

.top-links,
.top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.top-link {
  color: var(--grey);
  font-size: 0.88rem;
}

.top-link.highlight {
  color: var(--red);
  font-weight: 600;
}

.nav-main {
  background: #fff;
  box-shadow: 0 20px 60px rgba(18, 18, 18, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.brand-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-logo span {
  font-size: 1.05rem;
}

.navbar {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item button,
.nav-item a {
  background: transparent;
  border: none;
  color: var(--black);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.55rem 0.25rem;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.nav-item.open .dropdown-toggle {
  color: var(--red);
}

.nav-item.open .dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 280px;
  padding: 0.9rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(18, 18, 18, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 20;
}

.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel {
  display: grid;
  gap: 0.75rem;
}

.dropdown-panel.columns-2 {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
}

.dropdown-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #faf7f4;
  color: var(--black);
  transition: transform 180ms ease, background 180ms ease;
}

.dropdown-link:hover {
  background: #fff0f0;
  transform: translateY(-1px);
}

.dropdown-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.dropdown-link strong {
  display: block;
  margin-bottom: 0.25rem;
}

.dropdown-link span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 999px;
  margin: 4px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 2rem;
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #f7d2cb;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 1.5rem 0 2rem;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 32px 70px rgba(18, 18, 18, 0.12);
  max-width: 420px;
  margin-left: auto;
}

.card-header h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: #131313;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: #4a4a4a;
}

.lead-form input {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  outline: none;
}

.btn-block {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
}

.card-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.why-choose {
  padding: 40px;
  background: #fff;
}

@media (max-width: 600px) {
  .why-choose {
    padding: 20px 40px;
  }
}

.whyChooseUs_why-choose-us-container__MK7ng.whyChooseUs_campaign__XKODo {
  padding: 48px;
}

.whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_headingTitle__34rH2 {
  color: #222;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  padding-bottom: 16px;
  text-align: center;
}


.whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_slider__vpqwR {
  height: 100%;
  margin: auto;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_slider__vpqwR::-webkit-scrollbar {
  display: none;
}

.whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_slider__vpqwR .whyChooseUs_slide-icons__3t3Vh {
  display: flex;
  gap: 10px;
  width: max-content;
  flex-wrap: nowrap;
}

.whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_slider__vpqwR .whyChooseUs_slide__2zElW {
  height: 100%;
  width: 230px;
  flex: 0 0 auto;
}

@media (max-width: 600px) {

  .whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_slider__vpqwR .whyChooseUs_slide__2zElW,
  .whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_slider__vpqwR .whyChooseUs_slide__2zElW svg {
    height: 180px;
    width: 180px;
  }
}

.whyChooseUs_why-choose-us-container__MK7ng .whyChooseUs_slider__vpqwR:hover .whyChooseUs_slide-icons__3t3Vh {
  animation-play-state: paused;
}

.whyChooseUs_slide__2zElW {
  display: flex;
  justify-content: center;
  align-items: center;
}

.whyChooseUs_icon-block__3L3Uh p {
  max-width: 150px;
}

.whyChooseUs_icon-block__3L3Uh {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  justify-content: flex-start;
  margin-top: 20px;
  width: 210px;
  padding: 14px 10px 6px;
  border-radius: 24px;
  background: transparent;
  border: none;
}

.whyChooseUs_icon-block__3L3Uh .whyChooseUs_svg-wrapper__3yYOS {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  width: 84px;
  min-width: 84px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.whyChooseUs_icon-block__3L3Uh .whyChooseUs_svg-wrapper__3yYOS img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.whyChooseUs_icon-block__3L3Uh .whyChooseUs_svg-wrapper__3yYOS i {
  font-size: 3rem;
  color: #1f1f1f;
  line-height: 1;
}

.whyChooseUs_icon-block__3L3Uh p {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin-top: 14px;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #131313;
}

.offerings-section .section-header h2 {
  font-size: 20px;
}

.section-header--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.why-choose .container,
.offerings-section .container {
  width: 100%;
  max-width: none;
  padding: 0 10px;
  margin: 0;
}

.offerings-section {
  padding: 1rem 10px;
  background: #fff;
}

.estimate-section {
  padding: 4.5rem 0 6rem;
  background: #fff;
}

.estimate-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.estimate-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.estimate-header p {
  margin: 1rem auto 0;
  color: #4a4a4a;
  font-size: 1rem;
  max-width: 520px;
}

.estimate-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.estimate-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.08);
  overflow: hidden;
  min-height: 260px;
}

.estimate-card-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.estimate-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.estimate-icon,
.estimate-right-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: #d81a1a;
}

.estimate-right-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.10;
  z-index: -2;
  pointer-events: none;
}

.estimate-icon img,
.estimate-right-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.estimate-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #111;
}

.estimate-card p {
  margin: 0.85rem 0 1.5rem;
  color: #4a4a4a;
  line-height: 1.75;
}

.estimate-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.95rem 1.35rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(226, 27, 37, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.estimate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(226, 27, 37, 0.2);
  background: #c81520;
}

.after-estimate-section {
  border-bottom: 1px solid #eee;
  margin: 0;
  overflow: hidden;
  padding: 40px 20px 10px;
  text-align: center;
}

.after-estimate-section .section-header {
  margin-bottom: 0;
}

.after-estimate-section .section-header h2 {
  color: #222;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 29px;
  margin: 0 20px 44px;
  text-align: center;
}

.after-estimate-section .section-header p {
  margin: 0 auto 10px;
  max-width: 800px;
  color: #5e5e5e;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card-svg-wrapper {
  height: 240px;
  margin: 0 auto;
  width: 260px;
}

.step-card-svg-wrapper img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
}

.step-card-caption-block {
  margin: 40px auto 10px;
  width: 90%;
}

.step-card-caption-heading {
  display: flex;
  justify-content: center;
  color: #212529;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
  text-align: center;
  margin: 0;
}

.step-card-caption-desc {
  line-height: 17px;
  text-align: left;
}

.step-card-caption-desc p:first-child {
  font-size: 17px;
  margin-bottom: 6px;
}

.step-card-caption-desc p:last-child {
  color: #212529;
  font-size: 16px;
  height: auto;
  margin: 0 0 15px;
}

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

}

@media (max-width: 860px) {
  .estimate-cards {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
}

.offerings-wrap {
  position: relative;
  display: grid;
  align-items: center;
}

.slider-wrap,
.offerings-wrap {
  position: relative;
  display: grid;
  align-items: center;
}

.slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.value-card {
  flex: 0 0 min(190px, 100%);
  min-width: 190px;
  scroll-snap-align: start;
  background: transparent;
  border-radius: 0;
  padding: 0.75rem 0.5rem;
  text-align: center;
  box-shadow: none;
}

.value-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  background: transparent;
  box-shadow: none;
}

.value-icon i {
  font-size: 2.6rem;
  color: #d81a1a;
}

.value-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #1c1c1c;
}

.offering-card {
  flex: 0 0 min(320px, 100%);
  min-width: 320px;
  scroll-snap-align: start;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  position: relative;
}

.offering-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.offering-card h3 {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.offering-card:hover h3,
.offering-card:focus-within h3 {
  opacity: 1;
  transform: translateY(0);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: #fff;
  color: var(--black);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.12);
}

.slider-arrow.prev {
  left: -1rem;
}

.slider-arrow.next {
  right: -1rem;
}

@media (max-width: 900px) {
  .slider-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
  }

  .hero-grid {
    padding: 2.5rem 1rem 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .topbar-inner,
  .nav-inner {
    padding: 0 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }
}

@media (max-width: 860px) {

  .topbar-inner,
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .top-actions,
  .top-links {
    justify-content: center;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
  }

  .hero-grid {
    padding: 2.5rem 1rem 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .topbar-inner,
  .nav-inner {
    padding: 0 1rem;
  }
}

.luxe-section {
  height: 100vh;
  background: url("images/ajor luxe.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.luxe-overlay {
  width: 30%;
  height: 100%;
  background: #dfdcd8;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.90;
}

.luxe-content {
  text-align: center;
}

.intro-text {
  color: #494949;
  font-size: 40px;
  font-weight: 200;
  line-height: 28.8px;
}


.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* Reduced spacing */
  margin-top: 20px;
}

.brand img {
  width: 70px;
  /* Better logo size */
  height: auto;
}

.brand h1 {
  font-size: 60px;
  font-weight: 700;
  color: #d4a02b;
  /* Same as AJOR logo black */
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;

}

.brand span {
  margin-left: 10px;

  color: #d4a02b;
  /* Orange color from logo */

  font-family: 'Brush Script MT', cursive;

  font-size: 68px;

  font-weight: 400;
}

.luxe-btn {
  display: inline-block;
  margin-top: 50px;
  background: linear-gradient(90deg, #d4a02b, #8b5a00);
  color: white;
  text-decoration: none;
  padding: 20px 60px;
  border-radius: 12px;
  font-size: 24px;
  transition: 0.3s;
}

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

@media (max-width: 768px) {
  .luxe-overlay {
    width: 100%;
  }

  .intro-text {
    font-size: 35px;
  }

  .brand {
    flex-direction: column;
  }

  .brand img {
    width: 80px;
  }

  .brand h1 {
    font-size: 50px;
  }

  .luxe-btn {
    font-size: 18px;
    padding: 15px 30px;
  }
}

.reviews {
  padding: 100px 0;
  background: #f8f8f8;
}

.reviews .container {
  max-width: 1200px;
}

.reviews h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.review-slider {
  overflow: hidden;
  padding: 0 20px;
}

.review-track {
  display: flex;
  gap: 30px;
  animation: slide 18s linear infinite;
}

.review-card {
  min-width: 360px;
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #ffb400;
  font-size: 24px;
  margin-bottom: 15px;
}

.review-card h3 {
  margin-bottom: 15px;
}

.review-card p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.review-card span {
  color: #999;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .review-card {
    min-width: 300px;
  }

  .reviews h2 {
    font-size: 32px;
  }
}

.referralBanner_wrapper__3o0ka {
    padding: 50px 279px;
}

.referralBanner_wrapper__3o0ka.referralBanner_wrapper-mob__yHadw {
    padding: 24px 16px;
}

.referralBanner_container__3uoyH {
    -moz-box-pack: center;
    -moz-box-align: center;
    align-items: center;
    background-color: #fff5f7;
    border: 1px solid #fceaed;
    display: -moz-box;
    display: flex;
    justify-content: center;
}

.referralBanner_container__3uoyH.referralBanner_add-border__2M66p {
    border-radius: 8px;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .referralBanner_container__3uoyH {
        -moz-box-orient:vertical;
        -moz-box-direction: reverse;
        flex-direction: column-reverse;
        padding-bottom: 28px;
    }

    .referralBanner_container__3uoyH.referralBanner_add-border__2M66p {
        padding: 32px 48px;
    }
}

.referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 {
    margin: 72px 0;
}

@media (max-width: 768px) {
    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 {
        margin:0;
    }

    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1.referralBanner_w100__SLXUj {
        width: 100%;
    }

    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1.referralBanner_add-sp__t2i3e {
        margin-top: 24px;
    }
}

.referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_title__T3gb0 {
    color: #222;
    font-size: 40px;
    font-weight: 300;
    text-align: left;
}

.referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_title__T3gb0.referralBanner_size__3yl5c {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_title__T3gb0 {
        color:#222;
        font-size: 18px;
        font-weight: 600;
        line-height: 22px;
        margin-bottom: 5px;
        text-align: center;
    }

    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_title__T3gb0.referralBanner_size__3yl5c {
        font-size: 18px;
    }

    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_title__T3gb0.referralBanner_mobilePaddingUpdate__XhDzz {
        padding: 0 8%;
    }
}

.referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_sub-title__1PfzB {
    color: #222;
    font-size: 16px;
    text-align: left;
    width: 370px;
}

@media (max-width: 768px) {
    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_sub-title__1PfzB {
        color:#222;
        font-size: 14px;
        line-height: 17px;
        text-align: center;
        width: auto;
    }

    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_sub-title__1PfzB.referralBanner_sub-title-sm__1rClL {
        margin: 0 8px;
    }

    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_sub-title__1PfzB.referralBanner_mobilePaddingUpdate__XhDzz {
        padding: 0 8%;
    }
}

.referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_refer-btn-block__qWuxw .referralBanner_refer-btn__3a8Sq {
    background-color: #e71c24;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    margin-top: 22px;
    padding: 14px 32px;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_refer-btn-block__qWuxw .referralBanner_refer-btn__3a8Sq {
        margin-top:28px;
        text-align: center;
    }

    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_refer-btn-block__qWuxw .referralBanner_refer-btn__3a8Sq.referralBanner_w100__SLXUj {
        width: 100%;
    }
}

.referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_refer-btn-block__qWuxw .referralBanner_refer-btn__3a8Sq.referralBanner_refer-btn-tablet__2xC7w {
    width: auto;
}

@media (max-width: 768px) {
    .referralBanner_container__3uoyH .referralBanner_content-block__1s5m1 .referralBanner_refer-btn-block__qWuxw {
        margin:auto 16px;
        text-align: center;
    }
}

.referralBanner_container__3uoyH .referralBanner_svg-icon__2kFWI {
    margin-left: 54px;
}

.referralBanner_container__3uoyH .referralBanner_svg-icon__2kFWI.referralBanner_svg-icon-m__1tYzx {
    margin-left: 36px;
}

@media (max-width: 768px) {
    .referralBanner_container__3uoyH .referralBanner_svg-icon__2kFWI {
        margin:32px 0;
    }

    .referralBanner_container__3uoyH .referralBanner_svg-icon__2kFWI.referralBanner_svg-icon-m__1tYzx {
        margin: 0;
    }
}

.reward-section {
  padding: 100px 0;
  background: #fff5f7;
}

.reward-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.reward-eyebrow {
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e31e24;
}

.reward-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.reward-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 610px;
}

.reward-highlight {
  margin-top: 1.75rem;
  padding: 24px 22px;
  border-left: 4px solid #e31e24;
  background: #fff1f3;
  border-radius: 16px;
}

.reward-highlight h3 {
  margin: 0 0 0.75rem;
  color: #e31e24;
  font-size: 1.25rem;
}

.reward-highlight p {
  margin: 0;
  color: #555;
}

.interactive-side {
  display: flex;
  justify-content: center;
}

.chest-wrapper {
  width: 100%;
  max-width: 500px;
  background: #fdfaf6;
  border: 3px dashed #e2d2be;
  border-radius: 16px;
  padding: 30px 24px;
  display: grid;
  gap: 18px;
}

.chest-header {
  text-align: center;
  font-weight: 700;
  color: #8c6239;
  font-size: 1.4rem;
  border-bottom: 2px solid #e2d2be;
  padding-bottom: 14px;
}

.drawer {
  background: linear-gradient(135deg, #dfc086, #c29d53);
  border: 3px solid #8c6239;
  border-radius: 12px;
  padding: 18px 20px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 0 #8c6239, 0 8px 15px rgba(0, 0, 0, 0.1);
}

.drawer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #8c6239, 0 12px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ebd19b, #d1ac62);
}

.drawer:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #8c6239, 0 4px 6px rgba(0, 0, 0, 0.1);
}

.drawer.active-pulse {
  border-color: #28a745;
  animation: pulse-border 2s infinite;
}

.drawer.locked {
  background: #e0e0e0;
  border-color: #b5b5b5;
  color: #888888;
  cursor: not-allowed;
  box-shadow: 0 6px 0 #b5b5b5;
}

.drawer.locked:hover {
  transform: none;
  box-shadow: 0 6px 0 #b5b5b5;
}

.drawer.disabled {
  background: #d8d8d8;
  border-color: #b5b5b5;
  color: #777777;
  cursor: not-allowed;
  opacity: 0.85;
}

.drawer.disabled:hover {
  transform: none;
  box-shadow: 0 6px 0 #b5b5b5;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: white;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  transform: scale(0.7);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.gift-icon-animation {
  font-size: 4.5rem;
  margin-bottom: 18px;
  display: inline-block;
  animation: popOpen 0.5s ease forwards;
}

.modal-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #28a745;
}

.prize-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #e31e24;
  margin: 15px 0;
}

.close-btn {
  margin-top: 25px;
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background: #444;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7), 0 6px 0 #8c6239; }
  70% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0), 0 6px 0 #8c6239; }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0), 0 6px 0 #8c6239; }
}

@keyframes popOpen {
  0% { transform: scale(0); rotate: -20deg; }
  70% { transform: scale(1.2); rotate: 10deg; }
  100% { transform: scale(1); rotate: 0deg; }
}

@media (max-width: 900px) {
  .reward-container {
    grid-template-columns: 1fr;
  }

  .reward-highlight,
  .chest-wrapper {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .reward-container {
    text-align: center;
  }

  .reward-content {
    width: 100%;
  }

  .chest-wrapper {
    width: 100%;
  }
}
