*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2d8f5e;
  --green-light: #3cb371;
  --gold: #e8b923;
  --gold-light: #ffd54f;
  --red: #c0392b;
  --maroon: #6b1c1c;
  --cream: #f5f0e6;
  --dark: #0c0c0c;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --text: #e8e4dc;
  --text-muted: #9a958a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: clamp(140px, 30vw, 220px);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.loader__bar-wrap {
  width: min(280px, 70vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 0.15s ease;
}

.loader__text {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(20px);
}

.nav.scrolled {
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__logo {
  height: 58px;
  width: auto;
  background: #f5f5d8;
  padding: 6px;
  border-radius: 8px;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: wheat;
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--cream);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #000000;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 143, 94, 0.35);
}

.nav__cta1 {
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #000000 !important;
  font-size: 22px !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav__cta1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 143, 94, 0.35);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(12, 12, 12, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu.open a:nth-child(5) {
  transition-delay: 0.25s;
}

/* ── HERO VIDEO ── */
.hero-sequence {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}

.hero-sequence__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0c0c0c;
}

.hero-sequence__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-sequence__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(12, 12, 12, .28) 0%,
      rgba(12, 12, 12, .05) 35%,
      rgba(12, 12, 12, .72) 100%);
}

.hero-sequence__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
  pointer-events: none;
}

.hero-sequence__scroll-hint span {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-sequence__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Parallax text layers during scroll */
.hero-parallax-text {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  user-select: none;
}

.hero-parallax-text--1 {
  top: 15%;
  left: -5%;
  font-size: clamp(4rem, 15vw, 12rem);
}

.hero-parallax-text--2 {
  bottom: 25%;
  right: -8%;
  font-size: clamp(3rem, 12vw, 9rem);
  color: rgba(45, 143, 94, 0.08);
}

/* ── SECTIONS COMMON ── */
section {
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--dark);
}

.about-section {
  padding: 80px 0 20px 0;
  background: var(--dark);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__text p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

.about__visual {
  position: relative;
}

.about__img-main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/4;
  object-fit: cover;
  width: 100%;
}

.about__img-float {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 45%;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about__badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
  box-shadow: 0 10px 40px rgba(107, 28, 28, 0.5);
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
}

/* ── MARQUEE ── */
.marquee-section {
  padding: 2rem 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.marquee__item span {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── MENU ── */
.menu {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--dark-2);
}

.menu__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.menu__header p {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.menu__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.menu-card__img-wrap {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 4/3; */
}

.menu-card__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.menu-card:hover .menu-card__img {
  transform: scale(1.08);
}

.menu-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.8), transparent 50%);
  height: 250px;
}

.menu-card__body {
  padding: 1.5rem;
}

.menu-card__tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}

.menu-card__desc {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu__cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 185, 35, 0.3);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.about-btns {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.pt-10 {
  padding: 10px 10px !important;
  width: fit-content !important;
}

/* ── HORIZONTAL SCROLL SHOWCASE ── */
.showcase {
  padding: clamp(0rem, 8vh, 0rem) 0;
  background: var(--dark);
  overflow: hidden;
}

.showcase__pin {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.showcase__track {
  display: flex;
  gap: 2rem;
  padding: 0 clamp(1rem, 4vw, 4rem);
  will-change: transform;
}

.showcase__card {
  flex: 0 0 clamp(280px, 70vw, 420px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.showcase__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.showcase__card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.showcase__card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--cream);
}

.showcase__card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── AWWARDS/BEHANCE DARK THEME GALLERY SECTION ── */
:root {
  --bg-pitch: #080a09;
  --bg-card: rgba(18, 24, 21, 0.55);
  --accent-emerald: #00e676;
  --accent-gold: #d4a373;
  --text-main: #f0f4f2;
  --text-muted: #889890;
  --border-glow: rgba(0, 230, 118, 0.3);
  --border-glass: rgba(255, 255, 255, 0.08);
  --font-heading: 'Playfair Display', serif;
  --transition-cubic: cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background-color: var(--bg-pitch);
  color: var(--text-main);
  position: relative;
}

.gallery__header {
  margin-bottom: 3.5rem;
}

/* Section Header Badges */
.gallery__label-glow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--accent-emerald);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}

.gallery__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* Asymmetrical Bento Grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: border-color 0.4s var(--transition-cubic), transform 0.4s var(--transition-cubic), box-shadow 0.4s var(--transition-cubic);
}

/* Grid Layout Spans */
.gallery__item:nth-child(1) {
  grid-column: span 7;
  height: 420px;
}

.gallery__item:nth-child(2) {
  grid-column: span 5;
  height: 420px;
}

.gallery__item:nth-child(3) {
  grid-column: span 4;
  height: 320px;
}

.gallery__item:nth-child(4) {
  grid-column: span 4;
  height: 320px;
}

.gallery__item:nth-child(5) {
  grid-column: span 4;
  height: 320px;
}

.gallery__item:nth-child(6) {
  grid-column: span 12;
  height: 360px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-cubic), filter 0.5s var(--transition-cubic);
  filter: brightness(0.9);
}

/* Hover States */
.gallery__item:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 230, 118, 0.1);
}

.gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Overlay & Glass Badge Tag */
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(0deg, rgba(8, 10, 9, 0.85) 0%, rgba(8, 10, 9, 0.1) 60%);
  opacity: 0.9;
  transition: opacity 0.4s var(--transition-cubic);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(8, 10, 9, 0.65);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transform: translateY(-10px);
  transition: transform 0.4s var(--transition-cubic);
}

.gallery__item:hover .gallery__tag {
  transform: translateY(0);
}

.gallery__view-btn {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--accent-emerald);
  color: var(--bg-pitch);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s var(--transition-cubic), transform 0.4s var(--transition-cubic);
}

.gallery__item:hover .gallery__view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 7, 6, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition-cubic);
}

.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal__img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 16px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.gallery-modal__close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-modal__close:hover {
  background: var(--accent-emerald);
  color: var(--bg-pitch);
}

/* Responsive */
@media (max-width: 992px) {

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2) {
    grid-column: span 12;
    height: 360px;
  }

  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) {
    grid-column: span 6;
    height: 280px;
  }

  .gallery__item:nth-child(6) {
    grid-column: span 12;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .gallery__item:nth-child(n) {
    grid-column: span 12;
    height: 260px;
  }
}

/* ── BEHANCE DARK THEME TESTIMONIALS ── */
:root {
  --t-dark-bg: #0c0d0e;
  --t-card-bg: rgba(22, 24, 26, 0.75);
  --t-border: rgba(255, 255, 255, 0.08);
  --t-border-gold: rgba(232, 185, 35, 0.35);
  --t-gold: #e8b923;
  --t-text-main: #f5f5f4;
  --t-text-muted: #9ba1a6;
  --t-font-display: 'Playfair Display', serif;
  --t-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background-color: var(--t-dark-bg);
  position: relative;
  overflow: hidden;
}

/* Ambient Radial Glow */
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 185, 35, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* Grid & Slider Track */
/* ── SINGLE LINE MARQUEE ── */
.testimonials__slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2.5rem 0 5.5rem 0;
  /* Fade mask at edges */
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonials__grid {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  white-space: nowrap;
  /* Ensures cards stay strictly in one line */
  will-change: transform;
}

/* Glassmorphic Testimonial Cards */
.testimonial-card {
  background: var(--t-card-bg);
  border: 1px solid var(--t-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.4s var(--t-ease);
  width: 380px;
  flex-shrink: 0;
  white-space: normal;
  /* Restores normal text wrapping inside cards */
}

.testimonial-card:hover {
  border-color: var(--t-border-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(232, 185, 35, 0.08);
}

/* Floating Giant Quote Accent Mark */
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--t-font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.testimonial-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.testimonial-card__stars {
  color: var(--t-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card__badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(232, 185, 35, 0.1);
  color: var(--t-gold);
  border: 1px solid rgba(232, 185, 35, 0.2);
}

.testimonial-card__text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--t-text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Author Avatar & Detail Styling */
.testimonial-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--t-border);
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.8), rgba(12, 13, 14, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid var(--t-border-gold);
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--t-text-main);
  letter-spacing: 0.02em;
}

.testimonial-card__platform {
  font-size: 0.75rem;
  color: var(--t-text-muted);
  margin-top: 2px;
}

/* Slider Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonials__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--t-card-bg);
  border: 1px solid var(--t-border);
  color: var(--t-text-main);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--t-ease);
}

.testimonials__nav-btn:hover {
  border-color: var(--t-gold);
  color: var(--t-gold);
  background: rgba(232, 185, 35, 0.08);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s var(--t-ease);
}

.testimonials__dot.active {
  width: 28px;
  background: var(--t-gold);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT SECTION FIXES ── */

.contact {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background-color: #0c0d0e;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Left Info Cards */
.contact__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact__info-card {
  background: #16181a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
}

.contact__info-card:hover {
  border-color: rgba(232, 185, 35, 0.4);
  transform: translateY(-3px);
}

.contact__icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 185, 35, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8b923;
  margin-bottom: 0.75rem;
}

.contact__icon svg {
  width: 18px;
  height: 18px;
}

.contact__info-card h4 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8b923;
  margin-bottom: 0.35rem;
}

.contact__info-card p,
.contact__info-card a {
  font-size: 0.88rem;
  color: #a0a5aa;
  line-height: 1.5;
  text-decoration: none;
}

/* Right Form Card Container */
.contact__form-card {
  background: #16181a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.25rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Inputs & Textarea */
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: #0c0d0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #666a70;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #e8b923;
  box-shadow: 0 0 10px rgba(232, 185, 35, 0.15);
}

/* High Contrast Yellow Button */
.btn-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: #e8b923;
  color: #0c0d0e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: #f5c731;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .contact__info-grid,
  .contact__form-row {
    grid-template-columns: 1fr;
  }
}




/* Responsive Overrides */
@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .contact__info-grid,
  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact__form-card {
    padding: 1.75rem;
  }
}

/* ── FOOTER ── */
.footer {
  padding: 4rem 0 2rem;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer__logo {
  height: 60px;
  width: auto;
}

.footer__col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.6rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.footer__social a:hover {
  border-color: var(--green);
  background: rgba(45, 143, 94, 0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__img-float {
    left: auto;
    right: -1rem;
    bottom: -1rem;
    width: 40%;
  }

  .about__badge {
    right: auto;
    left: -0.5rem;
    width: 80px;
    height: 80px;
    font-size: 0.55rem;
  }

  .about__badge strong {
    font-size: 1.2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .about__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-parallax-text {
    display: none;
  }
}



@media (max-width: 767px) {
  .hero-sequence {
    min-height: 100svh;
  }

  .hero-sequence__video {
    object-position: 50% center;
  }

  .hero-sequence__overlay {
    background: linear-gradient(to bottom,
        rgba(12, 12, 12, .20) 0%,
        rgba(12, 12, 12, .12) 45%,
        rgba(12, 12, 12, .78) 100%);
  }

  .hero-sequence__scroll-hint {
    bottom: 1.25rem;
  }
}

/* ── DARK CLASSY ZIGZAG MENU SECTION ── */
:root {
  --tx-bg-dark: #0c0d0e;
  --tx-card-bg: rgba(22, 24, 26, 0.7);
  --tx-border: rgba(255, 255, 255, 0.08);
  --tx-gold: #e8b923;
  --tx-gold-light: rgba(232, 185, 35, 0.15);
  --tx-text: #ffffff;
  --tx-text-muted: #9ba1a6;
  --tx-serif: 'Playfair Display', Georgia, serif;
}

.tx-zigzag-menu {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background-color: var(--tx-bg-dark);
  color: var(--tx-text);
}

/* Header */
.tx-zigzag__header {
  text-align: center;
  max-width: 650px;
  margin: 4rem auto 4rem auto;
}

.tx-zigzag__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tx-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.tx-zigzag__title {
  font-family: var(--tx-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--tx-text);
}

.tx-zigzag__title em {
  font-style: italic;
  color: var(--tx-gold);
}

/* Section Row Block (50/50 Layout) */
.tx-zigzag__row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.tx-zigzag__row:last-child {
  margin-bottom: 0;
}

/* Alternating Reverse Block */
.tx-zigzag__row--reverse {
  flex-direction: row-reverse;
}

/* Feature Image Container */
.tx-zigzag__media {
  flex: 1;
  width: 350px;
}

.tx-zigzag__img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--tx-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  aspect-ratio: 4 / 3;
}

.tx-zigzag__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.tx-zigzag__img-frame:hover .tx-zigzag__img {
  transform: scale(1.05);
}

/* Menu Content Container */
.tx-zigzag__content {
  flex: 1;
  width: 100%;
}

.tx-zigzag__cat-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tx-gold);
  margin-bottom: 0.3rem;
  display: block;
}

.tx-zigzag__cat-title {
  font-family: var(--tx-serif);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--tx-text);
  border-bottom: 1px solid var(--tx-border);
  padding-bottom: 0.75rem;
}

/* Dish List Formatting */
.tx-zigzag__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 30px;
}

.grid-sec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 60px; /* Adjust this value (e.g., 60px to 100px) to increase space between columns */
  row-gap: 24px;   /* Vertical spacing between menu rows */
}

.tx-zigzag__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tx-zigzag__item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.tx-zigzag__item-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tx-text);
  /* white-space: nowrap; */
}

/* Dotted Leader Line */
.tx-zigzag__leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 0 0.5rem;
}

.tx-zigzag__item-price {
  font-family: var(--tx-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tx-gold);
}

.tx-zigzag__item-desc {
  font-size: 0.85rem;
  color: var(--tx-text-muted);
  line-height: 1.5;
}

/* Responsive Scaling */
@media (max-width: 992px) {

  .tx-zigzag__row,
  .tx-zigzag__row--reverse {
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 0rem;
  }
  .grid-sec{
    display: block;
  }
}


/* ==========================================================================
   Tandoori Xpress - Occasions Section Styles
   ========================================================================== */
:root {
  --tx-bg-dark: #0c0d0e;
  --tx-card-bg: #141618;
  --tx-card-border: #23272b;
  --tx-gold: #e5a83b;
  --tx-gold-hover: #f5b84c;
  --tx-text-primary: #f3f4f6;
  --tx-text-muted: #9ca3af;
  --tx-font-heading: 'Cinzel', serif;
  --tx-font-body: 'Plus Jakarta Sans', sans-serif;
}

.tx-occasions-section {
  background-color: var(--tx-bg-dark);
  color: var(--tx-text-primary);
  font-family: var(--tx-font-body);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.tx-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Area */
.tx-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.tx-header-content {
  max-width: 650px;
}

.tx-eyebrow {
  color: var(--tx-gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.tx-title {
  font-family: var(--tx-font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--tx-text-primary);
  margin: 0 0 16px 0;
}

.tx-title span {
  color: var(--tx-gold);
  font-style: italic;
  font-family: serif;
}

.tx-subtitle {
  color: var(--tx-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Navigation Controls */
.tx-nav-controls {
  display: flex;
  gap: 12px;
}

.tx-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tx-card-bg);
  border: 1px solid var(--tx-card-border);
  color: var(--tx-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tx-nav-btn:hover {
  background: var(--tx-gold);
  border-color: var(--tx-gold);
  color: #000;
  transform: translateY(-2px);
}

.tx-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: fill 0.3s;
}

/* Horizontal Scroll Track */
.tx-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: 12px 0 32px 0;
  cursor: grab;
}

.tx-scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.tx-scroll-wrapper:active {
  cursor: grabbing;
}

.tx-cards-track {
  display: flex;
  gap: 24px;
  padding-left: max(24px, calc((100vw - 1320px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1320px) / 2 + 24px));
  width: max-content;
}

/* Card Styling */
.tx-card {
  width: 340px;
  background: var(--tx-card-bg);
  border: 1px solid var(--tx-card-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  flex-shrink: 0;
}

.tx-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 168, 59, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 168, 59, 0.1);
}

.tx-card-number {
  font-family: var(--tx-font-heading);
  font-size: 0.875rem;
  color: var(--tx-gold);
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.tx-card-title {
  font-family: var(--tx-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--tx-text-primary);
  margin: 0 0 14px 0;
}

.tx-card-desc {
  color: var(--tx-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.tx-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tx-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.tx-card:hover .tx-card-action {
  gap: 12px;
  color: var(--tx-gold-hover);
}

/* Scroll Progress Bar */
.tx-progress-container {
  max-width: 1320px;
  margin: 20px auto 0 auto;
  padding: 0 24px;
}

.tx-progress-bar {
  height: 2px;
  width: 100%;
  background: var(--tx-card-border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.tx-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: var(--tx-gold);
  transition: width 0.1s ease-out;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .tx-occasions-section {
    padding: 60px 0;
  }

  .tx-card {
    width: 280px;
    padding: 24px 20px;
  }

  .tx-header-wrap {
    margin-bottom: 32px;
  }
}

/* ==========================================================================
   Tandoori Xpress - Catering Section (Standard CSS)
   ========================================================================== */

.tx-catering-section {
  background-color: #0c0d0e;
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Background Mandala Texture Glow Effect */
.tx-catering-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 168, 59, 0.08) 0%, rgba(12, 13, 14, 0) 70%);
  pointer-events: none;
}

.tx-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.tx-catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Styling */
.tx-catering-content {
  display: flex;
  flex-direction: column;
}

.tx-eyebrow {
  color: #e5a83b;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.tx-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #f3f4f6;
  margin: 0 0 20px 0;
}

.tx-title span {
  color: #e5a83b;
  font-style: italic;
  font-family: serif;
}

.tx-lead-text {
  font-size: 1.15rem;
  color: #f3f4f6;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 500;
}

.tx-description {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.tx-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.tx-btn-primary {
  background-color: #e5a83b;
  color: #000000;
  border: 1px solid #e5a83b;
}

.tx-btn-primary:hover {
  background-color: #f5b84c;
  border-color: #f5b84c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 168, 59, 0.25);
}

.tx-btn-outline {
  background-color: transparent;
  color: #f3f4f6;
  border: 1px solid #23272b;
}

.tx-btn-outline:hover {
  border-color: #e5a83b;
  color: #e5a83b;
  transform: translateY(-2px);
}

/* Right Column Grid Cards */
.tx-catering-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tx-feature-card {
  background-color: #141618;
  border: 1px solid #23272b;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tx-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 168, 59, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.tx-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229, 168, 59, 0.1);
  color: #e5a83b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tx-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.tx-feature-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #f3f4f6;
  margin: 0 0 10px 0;
}

.tx-feature-desc {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tx-catering-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .tx-catering-section {
    padding: 60px 0;
  }

  .tx-catering-features {
    grid-template-columns: 1fr;
  }

  .tx-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .tx-btn {
    width: 100%;
  }
}


/* ==========================================================================
   Tandoori Xpress - FAQ Section (2-Column Grid - Pure HTML/CSS)
   ========================================================================== */

.tx-faq-section {
  background-color: #0c0d0e;
  color: #f3f4f6;
  padding: 40px 0;
  position: relative;
}

.tx-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.tx-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.tx-eyebrow {
  color: #e5a83b;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.tx-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #f3f4f6;
  margin: 0;
}

.tx-title span {
  color: #e5a83b;
  font-style: italic;
  font-family: serif;
}

/* 2-Column Grid Layout */
.tx-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card Wrapper */
.tx-faq-item {
  background-color: #141618;
  border: 1px solid #23272b;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tx-faq-item:hover {
  border-color: rgba(229, 168, 59, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Question Header */
.tx-faq-question {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0 0 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.tx-faq-question::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #e5a83b;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Highlighted Always-Visible Answer Box */
.tx-faq-answer-inner {
  background-color: rgba(229, 168, 59, 0.05);
  border-left: 3px solid #e5a83b;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  flex-grow: 1;
}

.tx-faq-answer-inner p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tx-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .tx-faq-section {
    padding: 60px 0;
  }

  .tx-faq-item {
    padding: 20px;
  }
}

/* ============================= */
/* FLOATING ORDER BUTTON â€“ ALL DEVICES */
/* ============================= */

#order {
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 9999;
}

#order a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  background-color: #e8b923;
  border: 1px solid #eeaa2b;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* LARGE DESKTOP */
/* ============================= */
@media (min-width: 1400px) {
  #order a {
    font-size: 1.1rem;
    padding: 16px 26px;
  }
}

/* ============================= */
/* LAPTOP */
/* ============================= */
@media (max-width: 1199px) {
  #order a {
    font-size: 0.95rem;
    padding: 12px 18px;
  }
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {
  #order {
    top: auto;
    bottom: 25%;
    transform: none;
  }

  #order a {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

/* ============================= */
/* MOBILE (iPhone / Android) */
/* ============================= */
@media (max-width: 576px) {
  #order {
    bottom: 18%;
  }

  #order a {
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 6px 0 0 6px;
  }

  #order a i {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   TANDOORI XPRESS - CATERING SECTION STYLES (MATCHING SITE THEME)
   ========================================================================== */

.txc-catering-wrapper {
  background-color: #0c0d0e;
  color: #c5c8ce;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  width: 100%;
}

.txc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.txc-container-narrow {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & General Styling */
.txc-eyebrow {
  color: #e5a83b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.txc-eyebrow-accent {
  color: #10b981;
}

.txc-section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.txc-section-heading h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.25;
}

.txc-section-heading p {
  color: #9ca3af;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

/* Common Buttons (Matching site gold style) */
.txc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.txc-btn-primary {
  background-color: #e5a83b;
  color: #0c0d0e;
  border: 1px solid #e5a83b;
}

.txc-btn-primary:hover {
  background-color: #f5b84c;
  border-color: #f5b84c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 168, 59, 0.25);
}

.txc-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #32373e;
}

.txc-btn-outline:hover {
  border-color: #e5a83b;
  color: #e5a83b;
  transform: translateY(-2px);
}

.txc-btn-green {
  background-color: #10b981;
  color: #0c0d0e;
  border: 1px solid #10b981;
}

.txc-btn-green:hover {
  background-color: #34d399;
  border-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

/* Card Visual Frames & Image Overlays */
.txc-card-bg-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid #23272d;
  transition: all 0.3s ease;
}

.txc-card-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 13, 14, 0.4) 0%, rgba(12, 13, 14, 0.92) 100%);
  z-index: 1;
}

.txc-card-content {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.txc-hero-section {
  position: relative;
  padding: 130px 0 90px 0;
  background-color: #0c0d0e;
  background-image: linear-gradient(180deg, rgba(12, 13, 14, 0.6) 0%, #0c0d0e 100%),
    url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #23272d;
}

.txc-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.txc-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.txc-hero-text {
  font-size: 1.05rem;
  color: #a1a5b0;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.txc-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   2. INTRO SECTION
   ========================================================================== */
.txc-intro-section {
  padding: 80px 0;
  background-color: #111315;
  border-bottom: 1px solid #23272d;
}

.txc-intro-card {
  background-color: #16181b;
  border: 1px solid #282c33;
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.txc-intro-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: #ffffff;
  margin: 0 0 18px 0;
}

.txc-intro-card p {
  color: #9ca3af;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.txc-intro-card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   3. MENU CATEGORIES SECTION
   ========================================================================== */
.txc-menu-section {
  padding: 90px 0;
  background-color: #0c0d0e;
}

.txc-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.txc-menu-card {
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  text-decoration: none;
}

.txc-menu-card:hover {
  transform: translateY(-6px);
  border-color: #e5a83b;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.txc-menu-card h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.txc-menu-card p {
  color: #a1a5b0;
  font-size: 0.92rem;
  margin: 0;
}

.txc-menu-card p strong {
  color: #e5a83b;
  font-size: 1.15rem;
}

/* Specific background images for menu category cards */
.txc-cat-combos {
  background-image: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=600&q=80');
}

.txc-cat-meat {
  background-image: url('img/creamy-butter-chicken-curry-with-naan.jpg');
}

.txc-cat-veg {
  background-image: url('https://images.unsplash.com/photo-1631452180519-c014fe946bc7?auto=format&fit=crop&w=600&q=80');
}

.txc-cat-rice {
  background-image: url('https://images.unsplash.com/photo-1563379091339-03b21ab4a4f8?auto=format&fit=crop&w=600&q=80');
}

.txc-cat-apps {
  background-image: url('https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=600&q=80');
}

.txc-cat-breads {
  background-image: url('img/naan.jpg');
}

.txc-center-btn {
  text-align: center;
}

/* ==========================================================================
   4. OCCASIONS GRID SECTION
   ========================================================================== */
.txc-occasions-section {
  padding: 90px 0;
  background-color: #111315;
  border-top: 1px solid #23272d;
  border-bottom: 1px solid #23272d;
}

.txc-occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.txc-info-card {
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.txc-info-card:hover {
  transform: translateY(-4px);
  border-color: #e5a83b;
}

.txc-info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: #e5a83b;
  margin: 0 0 8px 0;
}

.txc-info-card p {
  color: #d1d5db;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Background images for Occasion cards */
.txc-occ-wedding {
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=600&q=80');
}

.txc-occ-corp {
  background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=600&q=80');
}

.txc-occ-bday {
  background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=600&q=80');
}

.txc-occ-family {
  background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=600&q=80');
}

.txc-occ-private {
  background-image: url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=600&q=80');
}

.txc-occ-cultural {
  background-image: url('https://images.unsplash.com/photo-1617692855027-33b14f061079?auto=format&fit=crop&w=600&q=80');
}

/* ==========================================================================
   5. WHY US / FEATURES SECTION
   ========================================================================== */
.txc-why-section {
  padding: 90px 0;
  background-color: #0c0d0e;
}

.txc-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.txc-why-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #ffffff;
  margin: 0 0 18px 0;
  line-height: 1.25;
}

.txc-why-text p {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.txc-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.txc-check-card {
  background-color: #16181b;
  border: 1px solid #282c33;
  border-radius: 12px;
  padding: 18px 20px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.txc-check-card span {
  color: #e5a83b;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==========================================================================
   6. CATERING OFFER PROMO CARD
   ========================================================================== */
.txc-offer-section {
  padding: 80px 0;
  background-color: #111315;
  border-top: 1px solid #23272d;
  border-bottom: 1px solid #23272d;
}

.txc-offer-card {
  background: linear-gradient(135deg, #1a1d21 0%, #121417 100%);
  border: 2px dashed #e5a83b;
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.txc-offer-badge {
  display: inline-block;
  background-color: rgba(229, 168, 59, 0.12);
  color: #e5a83b;
  border: 1px solid #e5a83b;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.txc-offer-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.txc-offer-card p {
  color: #9ca3af;
  font-size: 1rem;
  margin: 0 0 22px 0;
}

.txc-offer-code {
  display: inline-block;
  background-color: #0c0d0e;
  border: 1px solid #282c33;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.txc-offer-code strong {
  color: #e5a83b;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.txc-offer-note {
  font-size: 0.82rem !important;
  color: #6b7280 !important;
  margin: 0 !important;
}

/* ==========================================================================
   7. SERVICE AREA / LOCAL CATERING
   ========================================================================== */
.txc-location-section {
  padding: 90px 0;
  background-color: #0c0d0e;
}

.txc-location-box {
  background-color: #16181b;
  border: 1px solid #282c33;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

.txc-location-box h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: #ffffff;
  margin: 0 0 18px 0;
}

.txc-location-box p {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.txc-location-box p strong {
  color: #ffffff;
}

/* ==========================================================================
   8. HOW IT WORKS (STEPS)
   ========================================================================== */
.txc-steps-section {
  padding: 90px 0;
  background-color: #111315;
  border-top: 1px solid #23272d;
  border-bottom: 1px solid #23272d;
}

.txc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.txc-step-card {
  background-color: #16181b;
  border: 1px solid #282c33;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.txc-step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(229, 168, 59, 0.1);
  border: 1px solid #e5a83b;
  color: #e5a83b;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}

.txc-step-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.txc-step-card p {
  color: #9ca3af;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.txc-faq-section {
  padding: 90px 0;
  background-color: #0c0d0e;
}

.txc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.txc-faq-item {
  background-color: #16181b;
  border: 1px solid #282c33;
  border-radius: 14px;
  padding: 24px;
}

.txc-faq-question {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.txc-faq-answer {
  background-color: rgba(229, 168, 59, 0.04);
  border-left: 3px solid #e5a83b;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

.txc-faq-answer p {
  color: #9ca3af;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   10. FINAL CTA SECTION
   ========================================================================== */
.txc-final-cta {
  padding: 90px 0;
  background: radial-gradient(circle at center, #181a1d 0%, #0c0d0e 100%);
  border-top: 1px solid #23272d;
  text-align: center;
}

.txc-cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.txc-final-cta h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin: 0 0 14px 0;
}

.txc-final-cta p {
  color: #9ca3af;
  font-size: 1.05rem;
  margin: 0 0 32px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {

  .txc-menu-grid,
  .txc-occasion-grid,
  .txc-steps-grid,
  .txc-faq-grid,
  .txc-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .txc-check-grid {
    grid-template-columns: 1fr;
  }

  .txc-intro-card,
  .txc-location-box,
  .txc-offer-card {
    padding: 28px 20px;
  }
}



/* Popup Overlay Base Styles */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

/* Active State to Force Display */
.popup-overlay.active {
  display: flex !important;
}

/* Inner Popup Container */
.popup {
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  padding: 30px;
}

.popup img {
  display: block;
  width: 100%;
  height: auto;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.popup-btn1 {
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Responsive: Move to bottom center on small screens */
@media (max-width: 700px) {
  .social-icons-fixed {
    top: auto;
    bottom: 50px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    border-radius: 8px 8px 0 0;
    padding: 8px 12px;
  }

  .mt-sm-2 {
    margin-top: 10px;
  }
}

/* offers */
/* Layout & Section Styling */
.offers-section {
  background-color: #0d0d0d;
  padding: 80px 20px;
  margin-top: 50px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.offers-section .container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header Typography */
.offers-header {
  text-align: center;
  margin-bottom: 50px;
}

.offers-header .sub-title {
  color: #a0a0a0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.offers-header .main-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 400;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.offers-header .main-title em {
  font-style: italic;
  color: #e2a838; /* Signature Gold Accent */
}

.offers-header .section-desc {
  color: #888888;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Styling */
.offer-card {
  background-color: #181818;
  border: 1px solid #282828;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 168, 56, 0.4);
}

/* Image Container & Overlay Tag */
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-img {
  transform: scale(1.05);
}

.badge-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #e2a838;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Inner Content */
.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-label {
  color: #e2a838;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.coupon-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.offer-detail {
  color: #888888;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Website Theme Button */
.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e2a838;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-theme .btn-arrow {
  margin-left: 6px;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.btn-theme:hover {
  background-color: #f1b747;
  color: #000000;
}

.app-popup-content h3{
  color: #000 !important;
}

.btn-theme:hover .btn-arrow {
  transform: translateX(4px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* Sticky Floating Gift Button Container */
.sticky-gift-btn {
  position: fixed;
  bottom: 140px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 12px;
  background: rgba(24, 24, 24, 0.85);
  border: 1px solid rgba(226, 168, 56, 0.4); /* Signature Gold Border */
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 
              0 0 15px rgba(226, 168, 56, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: giftGlowPulse 2.5s infinite ease-in-out;
}

/* Icon Container & Float Animation */
.gift-icon-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e2a838; /* Gold Background */
  flex-shrink: 0;
  animation: giftBounce 2s infinite ease-in-out;
}

.gift-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Label Text Style */
.gift-btn-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
}

/* Hover & Focus State */
.sticky-gift-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: #e2a838;
  border-color: #e2a838;
  color: #000000;
  box-shadow: 0 12px 25px rgba(226, 168, 56, 0.4);
}

.sticky-gift-btn:hover .gift-btn-text {
  color: #000000;
}

.sticky-gift-btn:hover .gift-icon-wrap {
  background: #000000;
  animation: giftShake 0.5s ease-in-out;
}

.sticky-gift-btn:hover .gift-icon-img {
  filter: brightness(0) invert(1); /* Turns icon white on hover */
}

/* Keyframe Animations */

/* Glowing Soft Pulse */
@keyframes giftGlowPulse {
  0% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(226, 168, 56, 0.5);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 12px rgba(226, 168, 56, 0);
  }
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(226, 168, 56, 0);
  }
}

/* Gentle Vertical Float */
@keyframes giftBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Wiggle Effect on Hover */
@keyframes giftShake {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(12deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(6deg); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
  .sticky-gift-btn {
    bottom: 20px;
    right: 20px;
    padding: 8px;
    border-radius: 50%; /* Compact circle on mobile */
  }

  .gift-btn-text {
    display: none; /* Hides text on small screens to save space */
  }

  .gift-icon-wrap {
    width: 42px;
    height: 42px;
  }
}