/* -----------------------------------------
   landing.css - Dedicated styles for iPlan Landing Page
----------------------------------------- */

:root {
  --bg-main: #1D1B26;
  /* Darker dark from image */
  --bg-darker: #15131C;
  --bg-card: #2B2936;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent: #5A7F8C;
  /* Teal/Slate secondary color */
  --accent-hover: #4A6E7B;
  --warning: #F6CF55;
  --font-family: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

p {
  line-height: 1.6;
}

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

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* --- Navbar --- */
.landing-nav-top {
  padding: 15px 0;
  background: var(--bg-main);
}

.nav-logo img {
  height: 55px;
  /* Sized to match design */
  margin: 0;
}

.nav-search-bar {
  position: relative;
  max-width: 650px;
  /* Widened as per design */
  width: 100%;
}

@media (min-width: 992px) {
  .nav-search-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.nav-search-bar input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 20px 14px 50px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s;
}

.nav-search-bar i.bi-search {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0.7;
  font-size: 18px;
  z-index: 5;
}

.nav-auth-links .sign-in {
  color: #7ECBD3;
  /* Light teal as in sign in link */
  font-weight: 500;
  font-size: 16px;
  margin-right: 15px;
}

.nav-auth-links .sign-up {
  background: #5A7F8C;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

.nav-auth-links .sign-up {
  background: #5A7F8C;
  color: #fff;
  border: 1px solid #72cbeb;
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(90, 127, 140, 0.2);
}

.nav-auth-links .sign-up:hover {
  background: #4A6E7B;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(90, 127, 140, 0.3);
  color: #fff;
}

.landing-nav-bottom {
  padding: 5px 0;
  background: var(--bg-main);
  /* Same as top header */
  border-top: none;
}

.landing-nav-bottom.d-lg-block {
  display: block;
  /* Ensure it shows on desktop */
}

/* Offset for fixed header across all pages */
body {
  padding-top: 125px;
}

@media (max-width: 991px) {
  body {
    padding-top: 85px;
    /* Different height for mobile */
  }
}

@media (max-width: 991px) {
  .landing-nav-bottom {
    display: none !important;
  }
}

/* Header hide on scroll */
.landing-header {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.landing-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-categories {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-categories li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
  padding: 10px 0;
}

.nav-categories li.active a,
.nav-categories li a:hover {
  color: #fff;
}

/* --- Submenu (Desktop) --- */
.has-submenu {
  position: relative;
}

/* White arrow for active/hover state */
.has-submenu.active::after,
.has-submenu:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.submenu-mega {
  position: absolute;
  top: 100%;
  left: 0;
  /* Align with parent more naturally */
  min-width: 220px;
  /* Reduced base width */
  width: max-content;
  /* Adapts to content columns */
  background: rgba(30, 28, 38, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.has-submenu:hover .submenu-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.submenu-column a {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 400;
  transition: opacity 0.2s;
}

.submenu-column a:hover {
  opacity: 0.7;
}

/* Mobile submenu — collapsible */
@media (max-width: 991px) {
  .submenu {
    display: none;
    /* Hide by default on mobile */
    padding: 8px 0 8px 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-left: 15px;
    list-style: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu-arrow {
    display: none !important;
    /* Removed in responsive view */
  }

  .submenu li {
    width: 100%;
  }

  .submenu li a {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.2s;
  }

  .submenu li a:hover,
  .submenu li a:active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding-left: 20px;
  }
}

/* ---/* --- Responsive Header --- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: transparent;
    margin-top: 5px;
    padding: 20px 0;
    border: none;
  }

  .nav-search-bar {
    max-width: 100%;
    margin: 15px 0;
  }

  .nav-search-bar input {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle, effectively removed black */
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-auth-links {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding-top: 0;
    border-top: none;
  }

  .nav-auth-links .sign-in {
    padding: 10px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
  }

  .nav-auth-links .sign-up {
    text-align: center;
    background: #5A7F8C;
    /* Keep the teal button, but clarify with user if needed */
  }

  .nav-categories.d-lg-none {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav-categories.d-lg-none li {
    width: 100%;
  }

  .nav-categories.d-lg-none li a {
    justify-content: flex-start;
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
  }

  .nav-categories.d-lg-none li a i {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .nav-categories.d-lg-none li a:hover,
  .nav-categories.d-lg-none li a:active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateX(8px);
    backdrop-filter: blur(5px);
  }

  .nav-categories.d-lg-none li a:hover i {
    transform: scale(1.2);
    color: var(--accent);
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../Images/banner1.jpg') center/cover no-repeat;
  padding: 140px 20px 100px 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 60px;
  /* Large cinematic text */
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
    /* Responsive size */
  }
}

.hero-content p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 45px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  opacity: 0.95;
}

/* New Compound Hero Button */
.btn-hero-compound {
  display: inline-flex;
  align-items: center;
  background: #5A7F8C;
  /* Slate/Teal Gray */
  color: #ffffff;
  padding: 6px 6px 6px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid #72cbeb;
}

.btn-hero-compound:hover {
  background: #4A6E7B;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-arrow-circle {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-hero-compound:hover .btn-arrow-circle {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

/* --- Common Sections --- */
.landing-section {
  padding: 50px 0;
}

/* --- Trending Swiper Custom Arrows --- */
.trending-swiper .swiper-button-next,
.trending-swiper .swiper-button-prev {
  background: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trending-swiper .swiper-button-next::after,
.trending-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.trending-swiper .swiper-button-next:hover,
.trending-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.trending-swiper .swiper-button-next {
  right: -10px;
}

.trending-swiper .swiper-button-prev {
  left: -10px;
}

/* Desktop adjustment to keep arrows inside container if needed */
@media (min-width: 1400px) {
  .trending-swiper .swiper-button-next {
    right: -50px;
  }

  .trending-swiper .swiper-button-prev {
    left: -50px;
  }
}

/* --- Venue Cards --- */
.venue-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 10px;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.card-body {
  padding: 16px 8px 6px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.venue-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.venue-type {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  font-weight: 400;
}

.venue-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  font-weight: 500;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-badge i {
  color: var(--warning);
  font-size: 12px;
}

/* --- Sponsored Banner --- */
.sponsored-banner {
  margin: 20px 0 60px 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  background: url('../Images/promp.jpg') center/cover no-repeat;
}

.sponsored-overlay-spa {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 10, 5, 0.8) 0%, rgba(20, 10, 5, 0.2) 100%);
  z-index: 1;
}

.sponsored-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 800px;
}

.sponsored-ads-badge {
  background: rgba(139, 90, 51, 0.4);
  color: #F8C486;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  border: 1px solid rgba(248, 196, 134, 0.2);
}

.spa-title {
  font-family: 'Great Vibes', cursive, 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 400;
  color: #FFF6E5;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.spa-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #EBD7B2;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.btn-spa-view {
  background: rgba(165, 101, 49, 0.8);
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-spa-view:hover {
  background: rgba(139, 90, 51, 0.9);
  color: #ffffff;
  border-color: #ffffff;
}

/* --- Unified Feature Card (Split Feature 1) --- */
.unified-feature-card {
  display: flex;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin-bottom: 20px;
}

.unified-img-box {
  flex: 1;
  /* 50% width */
  position: relative;
  min-height: 500px;
  /* Increased height */
}

.unified-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unified-content {
  flex: 1;
  /* Exactly 50% partition */
  display: flex;
  flex-direction: column;
}

.unified-row {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  flex: 1;
  /* Distributes vertical height evenly */
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.unified-row:last-child {
  border-bottom: none;
}

.u-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  /* border: 1px solid #7ECBD3; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ECBD3;
  font-size: 24px;
  flex-shrink: 0;
  background: transparent;
}

.u-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.u-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.btn-primary-teal {
  background: #7ECBD3;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-teal i {
  font-size: 18px;
  font-weight: bold;
}

.btn-primary-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(126, 203, 211, 0.3);
  color: #ffffff;
}

/* --- Split Features --- */
.split-feature-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}

.split-feature-row.reverse {
  flex-direction: row-reverse;
}

.split-img-box {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.split-img-box img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.split-content {
  flex: 1;
}

.split-badge {
  background: #2D3A42;
  /* Darker badge bg */
  color: #7ECBD3;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 25px;
}

.split-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.split-content>p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2D3A42;
  /* match dark teal badge */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #76C1C5;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.feature-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.btn-outline-custom {
  margin-top: 40px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 28px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background: var(--accent);
  color: #1a1a1a;
}

/* --- Teal CTA Banner --- */
.cta-banner {
  background-color: #6BBCC4;
  /* Base teal color */
  background-image: url('../Images/cta-banner-frame.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  /* margin: 60px 0; */
}

.cta-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.btn-cta-custom {
  background: #ffffff;
  color: #76C1C5;
  padding: 18px 25px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  font-family: var(--font-family);
  position: relative;
  z-index: 2;
}

.btn-cta-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.btn-cta-custom i {
  font-size: 22px;
  font-weight: bold;
}

.btn-cta-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #54989C;
}

/* --- App Download --- */
.app-download-section {
  padding: 80px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}

.app-content {
  flex: 1;
}

.app-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

.app-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.btn-store {
  display: inline-block;
  transition: transform 0.3s;
}

.btn-store img {
  height: 75px;
  /* Noticeably larger store badges */
  width: auto;
  display: block;
}

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

.app-mockups {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Aligns them at the bottom */
  gap: 30px;
  /* Space between them, no overlap */
  min-height: auto;
}

.app-mockups img {
  position: static;
  transition: transform 0.3s;
  height: auto;
}

.phone-left {
  width: 250px;
  transform: none;
}

.phone-right {
  width: 290px;
  /* Slightly larger */
  transform: none;
}

.app-mockups img:hover {
  transform: translateY(-10px);
}

/* --- Footer --- */
.landing-footer {
  background: #24222d;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer-content-wrap {
  padding-bottom: 30px;
}

.footer-frame-container {
  width: 100%;
  line-height: 0;
  margin-top: 10px;
  position: relative;
}

.footer-frame-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-col {
  margin-bottom: 40px;
}

.footer-logo {
  height: 65px;
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 16px;
}

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

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 36px;
  height: 6px;
  background: url('../Images/line.svg') repeat-x;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "\F285";
  /* bootstrap icon chevron-right */
  font-family: "bootstrap-icons";
  color: #ffffff;
  font-size: 12px;
  transition: transform 0.3s;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}

.contact-info i {
  color: #ffffff;
  font-size: 18px;
}

.footer-bottom-wrap {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.footer-bottom-wrap p {
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .split-feature-row,
  .split-feature-row.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .unified-feature-card {
    flex-direction: column;
  }

  .unified-img-box {
    min-height: 250px;
    height: 250px;
  }

  .unified-row {
    padding: 20px 20px;
    flex: none;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .spa-title {
    font-size: 44px;
  }

  .spa-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .app-download-section {
    flex-direction: column;
    text-align: center;
  }

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

  .nav-categories {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .app-mockups {
    gap: 15px;
  }

  .phone-left {
    width: 42%;
    max-width: 250px;
  }

  .phone-right {
    width: 52%;
    max-width: 290px;
  }

  .btn-store img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .app-mockups {
    gap: 10px;
  }

  .btn-store img {
    height: 48px;
  }
}