:root {
  --background-color: #fbf9f6;
  --charcoal: #2f261f;
  --button-gradient: linear-gradient(180deg, #d9c3ac 0%, #b9935d 100%);
  --gold: #b9935d;
  --copper-accent: #e48136;
  --light-bg: #f4efea;
  --light-bg-gradient: #f4e0cd;
  --input-bg: #fbf9f6;
  --input-border: #ded6cd;
  --text-muted: #938a7b;
  --dark-bg: #938a7b;
  --white: #fbf9f6;
  --border-color: #ded6cd;
  --yellow-star: #ffb514;
  --error: #B5544A;
  --success-color: #2E7D5A;
  --focus: #D9C3AC;
  --checkbox-checked: #b9935d;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--background-color) !important;
}

/* Custom container with responsive padding */
.custom-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .custom-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 992px) {
  .custom-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .custom-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* Custom navigation styles */
/* ==========================================================================
     || Hero Section Styles Starts ||
     ========================================================================== */
.custom-navbar {
  background-color: var(--light-bg);
  height: 100px;
}

.custom-nav-logo {
  width: 110px;
  height: 65.09px;
}

.custom-nav-link {
  color: var(--charcoal) !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.custom-nav-link:hover {
  color: var(--gold) !important;
}

/* Custom dropdown arrow (>) */
.custom-nav-dropdown-toggle::after {
  display: inline-block;
  width: 12.87px;
  height: 7.41px;
  background-color: var(--charcoal);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  border: none;
  vertical-align: middle;
  margin-left: 8px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .custom-navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .custom-navbar .nav-item.dropdown:hover .custom-nav-dropdown-toggle::after {
    transform: rotate(-90deg);
  }
}

/* Mobile dropdown styles */
@media (max-width: 991.98px) {
  .custom-navbar .nav-item.dropdown.show .custom-nav-dropdown-toggle::after {
    transform: rotate(-90deg);
  }

  .dropdown-menu {
    border: none;
    padding-left: 20px;
  }

  .custom-dropdown-item {
    border-bottom: 1px solid rgba(47, 38, 31, 0.1);
  }

  .custom-dropdown-item:last-child {
    border-bottom: none;
  }
}

.custom-login-btn {
  background: var(--button-gradient) !important;
  border-radius: 8px !important;
  width: 152.31px;
  height: 50px;
  color: #f4efea !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(185, 147, 93, 0.3);
}

.custom-navbar-toggler {
  border: none;
  padding: 0;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.custom-navbar-toggler:focus {
  box-shadow: none;
}

/* Dropdown menu customization */
.custom-dropdown-menu {
  background-color: var(--background-color);
  border: 1px solid rgba(47, 38, 31, 0.1);
  border-radius: 8px;
  /* margin-top: 10px !important; */
}

.custom-dropdown-item {
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.custom-dropdown-item:hover {
  background-color: rgba(185, 147, 93, 0.1);
  color: var(--charcoal);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .custom-navbar {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .custom-nav-logo {
    width: 90px;
    height: auto;
  }

  .custom-login-btn {
    width: 140px;
    height: 45px;
    margin-top: 15px;
  }

  .custom-nav-link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(47, 38, 31, 0.1);
  }

  .navbar-collapse {
    padding-top: 20px;
  }

  /* Mobile dropdown menu */
  .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .custom-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .custom-login-btn {
    width: 120px;
    height: 40px;
    font-size: 16px !important;
  }
}

/* ==========================================================================
  || Hero Section Styles Starts ||
  ========================================================================== */

/* Hero section styles */
.hero-section {
  background: linear-gradient(
    0deg,
    var(--light-bg) 0%,
    var(--light-bg-gradient) 100%
  );
  padding: 60px 0;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Typography */
.hero-title {
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 66px;
  margin-bottom: 20px;
  max-width: 530.76px;
}

.hero-title span {
  color: var(--copper-accent);
}

.hero-subtitle {
  color: var(--charcoal);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 40px;
}

.input-label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 8px;
}

/* Search form */
.search-container {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 0;
  height: 57px;
  display: flex;
  align-items: center;
}

.location-input-wrapper,
.select-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
}

.location-input-wrapper {
  border-right: 1px solid var(--input-border);
}

/* Location icon on the right */
.location-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin-right: 10px;
}

.location-icon i {
  font-size: 16px;
  color: rgba(147, 138, 123, 0.8);
}

/* Dropdown icon on the right */
.dropdown-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin-right: 10px;
}

.dropdown-icon i {
  font-size: 12px;
  color: rgba(147, 138, 123, 0.8);
}

.form-control-custom {
  border: none;
  background: transparent;
  padding: 0 40px 0 15px;
  background-image: none !important;
  height: 100%;
  width: 100%;
  color: rgba(147, 138, 123, 0.8);
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

.select-custom {
  border: none;
  background: transparent;
  padding: 0 30px 0 15px;
  height: 100%;
  width: 100%;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-control-custom:focus,
.select-custom:focus {
  box-shadow: none;
  outline: none;
}

.search-btn {
  background: linear-gradient(180deg, #d9c3ac 0%, #b9935d 100%);
  border-radius: 8px;
  border: none;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  height: 57px;
  padding: 0 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 160px;
  width: 100%;
  /* margin-left: 10px; */
}

.search-btn:hover {
  opacity: 0.9;
}

/* Hero image */
.hero-image-container {
  /* position: relative; */
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transform: translateX(110px);
}

@media screen and (max-width: 992px) {
  .hero-image {
    width: 100%;
    border: 20px;
    transform: unset;
  }
}



/* Responsive adjustments */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-image {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }

  .hero-image {
    height: 350px;
    border-radius: 20px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .search-container {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .location-input-wrapper,
  .select-wrapper {
    border: none;
    height: 50px;
    margin-bottom: 10px;
  }

  .location-input-wrapper {
    border-bottom: 1px solid var(--input-border);
  }

  .search-btn {
    margin-left: 0;
    /*margin-top: 10px;*/
    width: 100%;
  }

  .hero-image {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-image {
    height: 250px;
  }
}

/* ==========================================================================
  || Hero Section Styles Ends ||
  ========================================================================== */

/* ==========================================================================
     || Business Categories Section Styles Starts ||
     ========================================================================== */

.custom-container.px-4 {
  padding: 0 1.5rem;
}

.custom-container.px-md-5 {
  padding: 0 3rem;
}

.custom-container.px-lg-6 {
  padding: 0 4.5rem;
}

.categories-wrapper {
  background-image: url('./images/categories-bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* Categories Section */
.categories-section {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin: 40px 0;
}

.categories-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(47, 38, 31, 0.8) 0%,
    rgba(47, 38, 31, 0.8) 100%
  );
  z-index: 1;
}

.categories-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  color: var(--background-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: var(--light-bg);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 60px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* Category Items */
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.category-icon-wrapper {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    180deg,
    var(--light-bg) 0%,
    var(--light-bg-gradient) 100%
  );
  border-radius: 8px;
  border: 1px solid var(--input-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon {
  width: 66.88px;
  height: 66.88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-name {
  text-align: center;
  color: var(--background-color);
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
    max-width: 700px;
  }

  .categories-content {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .categories-content {
    padding: 60px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .category-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .category-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 767px) {
  .categories-content {
    padding: 50px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .category-item {
    margin-bottom: 25px;
  }

  .category-name {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 20px;
  }

  .category-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .category-icon {
    width: 45px;
    height: 45px;
  }

  .category-name {
    font-size: 16px;
  }

  .categories-content {
    padding: 40px 0;
  }
}

/* ==========================================================================
     || Business Categories Section Styles Ends ||
     ========================================================================== */

/* ==========================================================================
     || Choose a Venue Section Styles Starts ||
     ========================================================================== */
/* Section Header */
.section-header {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.section-title-2 {
  background: rgba(244, 239, 234, 0.3);
  border-radius: 40px;
  outline: 1px solid var(--input-border);
  outline-offset: -1px;
  padding: 15px 30px;
  text-align: center;
}

.section-title-text {
  color: var(--copper-accent);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}

/* Slider Container */
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

.slider-item {
  flex: 0 0 auto;
  padding: 0 10px;
}

.venue-card {
  /* background: rgba(255, 255, 255, 0.4); */
  border-radius: 8px;
  /* border: 1px solid var(--input-border); */
  /* height: 315px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.venue-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.venue-image-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.venue-main-image {
  width: 185.9px;
  height: 187.9px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.venue-name {
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  flex-grow: 1;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
}

.slider-btn {
  width: 57.12px;
  height: 57.12px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}

.slider-btn:hover:not(.disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:active:not(.disabled) {
  transform: scale(0.98);
}

.slider-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#prevBtn {
  background: linear-gradient(180deg, #ded6cd 0%, #78746f 100%);
}

#nextBtn {
  background: linear-gradient(360deg, #e48136 0%, #7e471e 100%);
}

.slider-btn i {
  font-size: 18px;
  color: var(--background-color);
}

/* Responsive Breakpoints */

/* Desktop: 4 items */
@media (min-width: 1200px) {
  .slider-item {
    width: calc(25% - 20px);
  }
}

/* Laptop: 3 items */
@media (min-width: 992px) and (max-width: 1199px) {
  .slider-item {
    width: calc(33.333% - 20px);
  }

  .section-title-text {
    font-size: 28px;
  }

  .venue-card {
    /* height: 290px; */
  }

  .venue-main-image {
    width: 160px;
    height: 160px;
  }

  .venue-secondary-image {
    width: 154px;
    height: 154px;
  }
}

/* Tablet: 2 items */
@media (min-width: 768px) and (max-width: 991px) {
  .slider-item {
    width: calc(50% - 20px);
  }

  .section-title-text {
    font-size: 26px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .venue-card {
    /* height: 280px; */
  }

  .venue-main-image {
    width: 150px;
    height: 150px;
  }

  .venue-secondary-image {
    width: 144px;
    height: 144px;
  }

  .venue-name {
    font-size: 20px;
  }
}

/* Mobile: 2 items */
@media (max-width: 767px) {
  .slider-item {
    width: calc(50% - 20px);
  }

  .section-title {
    padding: 12px 25px;
  }

  .section-title-text {
    font-size: 22px;
  }

  .venue-card {
    /* height: 250px; */
    padding: 15px;
  }

  .venue-main-image {
    width: 120px;
    height: 120px;
  }

  .venue-secondary-image {
    width: 114px;
    height: 114px;
  }

  .venue-name {
    font-size: 18px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
  }

  .slider-btn i {
    font-size: 20px;
  }

  .carousel-controls {
    gap: 30px;
  }

  .slider-wrapper {
    /* gap: 16px; */
  }
}

/* Extra Small Mobile: 1 item */
@media (max-width: 480px) {
  .slider-item {
    width: calc(100% - 20px);
  }

  .section-title {
    padding: 10px 20px;
  }

  .section-title-text {
    font-size: 20px;
  }

  .venue-card {
    /* height: 280px; */
    padding: 20px;
  }

  .venue-main-image {
    width: 140px;
    height: 140px;
  }

  .venue-secondary-image {
    width: 134px;
    height: 134px;
  }

  .venue-name {
    font-size: 20px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
  }

  .slider-btn i {
    font-size: 18px;
  }

  .carousel-controls {
    gap: 25px;
  }
}

/* ==========================================================================
     || Choose a Venue Section Styles Ends ||
     ========================================================================== */

/* ==========================================================================
     || Live Offers Section Styles Starts ||
     ========================================================================== */
/* Section Styling */
.offers-section {
  padding: 60px 0;
}

/* Title Badge */
.title-badge {
  background: rgba(244, 239, 234, 0.3);
  border-radius: 40px;
  border: 1px solid var(--input-border);
  padding: 15px 30px;
  display: inline-block;
  /* margin-bottom: 60px; */
}

.section-title-2 {
  color: var(--copper-accent);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

/* Offer Cards */
.offer-card {
  background: white;
  border-radius: 8px;
  border: 0.6px solid var(--input-border);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  height: 100%;
  /* margin-bottom: 30px; */
  position: relative;
}

.offer-card-content {
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Limited Availability Badge */
.availability-badge {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 15px;
}

.availability-text {
  color: var(--highlight-text);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

/* Offer Title */
.offer-title {
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 210px;
  position: relative;
  z-index: 555 !important;
}

/* Price Section */
.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.current-price {
  color: var(--copper-accent);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.distance {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.original-price {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Time Availability */
.time-availability {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.time-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.time-icon i {
  color: #938a7b;
}

.time-text {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Access Offer Button */
.access-btn {
  background: var(--button-gradient);
  border-radius: 8px;
  border: none;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-bg);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.access-btn:hover {
  color: var(--light-bg);
  opacity: 0.9;
}

/* Offer Image with Gradient Overlay */
.offer-image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 187px;
  height: 185px;
  overflow: hidden;
  border-top-right-radius: 8px;
}

.offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient Overlay - Fixed */
.image-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 82%, white 100%);
  z-index: 2;
  pointer-events: none;
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: rgba(217, 195, 172, 0.1);
  color: var(--gold);
}

.load-more-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.load-more-icon-circle {
  width: 13.35px;
  height: 13.41px;
  border: 1.67px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 3.35px;
  left: 3.35px;
}

.load-more-icon-dot {
  width: 4.19px;
  height: 4.19px;
  border: 1.67px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 3.35px;
  left: 12.57px;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
  /* Desktop: 3 cards per row */
  .offers-grid .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* Laptops: 3 cards per row */
  .offers-grid .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .section-title {
    font-size: 28px;
  }

  .offer-image-container {
    width: 160px;
    height: 160px;
  }

  .offer-title {
    font-size: 16px;
  }

  .current-price {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* Tablets: 2 cards per row */
  .offers-grid .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .offers-section {
    padding: 40px 0;
  }

  .offer-card {
    margin-bottom: 25px;
  }

  .offer-image-container {
    width: 140px;
    height: 140px;
  }

  .offer-card-content {
    padding: 15px;
  }

  .access-btn {
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  /* Mobiles: 1 card per row */
  .offers-grid .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offer-image-container {
    /* position: relative; */
    /* width: 100%; */
    height: 180px;
    /* border-top-right-radius: 8px;
    border-top-left-radius: 8px; */
    /* margin-bottom: 15px; */
  }

  /* Update gradient for mobile */
  .image-gradient-overlay {
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, white 100%); */
  }

  .offer-card-content {
    padding: 15px;
  }

  .offer-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .current-price {
    font-size: 18px;
  }

  .time-text {
    font-size: 13px;
    line-height: 18px;
  }

  .load-more-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 20px;
  }

  .availability-badge {
    margin-bottom: 10px;
  }

  .load-more-btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .offer-image-container {
    height: 160px;
  }


}


@media screen and (max-width: 420px) {
  .offer-card-content {

  }

  .offer-image-container {
  opacity: 0.7;
  }

  .image-gradient-overlay {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 52%, white 100%);
  z-index: 2;
  pointer-events: none;
}
}

/* ==========================================================================
     || Live Offers Section Styles Ends ||
     ========================================================================== */

/* ==========================================================================
     || App Download Section Styles Starts ||
     ========================================================================== */

/* App Download Section */
.app-download-section {
  position: relative;
  margin-top: 67px;
}

.app-bg {
  background: var(--light-bg);
  border-radius: 8px;
  height: 400px;
  position: relative;
  overflow: visible;
}

/* App Image */
.app-image-container {
  position: relative;
  z-index: 2;
  top: -0px;
  height: 486px;
  /* Fixed height for image container */
  display: flex;
  align-items: flex-end;
}

.app-image {
  width: 100%;
  height: auto;
  max-width: 597px;
  border-radius: 8px;
  display: block;
}

/* Content Styling */
.app-content {
  padding: 40px 0;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-title {
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 66px;
  margin-bottom: 30px;
}

/* Personalized Badge */
.personalized-badge {
  background: linear-gradient(
    180deg,
    var(--light-bg) 0%,
    var(--light-bg-gradient) 100%
  );
  border-radius: 40px;
  border: 1px solid var(--input-border);
  padding: 15px 30px;
  display: inline-block;
  margin-bottom: 30px;
  white-space: nowrap;
}

.personalized-text {
  text-align: center;
  margin: 0;
}

.personalized-text span:first-child {
  color: var(--copper-accent);
  font-size: 26px;
  font-weight: 600;
}

.personalized-text span:last-child {
  color: var(--charcoal);
  font-size: 26px;
  font-weight: 600;
}

/* Description */
.app-description {
  color: var(--charcoal);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* App Store Buttons */
.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 44px;
  background: black;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

.app-store-btn img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* =========================== */
/* RESPONSIVE FIXES START HERE */
/* =========================== */

/* Tablet (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .app-bg {
    overflow: hidden !important;
    height: auto;
    padding: 40px 30px;
  }

  .app-image-container {
    margin-top: 0 !important;
    height: auto;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
  }

  .app-image {
    max-width: 450px;
    width: 80%;
    margin: 0 auto;
  }

  .app-content {
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .app-title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 10px;
  }

  .personalized-badge {
    padding: 12px 25px;
    margin-bottom: 20px;
    white-space: nowrap;
  }

  .personalized-text span {
    font-size: 22px;
  }

  .app-description {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 15px;
  }

  .app-buttons {
    justify-content: center;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .app-bg {
    overflow: hidden !important;
    height: auto;
    padding: 40px 25px;
  }

  .app-image-container {
    margin-top: 0 !important;
    height: auto;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
  }

  .app-image {
    max-width: 400px;
    width: 70%;
    margin: 0 auto;
  }

  .app-content {
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .app-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 15px;
  }

  .personalized-badge {
    padding: 10px 20px;
    margin-bottom: 20px;
    white-space: nowrap;
  }

  .personalized-text span {
    font-size: 20px;
  }

  .app-description {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
    padding: 0 20px;
    line-height: 1.6;
  }

  .app-buttons {
    justify-content: center;
    gap: 15px;
  }

  .app-store-btn {
    width: 140px;
    height: 42px;
  }
}

@media (max-width: 576px) {
  .app-download-section {
    margin-top: 30px;
  }

  .app-bg {
    overflow: hidden !important;
    height: auto;
    padding: 30px 20px !important;
    margin: 0 10px;
  }

  .custom-container {
    padding: 0 10px;
  }

  .app-image-container {
    margin-top: 0 !important;
    height: auto;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
  }

  .app-image {
    max-width: 300px;
    width: 80%;
    margin: 0 auto;
  }

  .app-content {
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .app-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 10px;
  }

  .personalized-badge {
    padding: 10px 20px;
    margin-bottom: 20px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
  }

  .personalized-text span {
    font-size: 18px;
  }

  .app-description {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
    padding: 0 15px;
    line-height: 1.6;
  }

  .app-buttons {
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .app-store-btn {
    width: 160px;
    height: 44px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 420px) {
  .personalized-badge {
    border-radius: 40px;
    padding: 10px 20px;
    margin-bottom: 30px;
    white-space: wrap;
  }

  .personalized-text span {
    font-size: 18px !important;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .app-bg {
    padding: 25px 15px !important;
    margin: 0 8px;
  }

  .app-title {
    font-size: 24px;
    line-height: 32px;
    padding: 0 5px;
  }

  .personalized-badge {
    padding: 8px 15px;
    margin-bottom: 15px;
  }

  .personalized-text span {
    font-size: 16px;
  }

  .app-description {
    font-size: 15px;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .app-store-btn {
    width: 150px;
    height: 42px;
  }

  .app-buttons {
    gap: 10px;
  }
}

@media (min-width: 993px) {
  .app-bg {
    overflow: visible !important;
    padding: 0;
  }

  .app-image-container {
    margin-top: -86px;
    height: 486px;
  }

  .app-content {
    padding: 40px 40px 40px 0;
    text-align: left;
    align-items: flex-start;
  }

  .app-title {
    text-align: left;
    padding: 0;
  }

  .app-description {
    text-align: left;
    padding: 0;
  }

  .personalized-badge {
    margin-left: 0;
    margin-right: 0;
  }

  .app-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 1200px) and (min-width: 993px) {
  .app-title {
    font-size: 40px;
    line-height: 56px;
  }

  .personalized-text span {
    font-size: 22px;
  }

  .app-description {
    font-size: 18px;
  }

  .app-content {
    padding: 40px 30px 40px 0;
  }
}

@media (max-width: 992px) {
  .row.align-items-center {
    flex-direction: column;
  }

  .col-md-6-custom {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .app-content {
    width: 100%;
  }
}

/* ==========================================================================
     || App Download Section Styles Ends ||
     ========================================================================== */

/* ==========================================================================
     || How it Works Section Styles Starts ||
     ========================================================================== */
/* Section Styling */
.how-it-works-section {
  padding: 40px 0;
}

/* Steps Cards */
.step-card {
  background: var(--light-bg);
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.25) inset;
  border-radius: 8px;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  min-height: 324px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Step Number */
.step-number {
  width: 46px;
  height: 46px;
  background: var(--input-bg);
  border-radius: 50%;
  border: 1px solid var(--input-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.step-number-text {
  color: var(--text-muted);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

/* Step Icon */
.step-icon {
  width: 89px;
  height: 89px;
  margin: 60px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Step Title */
.step-title {
  color: var(--charcoal);
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  text-align: center;
  margin: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .step-title {
    font-size: 24px;
    line-height: 32px;
    min-height: 64px;
  }

  .step-card {
    padding: 35px 15px;
    min-height: 300px;
  }
}

@media (max-width: 992px) {
  .how-it-works-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .step-card {
    padding: 30px 15px;
    min-height: 280px;
    margin-bottom: 20px;
  }

  .step-icon {
    width: 75px;
    height: 75px;
    margin: 50px 0 25px;
  }

  .step-title {
    font-size: 22px;
    line-height: 30px;
    min-height: 60px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    top: 15px;
    left: 15px;
  }

  .step-number-text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .step-card {
    padding: 25px 15px;
    min-height: 260px;
    margin-bottom: 15px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
    margin: 40px 0 20px;
  }

  .step-title {
    font-size: 20px;
    line-height: 28px;
    min-height: 56px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    top: 15px;
    left: 15px;
  }

  .step-number-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .step-card {
    padding: 20px 15px;
    min-height: 240px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin: 35px 0 15px;
  }

  .step-title {
    font-size: 18px;
    line-height: 26px;
    min-height: 52px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    top: 12px;
    left: 12px;
  }

  .step-number-text {
    font-size: 16px;
  }
}

/* ==========================================================================
     || How it Works Section Styles Ends ||
     ========================================================================== */

/* ==========================================================================
     || Business Promotion Section Styles Starts ||
     ========================================================================== */
.bg-business-promotion {
  background: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  padding: 60px 30px;
  max-width: 1318.62px;
}

/* Business Promotion Section */
.business-promotion-section {
  /*  */
  margin-bottom: 80px !important;
}

/* Content Styling */
.promotion-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.promotion-title {
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 66px;
  margin-bottom: 30px;
}

.promotion-title span {
  color: var(--copper-accent);
}

.promotion-description {
  color: var(--charcoal);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Sign Up Button */
.signup-btn {
  background: var(--button-gradient);
  border-radius: 8px;
  border: none;
  padding: 15px 30px;
  color: var(--light-bg);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
  max-width: 287px;
}

.signup-btn:hover {
  color: var(--light-bg);
  opacity: 0.9;
}

/* Image Container */
.promotion-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.promotion-image {
  width: 100%;
  height: auto;
  max-width: 620px;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .promotion-title {
    font-size: 40px;
    line-height: 56px;
  }

  .promotion-description {
    font-size: 18px;
  }

  .bg-business-promotion {
    padding: 50px 25px;
  }
}

@media (max-width: 992px) {
  .promotion-title {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 20px;
  }

  .promotion-description {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .signup-btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .bg-business-promotion {
    padding: 40px 20px;
  }

  .promotion-image-container {
    margin-top: 40px;
  }

  .promotion-content {
    text-align: center;
    align-items: center;
  }

  .signup-btn {
    max-width: 100%;
    width: 287px;
  }
}

@media (max-width: 768px) {
  .promotion-title {
    font-size: 28px;
    line-height: 40px;
  }

  .promotion-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .signup-btn {
    font-size: 16px;
    padding: 13px 26px;
  }

  .bg-business-promotion {
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .promotion-title {
    font-size: 24px;
    line-height: 36px;
  }

  .promotion-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .signup-btn {
    font-size: 15px;
    padding: 12px 24px;
    width: 100%;
    max-width: 287px;
  }

  .bg-business-promotion {
    padding: 25px 15px;
    border-radius: 6px;
  }

  .promotion-image {
    max-width: 100%;
  }
}

/* ==========================================================================
     || Business Promotion Section Styles Ends ||
     ========================================================================== */

/* ==========================================================================
     || Page Header Section Styles Starts ||
     ========================================================================== */
/* Page Header Styles */
.page-header-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Page Header Content */
.page-header-content {
  max-width: 764.48px;
  margin: 0 auto;
}

/* Main Title */
.page-header-title {
  color: #2f261f;
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin-bottom: 20.37px;
  line-height: 1.2;
  word-wrap: break-word;
}

/* Subtitle */
.page-header-subtitle {
  color: #938a7b;
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.23;
  margin-bottom: 0;
  word-wrap: break-word;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .page-header-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .page-header-title {
    font-size: 30px;
  }

  .page-header-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .page-header-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-header-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .page-header-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .page-header-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-header-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .page-header-subtitle {
    font-size: 16px;
  }

  .page-header-content {
    padding: 0 15px;
  }
}

@media (max-width: 575.98px) {
  .page-header-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-header-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .page-header-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .page-header-title {
    font-size: 22px;
  }

  .page-header-subtitle {
    font-size: 14px;
  }
}
/* ==========================================================================
     || Page Header Section Styles Ends ||
     ========================================================================== */

/* ==========================================================================
     || Footer Section Styles Starts ||
     ========================================================================== */

/* Footer Styles */
.footer {
  /*  */
}

.footer-main {
  background-color: var(--light-bg);
  padding: 70px 0 40px 0;
}

.footer-copyright {
  background-color: var(--dark-bg);
  padding: 25px 0;
}

/* Logo Section */
.footer-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.footer-company-info {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 35px;
  max-width: 320px;
}

/* App Buttons */
.footer-app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: 320px;
}

.footer-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 46px;
  background: #000;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.footer-google-play-btn,
.footer-app-store-btn {
  background: #000;
  padding: 0;
}

.footer-app-btn img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

/* Section Headers */
.footer-section-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 10px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--copper-accent);
}

/* Links Section */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 14px;
}

.footer-link {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-link:hover {
  color: var(--copper-accent);
  transform: translateX(5px);
}

.footer-link i {
  font-size: 12px;
  margin-right: 8px;
  color: var(--copper-accent);
}

/* Contact Section */
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  color: var(--copper-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
  word-break: break-word;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(180deg, #d9c3ac 0%, #daa56d 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--charcoal);
}

.footer-social-icon i {
  font-size: 18px;
}

/* Newsletter Section - UNIQUE CLASSES */
.footer-newsletter-form {
  margin-top: 25px;
  width: 100%;
}

.footer-input-group {
  /*display: flex;*/
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 18px;
  transition: border-color 0.3s ease;
  width: 100%;
}

.footer-input-group:focus-within {
  border-color: var(--copper-accent);
}

.footer-form-control {
  background: transparent;
  border: none;
  padding: 16px 15px;
  font-size: 15px;
  color: var(--charcoal);
  height: 56px;
  flex: 1;
  min-width: 120px;
  width: 100%;
}

.footer-form-control::placeholder {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-form-control:focus {
  box-shadow: none;
  background: transparent;
  outline: none;
}

.footer-newsletter-btn {
  background: linear-gradient(180deg, #d9c3ac 0%, #b9935d 100%);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  height: 56px;
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100px;
  cursor: pointer;
}

.footer-newsletter-btn:hover {
  opacity: 0.95;
  color: white;
}

.footer-email-policy {
  font-size: 14px;
  color: var(--charcoal);
  margin-top: 12px;
  line-height: 1.5;
  word-break: break-word;
}

.footer-email-policy a {
  color: var(--copper-accent);
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-email-policy a:hover {
  text-decoration: none;
  color: #c86b1d;
}

/* Copyright Section */
.footer-copyright-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}

.footer-links-bottom {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

.footer-links-bottom li {
  display: inline-block;
}

.footer-bottom-link {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-bottom-link:hover {
  opacity: 0.85;
  color: var(--white);
}

.footer-divider {
  color: rgba(251, 249, 246, 0.5);
  font-size: 15px;
}

/* Footer Sections */
.footer-section {
  margin-bottom: 0;
}

/* ========================================== */
/* FIX FOR 992px - 1120px SCREEN WIDTH */
/* ========================================== */
@media (max-width: 1120px) and (min-width: 992px) {
  .footer-main {
    padding: 60px 0 35px 0;
  }

  .footer-section {
    padding-right: 20px;
  }

  .footer-section:last-child {
    padding-right: 0;
  }

  /* Newsletter section specific fixes */
  .footer-newsletter-form {
    width: 100%;
  }

  .footer-input-group {
    /*flex-wrap: nowrap;*/
    width: 100%;
    max-width: 100%;
  }

  .footer-form-control {
    padding: 14px 12px;
    font-size: 14px;
    min-width: 100px;
    flex: 1;
  }

  .footer-form-control::placeholder {
    font-size: 13px;
  }

  .footer-newsletter-btn {
    font-size: 14px;
    padding: 14px 15px;
    min-width: 90px;
    flex-shrink: 0;
  }

  .footer-email-policy {
    font-size: 13px;
    line-height: 1.4;
  }

  /* Contact section fixes */
  .footer-contact-text {
    font-size: 15px;
    line-height: 1.4;
  }

  /* App buttons adjustment */
  .footer-app-btn {
    width: 140px;
    height: 44px;
  }

  .footer-app-btn img {
    width: 120px;
  }

  /* Footer titles */
  .footer-section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* Company info */
  .footer-company-info {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Copyright section */
  .footer-copyright-text {
    font-size: 14px;
  }

  .footer-links-bottom {
    gap: 12px;
  }

  .footer-bottom-link {
    font-size: 14px;
  }

  .footer-divider {
    font-size: 14px;
  }
}

/* Large Desktops (≥1200px) */
@media (min-width: 1200px) {
  .footer-main {
    padding: 80px 0 50px 0;
  }

  .footer-section {
    padding-right: 30px;
  }

  .footer-section:last-child {
    padding-right: 0;
  }
}

/* Desktops (1121px - 1199px) */
@media (max-width: 1199px) and (min-width: 1121px) {
  .footer-main {
    padding: 60px 0 40px 0;
  }

  .footer-logo {
    max-width: 240px;
  }

  .footer-company-info {
    max-width: 280px;
    font-size: 16px;
  }

  .footer-app-btn {
    width: 140px;
    height: 44px;
  }

  .footer-app-btn img {
    width: 120px;
  }

  .footer-contact-text {
    font-size: 16px;
  }

  .footer-section-title {
    font-size: 18px;
  }
}

/* ========================================== */
/* TABLET FIXES (768px - 991px) */
/* ========================================== */
@media (max-width: 991px) and (min-width: 768px) {
  .footer-main {
    padding: 50px 0 30px 0;
  }

  .footer-section {
    margin-bottom: 40px;
    text-align: left;
  }

  .footer-logo {
    max-width: 220px;
    margin: 0 0 25px 0;
    display: block;
  }

  .footer-company-info {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .footer-app-buttons {
    justify-content: flex-start;
    max-width: 100%;
    margin: 0;
  }

  .footer-section-title {
    text-align: left;
    font-size: 18px;
  }

  .footer-section-title::after {
    left: 0;
    transform: none;
  }

  .footer-links-list {
    text-align: left;
  }

  .footer-contact-info {
    text-align: left;
  }

  .footer-contact-info li {
    justify-content: flex-start;
    text-align: left;
    display: flex;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-input-group {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-form-control {
    font-size: 14px;
    padding: 14px 12px;
  }

  .footer-form-control::placeholder {
    font-size: 13px;
  }

  .footer-newsletter-btn {
    font-size: 14px;
    padding: 14px 18px;
  }

  .footer-email-policy {
    font-size: 13px;
  }

  .footer-copyright-text {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .footer-links-bottom {
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom-link {
    font-size: 14px;
  }

  .footer-divider {
    font-size: 14px;
  }
}

/* ========================================== */
/* MOBILE LANDSCAPE FIXES (576px - 767px) */
/* ========================================== */
@media (max-width: 767px) and (min-width: 576px) {
  .footer-main {
    padding: 40px 0 30px 0;
  }

  .footer-section {
    margin-bottom: 35px;
    text-align: left;
  }

  .footer-logo {
    max-width: 200px;
    margin: 0 0 20px 0;
  }

  .footer-company-info {
    max-width: 100%;
    text-align: left;
    font-size: 15px;
    margin-bottom: 30px;
  }

  .footer-app-buttons {
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 100%;
    gap: 15px;
  }

  .footer-app-btn {
    width: 160px;
    height: 48px;
  }

  .footer-app-btn img {
    width: 140px;
  }

  .footer-section-title {
    text-align: left;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-section-title::after {
    left: 0;
    transform: none;
  }

  .footer-links-list {
    text-align: left;
  }

  .footer-links-list li {
    margin-bottom: 12px;
  }

  .footer-contact-info {
    text-align: left;
  }

  .footer-contact-info li {
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .footer-contact-icon {
    margin-right: 15px;
    margin-bottom: 0;
  }

  .footer-contact-text {
    font-size: 15px;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-newsletter-form {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-input-group {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-form-control {
    font-size: 14px;
    padding: 14px 12px;
  }

  .footer-newsletter-btn {
    font-size: 14px;
    padding: 14px 18px;
  }

  .footer-email-policy {
    font-size: 13px;
  }

  .footer-copyright-text {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .footer-links-bottom {
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom-link {
    font-size: 14px;
  }

  .footer-divider {
    font-size: 14px;
  }
}

/* ========================================== */
/* MOBILE PORTRAIT FIXES (≤575px) */
/* ========================================== */
@media (max-width: 575px) {
  .footer-main {
    padding: 35px 20px 25px 20px;
  }

  .footer-section {
    margin-bottom: 35px;
    text-align: center;
    padding: 0;
    width: 100%;
  }

  .footer-logo {
    max-width: 180px;
    margin: 0 auto 20px;
  }

  .footer-company-info {
    max-width: 100%;
    text-align: center;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .footer-app-buttons {
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 12px;
  }

  .footer-app-btn {
    width: 155px;
    height: 46px;
  }

  .footer-app-btn img {
    width: 135px;
  }

  .footer-section-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 8px;
  }

  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links-list {
    text-align: center;
  }

  .footer-links-list li {
    margin-bottom: 10px;
  }

  .footer-link {
    font-size: 15px;
  }

  .footer-contact-info {
    text-align: center;
  }

  .footer-contact-info li {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
  }

  .footer-contact-icon {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .footer-contact-text {
    font-size: 15px;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
    gap: 10px;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
  }

  .footer-newsletter-form {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
  }

  .footer-input-group {
    flex-direction: row;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 15px;
  }

  .footer-form-control {
    background: transparent;
    border: none;
    border-radius: 10px 0 0 10px;
    margin-bottom: 0;
    width: 100%;
    padding: 14px 12px;
    font-size: 14px;
  }

  .footer-form-control::placeholder {
    font-size: 13px;
  }

  .footer-newsletter-btn {
    width: auto;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    font-size: 14px;
  }

  .footer-email-policy {
    font-size: 13px;
    text-align: center;
    padding: 0 10px;
  }

  .footer-copyright {
    padding: 20px 20px;
  }

  .footer-copyright-text {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .footer-links-bottom {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-links-bottom li {
    display: block;
  }

  .footer-bottom-link {
    font-size: 14px;
  }

  .footer-divider {
    display: none;
  }
}

/* Extra Small Mobile (≤375px) */
@media (max-width: 375px) {
  .footer-main {
    padding: 30px 15px 20px 15px;
  }

  .footer-logo {
    max-width: 160px;
  }

  .footer-company-info {
    font-size: 14px;
    padding: 0 5px;
  }

  .footer-app-btn {
    width: 145px;
    height: 44px;
  }

  .footer-app-btn img {
    width: 125px;
  }

  .footer-section-title {
    font-size: 17px;
  }

  .footer-link,
  .footer-contact-text {
    font-size: 14px;
  }

  .footer-input-group {
    max-width: 100%;
  }

  .footer-form-control {
    font-size: 13px;
    padding: 12px 10px;
  }

  .footer-form-control::placeholder {
    font-size: 12px;
  }

  .footer-newsletter-btn {
    padding: 12px 15px;
    font-size: 13px;
  }

  .footer-copyright-text,
  .footer-bottom-link {
    font-size: 13px;
  }

  .footer-copyright {
    padding: 18px 15px;
  }
}

/* ==========================================================================
     || Footer Section Styles Ends ||
     ========================================================================== */

/* Ensure Inter font is used */
body,
.custom-nav-link,
.custom-login-btn,
.custom-dropdown-item {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
