/* 
  Vibes Healthcare - Elegant Banner Theme
  Aesthetic: Light pristine top, dark brown bottom, elegant typography
*/

:root {
  /* Colors */
  --bg-color: #ffffff;
  --bg-dark: #4a382b; /* Dark brown from image */
  --text-main: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #666666;

  --arch-bg-center: #f5efe6;
  --arch-bg-left: #e8d5c4;

  /* Brand */
  --primary: #4a382b;
  --secondary: #e75524;

  /* Typography */
  --font-display: "Quicksand", sans-serif;
  --font-body: "Nunito", sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.logo {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

.text-gradient {
  color: var(--primary);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

@keyframes auto-shine {
  0% { left: -100%; }
  15%, 100% { left: 150%; }
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: auto-shine 6s infinite ease-in-out;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-outline {
  border: 1px solid var(--text-main);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  background: var(--text-main);
  color: white;
}

.btn-primary-dark {
  background: #35336e;
  color: white;
}

.btn-primary-dark:hover {
  background: #252352;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Elegant Navigation */
.elegant-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #fdf1ea;
  box-shadow: 0 4px 15px rgba(53, 51, 110, 0.05);
}

.elegant-nav .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.elegant-nav .logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: #df5830;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.elegant-nav .desktop-nav {
  display: flex;
  gap: 2.5rem;
  margin-left: 2rem;
}

.elegant-nav .desktop-nav a {
  color: #35336e;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.elegant-nav .desktop-nav a:hover {
  color: #df5830;
}

.elegant-nav .btn-outline {
  border: 2px solid #df5830;
  color: #df5830;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 24px;
}

.elegant-nav .btn-outline:hover {
  background: #df5830;
  color: #ffffff;
}

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

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 102;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #df5830;
  margin: 5px 0;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fdf1ea;
  padding: 100px 20px 40px;
  z-index: 101;
  box-shadow: 0 10px 20px rgba(53, 51, 110, 0.1);
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.25rem;
  color: #35336e;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .elegant-nav .desktop-nav,
  .elegant-nav .nav-actions {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Elegant Hero Banner */
.elegant-hero {
  position: relative;
  width: 100%;
  padding-top: 130px; /* space for header */
}

/* Top Section (White) */
.hero-top-section {
  background-color: var(--bg-color);
  padding-bottom: 0;
}

.elegant-title {
  text-align: center;
  font-size: 5rem;
  letter-spacing: -1px;
  margin-bottom: 4rem;
  color: var(--text-main);
}

.title-line-1 {
  text-align: left;
  margin-left: 5%;
}

.title-line-2 {
  text-align: right;
  margin-right: 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.line-deco {
  display: inline-block;
  width: 250px;
  height: 2px;
  background-color: var(--text-main);
  margin-bottom: 15px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: flex-end;
  position: relative;
}

/* Left Column */
.hero-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
}

.small-arch {
  width: 200px;
  height: 250px;
  background-color: var(--arch-bg-left);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}

.small-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
}

.view-more-link {
  font-family: var(--font-display);
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.2rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Center Column */
.hero-col-center {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
  /* Push it down to overlap the brown section */
  margin-bottom: -160px;
}

.center-arch-bg {
  position: absolute;
  bottom: 100px; /* stops at the brown line */
  width: 380px;
  height: 450px;
  background-color: var(--arch-bg-center);
  border-top-left-radius: 190px;
  border-top-right-radius: 190px;
  z-index: -1;
}

.center-model-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* Right Column */
.hero-col-right {
  padding-bottom: 80px;
}

.hero-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Bottom Section (Dark Brown) */
.hero-bottom-bar {
  background-color: #fdf1ea;
  color: #35336e;
  padding: 0;
  height: 160px;
  display: flex;
  align-items: center;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.bottom-stats-grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stats-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-end;
  text-align: right;
}

.stat-block h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  display: inline-block;
  font-weight: 400;
  line-height: 1;
}

.stat-block span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
}

.stat-block p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.avatar-group {
  display: flex;
  margin-bottom: 1rem;
}

.avatar-group img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -15px;
  object-fit: cover;
}

.avatar-group img:first-child {
  margin-left: 0;
}

/* Update rest of the page to light theme */
.glass-panel {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Split Layouts */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-layout.reverse .benefits-visual {
  order: 2;
}
.split-layout.reverse .benefits-content {
  order: 1;
}

.img-panel {
  aspect-ratio: 4/3;
  padding: 10px;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--arch-bg-center);
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.check-icon {
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  display: flex;
  flex-direction: column;
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--arch-bg-center);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.card-link:hover {
  gap: 10px;
}

/* Benefits Section */
.stats-panel {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stat-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.stat-icon {
  font-size: 2rem;
  background: var(--arch-bg-center);
  padding: 10px;
  border-radius: var(--radius-sm);
}
.stat-text h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.stat-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* How It Works Timeline */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}
.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 3rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: 17px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(74, 56, 43, 0.4);
}
.step-num {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

/* Video Testimonials Section */
.video-testimonials-section {
  position: relative;
  padding: 80px 0 0 0;
  background-color: white;
  overflow: hidden;
}

.relative-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.testi-title {
  font-size: 2.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: #df5830;
}

.testi-nav {
  position: absolute;
  right: 0;
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #df5830;
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background-color: #c44a26;
}

.carousel-container {
  width: 100%;
  padding: 20px 0 60px 0;
}

.carousel-track {
  position: relative;
  height: 520px; /* enough to hold the scaled center card */
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #000;
  cursor: pointer;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.5s;
}

.card-center img {
  opacity: 1;
}

/* Specific Positions */
.card-center {
  width: 320px;
  height: 480px;
  transform: translateX(0) scale(1);
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.card-mid-left {
  width: 240px;
  height: 360px;
  transform: translateX(-280px);
  z-index: 4;
  opacity: 0.9;
}

.card-mid-right {
  width: 240px;
  height: 360px;
  transform: translateX(280px);
  z-index: 4;
  opacity: 0.9;
}

.card-far-left {
  width: 180px;
  height: 270px;
  transform: translateX(-480px);
  z-index: 3;
  opacity: 0.7;
}

.card-far-right {
  width: 180px;
  height: 270px;
  transform: translateX(480px);
  z-index: 3;
  opacity: 0.7;
}

.card-hidden {
  width: 180px;
  height: 270px;
  transform: translateX(0) scale(0);
  z-index: 1;
  opacity: 0;
}

.card-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 8px 10px;
  text-align: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
}

.card-center .card-caption {
  bottom: 30px;
  font-size: 1rem;
  padding: 10px 15px;
}

/* Caption Colors */
.bg-teal {
  background-color: rgba(62, 181, 165, 0.9);
}
.bg-light-purple {
  background-color: rgba(230, 230, 250, 0.9);
  color: #35336e;
}
.bg-teal-dark {
  background-color: rgba(43, 145, 131, 0.9);
}
.bg-dark-purple {
  background-color: rgba(85, 60, 139, 0.9);
}

.video-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom Peach Bar */
.testi-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fdf1ea;
  z-index: 1;
}

@media (max-width: 1024px) {
  .card-far {
    display: none;
  }
}

@media (max-width: 768px) {
  .card-mid {
    display: none;
  }
  .video-testimonials-section .relative-container {
    display: flex;
    flex-direction: column;
  }
  .testimonials-header {
    display: contents;
  }
  .testi-title {
    order: 1;
    text-align: center;
    margin-bottom: 30px;
  }
  .carousel-container {
    order: 2;
  }
  .testi-nav {
    position: static;
    order: 3;
    justify-content: center;
  }
}

/* Lead Generation Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  overflow: hidden;
}
.contact-info {
  padding: 4rem;
  background: var(--arch-bg-center);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-item .icon {
  background: white;
  padding: 10px;
  border-radius: 50%;
}
.contact-form-container {
  padding: 4rem;
  background: white;
}
.modern-form .form-group {
  margin-bottom: 1.5rem;
}
.modern-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.modern-form input,
.modern-form select {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}
.modern-form input:focus,
.modern-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 56, 43, 0.1);
}
.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  padding: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.accordion-header.active {
  color: var(--primary);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2rem;
}
.accordion-content p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #352e75;
  color: #ffffff;
  padding: 5rem 0 2rem;
  margin-top: 0 !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.footer-brand .logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #df5830;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #ffffff;
}

/* Contact Us column — centre phone numbers */
.footer-phones a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
  font-weight: 500;
  white-space: nowrap;
}
.footer-phones a span {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-phones a:hover span {
  color: rgba(255, 255, 255, 0.75);
}

/* Get Started column — social block */
.footer-social-label {
  margin-top: 1.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.footer-socials a:hover {
  background: #df5830;
  color: #ffffff;
  transform: translateY(-3px);
}
.footer-socials svg {
  display: block;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}
.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}
.legal-links a:hover {
  color: #ffffff;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .elegant-title {
    font-size: 3.5rem;
  }
  .line-deco {
    width: 150px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .hero-col-left {
    align-items: center;
    padding-bottom: 0;
  }
  .hero-col-right {
    padding-bottom: 40px;
  }
  .title-line-1,
  .title-line-2 {
    text-align: center;
    margin: 0;
    justify-content: center;
  }
  .center-model-img {
    max-width: 400px;
  }
  .hero-col-center {
    margin-bottom: -50px;
  }
  .center-arch-bg {
    bottom: 50px;
    width: 300px;
    height: 350px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
  }
  .stats-left,
  .stats-right {
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .bottom-stats-grid {
    flex-direction: column;
    gap: 4rem;
  }
  .hero-bottom-bar {
    height: auto;
    padding: 60px 0;
  }
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .elegant-title {
    font-size: 2.8rem;
  }
  .line-deco {
    display: none;
  }
  .hero-col-left {
    display: none;
  }
  .center-model-img {
    max-width: 300px;
  }
  .center-arch-bg {
    width: 250px;
    height: 300px;
    border-top-left-radius: 125px;
    border-top-right-radius: 125px;
    bottom: 30px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-layout.reverse .benefits-visual {
    order: 1;
  }
  .split-layout.reverse .benefits-content {
    order: 2;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .hero-section {
    padding: 140px 0 60px;
  }
}

@media (max-width: 480px) {
  .elegant-title {
    font-size: 2.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stat-block h3,
  .stat-block span {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-padding {
    padding: 40px 0;
  }
  .hero-section {
    padding: 120px 0 40px;
  }
}

/* Scattered Services Section */
.scattered-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--bg-color);
}

.scattered-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 162, 200, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.scattered-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.scattered-col {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.left-col {
  align-items: flex-end;
}
.right-col {
  align-items: flex-start;
}

.left-col .purple-card {
  align-self: flex-end;
}
.left-col .dark-card {
  align-self: flex-start;
  margin-top: 2rem;
}
.right-col .s-image-card {
  align-self: flex-start;
}
.right-col .dark-card {
  align-self: flex-end;
  margin-top: 2rem;
}

.s-card {
  width: 260px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.s-card:hover {
  transform: translateY(-5px);
}

.s-image-card {
  width: 240px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.s-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.purple-card {
  background-color: #c4a4b5; /* Match image dusty purple */
  color: white;
}
.purple-card .s-icon {
  background-color: rgba(255, 255, 255, 0.2);
}
.purple-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.purple-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.dark-card {
  background-color: #222;
  color: white;
}
.dark-card .s-icon {
  background-color: #333;
  color: white;
}
.dark-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.dark-card p {
  color: #aaa;
  font-size: 0.9rem;
}

.center-col {
  text-align: center;
  position: relative;
}

.accent-sparks {
  position: absolute;
  top: -40px;
  left: 20px;
}

.scattered-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 400;
}

.title-underline {
  width: 150px;
  height: 2px;
  background-color: #c4a4b5;
  margin: 0 auto 20px;
}

.scattered-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.6;
}

/* Scattered Responsive */
@media (max-width: 1024px) {
  .scattered-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .scattered-col {
    align-items: center !important;
  }
  .left-col .purple-card,
  .left-col .dark-card,
  .right-col .s-image-card,
  .right-col .dark-card {
    align-self: center !important;
    margin-top: 0;
  }
  .accent-sparks {
    left: 50%;
    transform: translateX(-50%);
  }
  .scattered-title {
    font-size: 2.5rem;
  }
}

/* Legacy Stats Section */
.legacy-stats-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}
.legacy-title-main {
  text-align: center;
  font-size: 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.4;
}
.text-orange {
  color: #df5830;
}
.text-purple {
  color: #35336e;
}
.text-teal {
  color: #48c4ae;
}
.text-blue {
  color: #1fb3ea;
}

.legacy-grid {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.legacy-box {
  flex: 1;
  background-color: #fdf1ea;
  border-radius: 8px;
  padding: 30px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legacy-box h3 {
  font-size: 2.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.legacy-box p {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.legacy-box small {
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .legacy-grid {
    flex-wrap: wrap;
  }
  .legacy-box {
    flex: 1 1 calc(33.333% - 15px);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .legacy-title-main {
    font-size: 1.8rem;
  }
  .legacy-box {
    flex: 1 1 calc(50% - 15px);
  }
}
@media (max-width: 480px) {
  .legacy-box {
    flex: 1 1 100%;
  }
}

/* About Us Section */
.about-us-section {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/bgofaboutus.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fcfcfc;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -100px; /* Pulls the image down to touch the bottom boundary of the section */
}

.about-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  display: flex;
  justify-content: center;
}

.about-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(231, 85, 36, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.about-team-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-right {
  padding-right: 20px;
}

.about-title {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 700;
  color: #df5830;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-text-content {
  color: #3b3a50;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-text-content p {
  margin-bottom: 1.5rem;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  font-weight: 700;
  color: #2b2a60;
  font-size: 1.1rem;
}

.btn-about {
  background-color: #35336e;
  color: white;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(53, 51, 110, 0.3);
  border: none;
}

.btn-about:hover {
  background-color: #252352;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 51, 110, 0.4);
  color: white;
}

/* About Us Responsive */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .about-left {
    margin-bottom: 0;
  }
  .about-right {
    padding-right: 0;
  }
  .about-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  .about-glow-circle {
    width: 350px;
    height: 350px;
  }
}

/* Bouquet Section */
.bouquet-section {
  position: relative;
  padding-bottom: 100px;
  background-color: var(--bg-color);
}

.bouquet-top-bg {
  background-color: #fdf1ea;
  padding: 80px 0 160px 0;
}

.bouquet-title {
  font-size: 2.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
}

.d-block {
  display: block;
}

.bouquet-container {
  margin-top: -120px;
  position: relative;
  z-index: 10;
}

.bouquet-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 20px; /* Space for hover shadows */
}

.bouquet-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.bouquet-item {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 20px 30px;
  box-shadow: 0 15px 40px rgba(53, 51, 110, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(53, 51, 110, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.bouquet-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(53, 51, 110, 0.15);
  border-color: rgba(223, 88, 48, 0.3);
}

.bouquet-img-wrapper {
  width: 100%;
  height: 260px;
  margin: 0 auto 25px auto;
  border-radius: 120px 120px 16px 16px;
  overflow: hidden;
  position: relative;
}

.bouquet-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.bouquet-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bouquet-item:hover .bouquet-img-wrapper img {
  transform: scale(1.08);
}

.bouquet-item h4 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: #df5830;
  margin-bottom: 15px;
  font-weight: 700;
}

.bouquet-item p {
  font-size: 0.95rem;
  color: #4a4a68;
  line-height: 1.6;
  margin: 0;
}

.btn-enquire {
  background-color: #35336e;
  color: white;
  padding: 14px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(53, 51, 110, 0.25);
  border: none;
  margin-top: 40px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background-color: #df5830;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(223, 88, 48, 0.3);
  color: white;
}

@media (max-width: 1024px) {
  .bouquet-item {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .bouquet-title {
    font-size: 1.7rem;
  }
  .bouquet-item {
    flex: 0 0 100%;
  }
  .bouquet-top-bg {
    padding: 60px 0 120px 0;
  }
  .bouquet-container {
    margin-top: -80px;
  }
  .bouquet-img-wrapper {
    height: 280px;
  }
}

/* Mega Tabbed Services Section */
.mega-services {
  background: linear-gradient(135deg, #fdf1ea 0%, #fff0e5 100%);
  padding: 100px 0;
}

.mega-services .container {
  max-width: 1350px;
}

.mega-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: stretch;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 25px 80px rgba(53, 51, 110, 0.12);
  overflow: hidden;
  border: none;
}

/* Sidebar */
.mega-sidebar {
  display: flex;
  flex-direction: column;
  padding: 50px 30px 80px;
  background: linear-gradient(to bottom, #fef8f5, #fdf1ea);
  border-right: 1px solid rgba(223, 88, 48, 0.1);
  gap: 15px;
}

.mega-tab {
  background-color: transparent;
  border: none;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: left;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: #35336e;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  position: relative;
}

.mega-tab .tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(53, 51, 110, 0.05);
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #df5830;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mega-tab .tab-icon svg {
  width: 22px;
  height: 22px;
}

.mega-tab:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: translateX(5px);
}

.mega-tab.active {
  background-color: #ffffff;
  color: #df5830;
  box-shadow: 0 10px 25px rgba(223, 88, 48, 0.15);
  transform: translateX(10px);
}

.mega-tab.active .tab-icon {
  background: #df5830;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(223, 88, 48, 0.3);
}

/* Main Content Area */
.mega-content-area {
  position: relative;
  padding: 60px 60px 80px;
  background: #ffffff;
}

.mega-pane {
  display: none;
  animation: fadeInTab 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.mega-pane.active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mega-col-title {
  color: #35336e;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: var(--font-display);
  position: relative;
  padding-bottom: 12px;
}

.mega-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: #df5830;
  border-radius: 2px;
}

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

.mega-list li {
  color: #555;
  font-size: 1rem;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
}

.mega-list li::before {
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  color: #df5830;
  position: absolute;
  left: -15px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.mega-list li:hover {
  color: #df5830;
  transform: translateX(15px);
  font-weight: 500;
}

.mega-list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.mt-4 {
  margin-top: 2.5rem !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mega-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mega-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .mega-tab {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Before & After Section */
.ba-section {
  background-color: #fff;
  position: relative;
  padding-bottom: 60px;
}

.ba-main-title {
  color: #df5830;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 15px;
}

.ba-subtitle {
  color: #35336e;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ba-highlight-title {
  color: #df5830;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 40px;
}

.ba-container {
  position: relative;
  max-width: 1250px;
}

.ba-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #35336e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(53, 51, 110, 0.4);
  transition: background 0.3s ease;
}

.ba-nav-btn:hover {
  background: #252352;
}

.ba-prev {
  left: -20px;
}

.ba-next {
  right: -20px;
}

.ba-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.ba-grid::-webkit-scrollbar {
  display: none;
}

.ba-card {
  flex: 0 0 calc(33.333% - 14px); /* Show 3 cards per view */
  scroll-snap-align: start;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.ba-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.ba-img-wrapper {
  position: relative;
  border-radius: 12px;
  border: 1px solid #35336e;
  overflow: hidden;
  margin-bottom: 15px;
  height: 350px;
}

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

.ba-img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: inset(0 50% 0 0);
}

.ba-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.ba-circle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.ba-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: rgba(100, 95, 140, 0.85);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 6;
}

.ba-text-wrapper p {
  font-size: 0.95rem;
  color: #35336e;
  font-weight: 700;
  margin-bottom: 5px;
}

.ba-text-wrapper h4 {
  font-size: 1.4rem;
  color: #35336e;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1024px) {
  .ba-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards per view */
  }
}

@media (max-width: 768px) {
  .ba-main-title {
    font-size: 2rem;
  }
  .ba-highlight-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .ba-card {
    flex: 0 0 100%; /* 1 card per view */
  }
}

/* Auto Slide Animations */
.ba-img-before.auto-slide {
  animation: baSlideClip 8s infinite ease-in-out;
}

.ba-divider.auto-slide {
  animation: baSlideLeft 8s infinite ease-in-out;
}

@keyframes baSlideClip {
  0%,
  100% {
    clip-path: inset(0 50% 0 0);
  }
  25% {
    clip-path: inset(0 80% 0 0);
  }
  75% {
    clip-path: inset(0 20% 0 0);
  }
}

@keyframes baSlideLeft {
  0%,
  100% {
    left: 50%;
  }
  25% {
    left: 20%;
  }
  75% {
    left: 80%;
  }
}

/* Text Testimonials Section */
.text-testimonials-section {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(to bottom, #fdf1ea 25%, #ffffff 25%);
}

.text-testi-container {
  max-width: 1250px;
  position: relative;
}

.text-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.text-testi-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(53, 51, 110, 0.08);
  display: flex;
  flex-direction: column;
}

/* Review cards supplied as images — the artwork already has the card chrome */
.text-testi-card.review-img-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  justify-content: center;
}

.text-testi-card.review-img-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.text-testi-card .stars {
  color: #df5830;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.text-testi-card .review-text {
  color: #4a4a68;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.text-testi-card hr {
  border: none;
  border-top: 1px solid #f0f0f5;
  margin-bottom: 20px;
}

.text-testi-card .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.text-testi-card .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e2e2ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-testi-card .avatar svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.text-testi-card .user-name {
  color: #35336e;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
}

.text-testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.text-testi-dots {
  display: flex;
  gap: 8px;
}

.text-testi-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cacedb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.text-testi-dots .dot.active {
  background: #df5830;
  transform: scale(1.2);
}

.text-testi-nav {
  display: flex;
  gap: 12px;
  position: absolute;
  right: 0;
}

.t-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #35336e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.t-nav-btn:hover {
  background: #252352;
}

@media (max-width: 992px) {
  .text-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .text-testi-grid {
    grid-template-columns: 1fr;
  }
  .text-testi-nav {
    display: none;
  }
}

/* Awards Section */
.awards-section {
  background-color: #fdfdfd;
  position: relative;
  padding: 80px 0;
}

.awards-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
}

.awards-title .text-purple {
  color: #35336e;
}

.awards-title .text-orange {
  color: #df5830;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-img-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(53, 51, 110, 0.1);
  margin-bottom: 20px;
}

.award-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease;
}

.award-card:hover .award-img-wrapper img {
  transform: scale(1.03);
}

.award-name {
  color: #df5830;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 992px) {
  .awards-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.floating-whatsapp {
  background-color: #25d366;
}

.floating-call {
  background-color: #df5830;
}

.floating-btn svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* FAQ Section Styling */
.faq-section {
  background-color: #fdfdfd;
  padding: 100px 0 60px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 50px;
}

.faq-title .text-brown {
  color: #5c433c;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.faq-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 30px 35px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-header:focus {
  outline: none;
}

.faq-icon {
  font-size: 1.5rem;
  color: #aaa;
  font-weight: 300;
  font-family: sans-serif;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-header {
  color: #df5830;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
  padding: 0 35px 30px;
  margin: 0;
  color: #666;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-content p.faq-lead {
  padding-bottom: 12px;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0 35px 18px;
  color: #666;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.faq-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #df5830;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 1.5rem;
  }
  .faq-header {
    font-size: 1.1rem;
    padding: 20px 25px;
  }
  .faq-content p {
    padding: 0 25px 20px;
    font-size: 1rem;
  }
  .faq-list {
    padding: 0 25px 14px;
    font-size: 1rem;
  }
}

/* Booking Form Section */
.booking-section {
  background-color: #fdf1ea;
  padding: 80px 0;
  margin-bottom: 0 !important;
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.booking-title .text-purple {
  color: #35336e;
}

.booking-title .text-orange {
  color: #df5830;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0b09a;
  padding: 15px 0;
  font-size: 1.1rem;
  color: #df5830;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-bottom-color: #df5830;
}

.form-control::placeholder {
  color: #df5830;
  opacity: 0.8;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #df5830;
}



.form-footer {
  background: white;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.custom-checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
  flex: 1;
  margin-right: 20px;
}

.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 2px solid #35336e;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.custom-checkbox-container:hover input ~ .checkmark {
  background-color: #f0f0f0;
}

.custom-checkbox-container input:checked ~ .checkmark {
  background-color: #35336e;
  border-color: #35336e;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-text {
  color: #35336e;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

.booking-submit {
  background-color: #35336e;
  color: white;
  border-radius: 30px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.booking-submit:hover {
  background-color: #252352;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 768px) {
  .form-row.split-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .form-footer {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .custom-checkbox-container {
    margin-right: 0;
  }
  .booking-title {
    font-size: 2.2rem;
  }
}

/* Hero Bottom Bar Actions */
.hero-actions-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-action-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #35336e;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-action-link:hover {
  color: #df5830;
  transform: translateY(-2px);
}

.hero-action-link .icon {
  font-size: 1.5rem;
}

.hero-action-link.left-action {
  justify-content: flex-start;
}

.hero-action-link.right-action {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .hero-actions-grid {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-action-link {
    justify-content: center;
    font-size: 1.2rem;
  }

  .hero-action-link.left-action,
  .hero-action-link.right-action {
    justify-content: center;
  }
}

/* Brand Footprint Section */
.footprint-section {
  background-color: #fdf1ea;
  overflow: hidden;
  padding-bottom: 80px;
}

.footprint-title {
  font-size: 2.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 20px;
  color: #df5830;
}

.marquee-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width bleed out of container */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.marquee-track {
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 15px;
  padding-right: 15px;
  animation: scroll-left 50s linear infinite;
}

.marquee-content.rtl-scroll {
  animation: scroll-right 50s linear infinite;
}

.marquee-item {
  width: 280px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.marquee-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

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

.marquee-item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .footprint-title {
    font-size: 2.2rem;
  }
  .marquee-item {
    width: 220px;
    height: 130px;
    border-radius: 8px;
  }
  .marquee-content {
    gap: 10px;
    padding-right: 10px;
  }
  .marquee-wrapper {
    gap: 10px;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fdf1ea;
  padding-top: 100px; /* Space for the fixed header */
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.slider-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
}

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

@media (max-width: 768px) {
  .hero-slider {
    padding-top: 10px;
  }
  .slide img {
    height: auto;
    object-fit: contain;
  }
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #df5830;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition:
    background 0.3s,
    transform 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
  background: #c04520;
  transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #df5830;
}

/* Popup Modal */
.popup-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 999999 !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 51, 110, 0.85); /* Deep Vibes Blue with opacity */
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popup-modal.show {
  display: flex;
  opacity: 1;
}

.popup-content.single-column {
  background-color: #ffffff;
  border-radius: 5px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: visible; /* To allow close button to overlap */
  max-width: min(600px, 90vw);
  box-sizing: border-box;
}

.popup-form {
  max-width: 100%;
  box-sizing: border-box;
}

.popup-modal.show .popup-content {
  transform: translateY(0) scale(1);
}

.popup-close-custom {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px !important;
  height: 35px !important;
  min-width: 35px !important;
  min-height: 35px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #df5830;
  color: #ffffff;
  border-radius: 50% !important;
  font-size: 22px;
  line-height: 1 !important;
  font-weight: bold;
  border: 2px solid #ffffff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.popup-close-custom:hover {
  transform: scale(1.1);
}

.popup-body {
  display: block;
}

.popup-form-area {
  padding: 30px 40px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.popup-title {
  color: #df5830;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.popup-form {
  text-align: left;
}

.popup-form .form-group {
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.popup-form .form-row {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.popup-form .half-width {
  width: 50%;
  box-sizing: border-box;
}

.popup-form .full-width {
  width: 100%;
  box-sizing: border-box;
}

.popup-form .form-control {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  height: 48px;
  border-radius: 4px;
  padding: 0 15px;
  width: 100%;
  max-width: 100%;
  color: #4a4a68;
  box-sizing: border-box;
}

.popup-form .form-control:focus {
  border-color: #df5830;
  outline: none;
}

.popup-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.popup-form .checkbox-group input {
  margin-top: 4px;
  accent-color: #35336e;
  width: 16px;
  height: 16px;
}

.popup-form .checkbox-group label {
  font-size: 0.9rem;
  color: #35336e;
  line-height: 1.4;
}

.popup-submit-btn {
  background-color: #35336e;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px;
  border-radius: 30px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-submit-btn:hover {
  background-color: #2a2958;
}

@media (max-width: 768px) {
  .popup-form-area {
    padding: 25px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .popup-title {
    font-size: 1.3rem;
  }
  .popup-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .popup-form .half-width {
    width: 100%;
  }
}

/* Privacy Policy / Legal Section */
.legal-section {
  padding: 120px 0 80px;
  background-color: #f7f8fa;
  min-height: 80vh;
}

.legal-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #35336e;
  margin-bottom: 10px;
}

.legal-date {
  color: #df5830;
  font-weight: 500;
  margin-bottom: 40px;
}

.legal-content {
  background: #ffffff;
  padding: 60px 55px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  font-size: 1.02rem;
}

.legal-content > *:first-child {
  margin-top: 0;
}

.legal-content h2 {
  color: #35336e;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.35;
  margin-top: 55px;
  margin-bottom: 18px;
  padding-top: 30px;
  padding-left: 18px;
  border-top: 1px solid #ecedf3;
  position: relative;
}

.legal-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 4px;
  height: calc(100% - 34px);
  min-height: 1.1em;
  background: #df5830;
  border-radius: 4px;
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
}

.legal-content h2:first-child::before {
  top: 4px;
  height: calc(100% - 8px);
}

.legal-content h3 {
  color: #35336e;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #4a4a68;
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content strong {
  color: #35336e;
  font-weight: 600;
}

.legal-content ul {
  color: #4a4a68;
  line-height: 1.8;
  list-style: none;
  margin-left: 0;
  margin-bottom: 26px;
  padding-left: 0;
}

.legal-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #df5830;
  opacity: 0.85;
}

/* Nested lists (e.g. opt-out methods) */
.legal-content ul ul {
  margin-top: 12px;
  margin-bottom: 4px;
  padding-left: 4px;
}

.legal-content ul ul li::before {
  width: 6px;
  height: 6px;
  background: transparent;
  border: 1.5px solid #df5830;
}

.legal-content .contact-card {
  background: #f9f9fb;
  padding: 26px 28px;
  border-left: 4px solid #df5830;
  border-radius: 0 12px 12px 0;
  margin-top: 22px;
}

.legal-content .contact-card p {
  margin: 0 0 8px;
  line-height: 1.7;
}

.legal-content .contact-card p:last-child {
  margin-bottom: 0;
}

.legal-content .contact-card a {
  color: #df5830;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
}

.legal-content .contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 32px 22px;
    font-size: 1rem;
  }
  .legal-title {
    font-size: 2.2rem;
  }
  .legal-content h2 {
    font-size: 1.4rem;
    margin-top: 42px;
    padding-top: 24px;
    padding-left: 14px;
  }
  .legal-content h2::before {
    top: 27px;
    height: calc(100% - 27px);
  }
  .legal-content h3 {
    font-size: 1.05rem;
  }
  .legal-content ul li {
    padding-left: 22px;
  }
  .legal-content ul li::before {
    left: 2px;
  }
  .legal-content .contact-card {
    padding: 20px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #35336e 0%, #2a2958 100%);
  padding: 100px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.why-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-image-wrapper:hover img {
  transform: scale(1.05);
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.why-content h2 span {
  color: #df5830;
}

.why-content p.why-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 15px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.why-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(223, 88, 48, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #df5830;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-content {
    order: -1;
  }
}

@media (max-width: 768px) {
  .why-content h2 {
    font-size: 2.2rem;
  }
  .why-features {
    grid-template-columns: 1fr;
  }
}

/* Premium Hero Banner Styles */
.hero-banner {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, #fdfbf8 0%, #f3effc 100%); /* Soft cream to subtle lavender */
  overflow: hidden;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(132, 90, 223, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(132, 90, 223, 0.08);
  border: 1px solid rgba(132, 90, 223, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
  margin-right: 8px;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #2d2c6c;
  letter-spacing: 0.5px;
}

.hero-header {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, #2d2c6c 0%, #845adf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-hook {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-bodytext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero-checklist li {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
}

.check-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #e8f5e9;
  color: #4caf50;
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(76, 175, 80, 0.2);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-primary-gradient {
  display: inline-block;
  padding: 16px 36px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, #f7941d 0%, #e67d0f 100%);
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  width: max-content;
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: auto-shine 5s infinite ease-in-out;
}

.btn-primary-gradient:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 5px 10px rgba(247, 148, 29, 0.3);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #666;
}

.trust-text strong {
  color: #111;
  font-weight: 700;
}

.hero-form-wrapper {
  flex: 1;
  max-width: 450px;
  width: 100%;
  position: relative;
  margin: 60px auto 0;
}

.consultation-form-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  font-family: "Inter", sans-serif;
  text-align: left;
}

.form-header-bg {
  background: linear-gradient(135deg, rgb(45, 44, 108) 0%, rgb(132, 90, 223) 100%);
  padding: 25px 20px;
  text-align: center;
  color: white;
}

.form-header-bg h3 {
  margin: 0 0 5px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.form-header-bg p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
}

.form-stepper .step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-stepper .step.active {
  background: #e34c8c;
  color: white;
}

.form-stepper .step-line {
  width: 30px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 10px;
}

.form-body {
  padding: 30px;
}

.form-body h4 {
  color: #333;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e34c8c;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #a27cbe;
  outline: none;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  height: 45px;
  background: #f7f7f7;
  border-right: 1px solid #ddd;
  color: #333;
  font-size: 0.95rem;
  white-space: nowrap;
  user-select: none;
}

.phone-prefix img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  display: block;
}

.country-selector {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #fff;
  border-right: 1px solid #ddd;
  height: 45px;
  cursor: pointer;
}

.country-selector img {
  margin-right: 5px;
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.dropdown-arrow {
  font-size: 0.7rem;
  color: #666;
}

.phone-input-wrapper input {
  border: none;
  border-radius: 0;
  padding: 12px 15px;
  flex: 1;
}

.phone-input-wrapper input:focus {
  border-color: transparent;
  outline: none;
}

.form-help-text {
  font-size: 0.8rem;
  color: #888;
  margin-top: 6px;
}

.btn-form-continue {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #cc6999 0%, #a27cbe 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 10px;
}

.btn-form-continue:hover {
  opacity: 0.9;
}

@media (max-width: 991px) {
  .hero-banner {
    padding: 80px 0 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0;
  }

  .hero-bg-glow {
    right: 50%;
    transform: translateX(50%);
    top: 0;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-header {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-hook {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .hero-bodytext {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-checklist {
    margin: 0 auto 30px auto;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-checklist li {
    font-size: 14px;
    justify-content: flex-start;
    text-align: left;
    background: #fff;
    padding: 10px 20px 10px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
  }

  .btn-primary-gradient {
    width: 100%;
  }
}

/* ==========================================================================
   Transformations Section (Cards)
   ========================================================================== */
.transformations-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9f5f0 100%);
  position: relative;
  overflow: hidden;
}

.transformations-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.transformations-title .highlight {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 50%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@media (max-width: 768px) {
  .transformations-title {
    font-size: 2.2rem;
    padding: 0 10px;
  }
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.transformation-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(53, 51, 110, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  border: 1px solid rgba(223, 88, 48, 0.1);
  display: flex;
  flex-direction: column;
}

.transformation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(53, 51, 110, 0.15);
}

.transformation-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5efe6;
}

.transformation-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.transformation-card:hover .transformation-img-wrap img {
  transform: scale(1.05);
}

.img-before-after {
  width: 100%;
  height: 100%;
  position: relative;
}

.badge-success {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #df5830 0%, #e75524 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(223, 88, 48, 0.3);
  z-index: 2;
}

.transformation-content {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.transformation-content h3 {
  color: #35336e;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}

.transformation-bio {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
  border-left: 3px solid #df5830;
  padding-left: 15px;
}

.transformation-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.detail-group h4 {
  color: #35336e;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-group ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.detail-group ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #df5830;
  font-weight: bold;
}

.transformation-achievement {
  margin-top: auto;
  padding: 20px;
  background: rgba(53, 51, 110, 0.04);
  border-radius: 16px;
  border: 1px dashed rgba(53, 51, 110, 0.2);
}

.transformation-achievement h4 {
  color: #35336e;
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.transformation-achievement p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .transformations-grid {
    grid-template-columns: 1fr;
  }
  .transformation-img-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .transformation-img-wrap img {
    height: 100%;
    object-fit: cover;
    background: #f5efe6;
  }
  .transformation-content {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   As Featured On Section
   ========================================================================== */
.featured-on-section {
  padding: 80px 0;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

/* Grid Background */
.featured-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: 0;
  pointer-events: none;
}

.featured-on-section .container {
  position: relative;
  z-index: 1;
}

.featured-on-section .section-title {
  font-family: var(--font-body);
  font-size: 2.5rem;
  color: #000;
}

.featured-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.featured-top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
}

/* Instagram Card */
.instagram-card-wrapper {
  flex: 1;
  min-width: 350px;
  max-width: 550px;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  padding: 4px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.instagram-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}

.insta-header {
  display: flex;
  gap: 25px;
  align-items: center;
}

.insta-profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  padding: 3px;
  flex-shrink: 0;
}

.insta-profile-pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.insta-info {
  flex-grow: 1;
}

.insta-username-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.insta-username-row h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
}

.insta-username-row button {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-following {
  background: #efefef;
  color: #000;
}

.btn-message {
  background: #efefef;
  color: #000;
}

.btn-more {
  background: transparent;
  font-size: 1.2rem;
  padding: 0 5px;
}

.insta-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.insta-stats strong {
  font-weight: 700;
}

.insta-bio {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #000;
}

.insta-bio a {
  color: #00376b;
  text-decoration: none;
  font-weight: 600;
}

/* Hexagon Collage */
.hexagon-collage {
  position: relative;
  width: 320px;
  height: 380px;
  flex-shrink: 0;
}

.hex {
  position: absolute;
  width: 140px;
  height: 160px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.hex:hover {
  transform: scale(1.05);
  z-index: 20;
}

.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrange them in a honeycomb */
.hex-1 {
  top: 0;
  left: 90px;
} /* Top */
.hex-2 {
  top: 110px;
  left: 165px;
} /* Right */
.hex-3 {
  top: 220px;
  left: 90px;
} /* Bottom */
.hex-4 {
  top: 220px;
  left: -60px;
} /* Bottom Left */

.hex-award {
  position: absolute;
  top: 110px;
  left: 15px;
  width: 140px;
  height: 160px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.hex-award span {
  font-size: 0.75rem;
  font-weight: bold;
  color: #b8860b;
  margin-top: 5px;
  line-height: 1.2;
}

/* Logos Row */
.featured-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: #333;
}

.logo-text.hm {
  color: #e33b24;
  font-style: italic;
  font-family: "Times New Roman", serif;
}

.logo-text.xt {
  border: 2px solid #000;
  padding: 5px 10px;
  font-family: serif;
  letter-spacing: 1px;
}

.logo-text.jt {
  color: #3baee3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f26522;
  color: white;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 1rem;
}

.logo-text.omh {
  color: #4a8d43;
  font-family: Arial, sans-serif;
  letter-spacing: -1px;
  font-size: 1.5rem;
}

.logo-text.ndtv {
  color: #6fb048;
  font-weight: 900;
}

.logo-text.boh {
  color: #e31837;
  text-align: center;
  line-height: 1;
}

@media (max-width: 900px) {
  .featured-top-row {
    flex-direction: column;
    align-items: center;
  }
  .insta-header {
    flex-direction: column;
    text-align: center;
  }
  .insta-username-row {
    justify-content: center;
  }
  .insta-stats {
    justify-content: center;
  }
}

/* ==========================================================================
   Does This Sound Like You Section
   ========================================================================== */
.sound-like-you-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  position: relative;
  overflow: hidden;
}

/* Background floating abstract elements */
.sound-like-you-section::before,
.sound-like-you-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
  animation: floatBlob 10s infinite ease-in-out alternate;
}

.sound-like-you-section::before {
  top: -50px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(214, 34, 102, 0.2);
}

.sound-like-you-section::after {
  bottom: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: rgba(142, 45, 226, 0.15);
  animation-delay: -5s;
}

.sound-like-you-section .container {
  position: relative;
  z-index: 1;
}

.sound-like-you-section .section-title {
  background: linear-gradient(45deg, #d62266, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.struggles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.struggle-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.struggle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(214, 34, 102, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.struggle-card > * {
  position: relative;
  z-index: 1;
}

.struggle-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(214, 34, 102, 0.12),
    inset 0 0 0 1px rgba(214, 34, 102, 0.1);
  border-color: rgba(214, 34, 102, 0.2);
}

.struggle-card:hover::before {
  opacity: 1;
}

.icon-wrap {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 10px 20px rgba(214, 34, 102, 0.08),
    inset 0 0 0 4px rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.struggle-card:hover .icon-wrap {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    0 15px 30px rgba(214, 34, 102, 0.15),
    inset 0 0 0 4px #ffffff;
}

.struggle-card p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.struggle-card:hover p {
  color: #222;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

@media (max-width: 991px) {
  .struggles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .struggles-grid {
    grid-template-columns: 1fr;
  }
  .sound-like-you-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   Video Testimonials Section
   ========================================================================== */
.video-testimonials-section {
  padding: 80px 0;
  background-color: #fcf9f9;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.video-card {
  background: #FFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   Enjoying Life Section
   ========================================================================== */
.enjoying-life-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.life-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.life-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
}

.life-card:hover {
  transform: translateY(-10px);
}

.life-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.life-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.life-card:hover .life-card-img img {
  transform: scale(1.05);
}

.life-card-content {
  padding: 30px;
}

.life-card-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.life-card-content strong {
  color: #333;
  font-weight: 600;
}

.text-vibes {
  color: #df5830;
  font-weight: 700;
}

@media (max-width: 991px) {
  .life-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   Mobile Overhaul (Too Beautiful & Modern)
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Global Typography & Padding Adjustments */
  .section-padding {
    padding: 50px 0 !important;
  }
  
  h1, .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem) !important;
    line-height: 1.2 !important;
  }
  
  h2, .section-title, .faq-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 25px !important;
  }
  
  h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
  }

  p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* 2. Touch Targets & Buttons */
  .btn, button, a.btn-primary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px !important;
  }

  /* 3. Horizontal Swipeable Grids */
  .transformation-grid,
  .video-grid,
  .services-grid,
  .life-cards-grid,
  .struggles-grid,
  .faq-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px !important;
    padding: 0 10px 20px 10px !important; /* Space for scrollbar and edge */
    scrollbar-width: none;
    margin-left: -15px; /* Bleed to edges */
    margin-right: -15px;
    width: calc(100% + 30px);
  }

  .transformation-grid::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .life-cards-grid::-webkit-scrollbar,
  .struggles-grid::-webkit-scrollbar,
  .faq-container::-webkit-scrollbar {
    display: none;
  }

  .transformation-card,
  .video-card,
  .service-card,
  .life-card,
  .struggle-card,
  .faq-item {
    flex: 0 0 85% !important;
    scroll-snap-align: center;
    margin-bottom: 0 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06) !important; /* Softer shadow */
  }

  /* 4. Glassmorphic Mobile Menu Enhancement */
  .mobile-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08) !important;
    padding-top: 15px;
  }
  
  .mobile-nav a:not(.btn) {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s ease, padding-left 0.3s ease;
  }
  
  .mobile-nav a:not(.btn):active {
    background: #fcf9f9;
    padding-left: 25px !important;
  }

  /* 4b. Responsive Mobile Sticky Nav (Purple Bar) */
  .mch-bot-bar {
    justify-content: center !important;
  }
  
  .mch-links {
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-evenly !important;
    align-items: center !important;
  }
  
  .mch-links a, .mch-links a:last-child {
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    border: none !important;
    text-align: center;
  }

  /* 5. Footer Responsive Fix */
  .footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding-bottom: 20px;
  }
  
  .legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .legal-links a {
    margin-left: 0 !important;
  }
}

/* Mobile Only Video & YouTube Iframe */
.mobile-only-video {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only-video {
    display: block;
    margin: 30px auto 25px auto;
    width: 94%;
    max-width: 500px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(49, 39, 94, 0.15), inset 0 2px 5px rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    z-index: 10;
  }
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  background: #000;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-checklist-centered {
    list-style: none;
    padding: 0;
    text-align: center;
}
.hero-checklist-centered li {
    margin-bottom: 3.5rem;
}

/* --- Premium Feature Sections --- */
.premium-feature-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}
.figure-correction-bg {
    background: linear-gradient(135deg, #f9f9ff 0%, #fff 100%);
}
.double-chin-bg {
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
}
.premium-split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.premium-split-layout.reverse-layout {
    flex-direction: row-reverse;
}
.premium-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-image-wrapper:hover {
    transform: translateY(-10px);
}
.premium-feature-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    object-fit: cover;
    max-height: 500px;
}
.premium-image-backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, #f7941d, #e67d0f);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.15;
    filter: blur(10px);
}
.accent-backdrop {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-weight: 600;
    color: var(--text-color);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
}
.floating-badge.top-right {
    top: 20px;
    right: -20px;
}
.floating-badge.bottom-left {
    bottom: 30px;
    left: -20px;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.premium-content-wrapper {
    flex: 1.2;
    min-width: 300px;
}
.premium-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #1a1a2e;
    line-height: 1.2;
}
.premium-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.premium-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f7941d, #e67d0f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
}
.premium-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #222;
}
.premium-feature-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}
.premium-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.premium-check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #444;
}
.check-circle {
    width: 28px;
    height: 28px;
    background: #e8f5e9;
    color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.premium-btn-animate {
    position: relative;
    overflow: hidden;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.premium-btn-animate .arrow-icon {
    transition: transform 0.3s ease;
}
.premium-btn-animate:hover .arrow-icon {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .premium-feature-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .premium-split-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .premium-split-layout.reverse-layout {
        flex-direction: column;
    }
    .premium-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .premium-image-backdrop {
        left: -10px;
        right: -10px;
    }
}


@media (max-width: 768px) {
    .floating-badge.top-right { right: -5px; }
    .floating-badge.bottom-left { left: -5px; }
    .premium-image-wrapper, .premium-content-wrapper {
        min-width: unset;
    }
    .premium-content-wrapper {
        padding: 0 10px;
    }
    .premium-heading {
        font-size: 1.8rem;
    }
    .premium-text {
        font-size: 1rem;
    }
    .premium-feature-item h4 {
        font-size: 1rem;
    }
    .premium-feature-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .premium-btn-animate {
        padding: 12px 16px;
        font-size: 0.95rem;
        white-space: nowrap;
        width: 100%;
        justify-content: center;
    }
    .premium-cta-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Real Results Gallery Section */
.results-gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f4fb 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.gallery-pair {
    display: flex;
    width: 100%;
    height: 100%;
}

.gallery-pair .half {
    width: 50%;
    position: relative;
}

.gallery-pair .half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-pair .label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.65);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #df5830;
    text-decoration: none;
    cursor: pointer;
}

/* ==========================================================================
   GMB Section
   ========================================================================== */
.gmb-section {
    background: #ffffff;
    color: #4a4a68;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 60px 0;
    margin-top: 40px;
    margin-bottom: 40px;
}
.gmb-left {
    flex: 0 0 35%;
    padding-left: 10%;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gmb-right {
    flex: 0 0 65%;
    position: relative;
    overflow: hidden;
}
.gmb-title {
    color: #df5830;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}
.gmb-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.gmb-features li {
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.gmb-icon {
    background: rgba(223, 88, 48, 0.12);
    color: #df5830;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.gmb-btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #df5830;
    color: #df5830;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: max-content;
}
.gmb-btn-outline:hover {
    background: #df5830;
    color: #ffffff;
}

.gmb-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
}
.gmb-carousel::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.gmb-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gmb-card-img {
    position: relative;
    height: 200px;
}
.gmb-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Centre cards supplied as full artwork (name, rating, address, phone baked in) */
.gmb-card-photo {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}
.gmb-card-photo .gmb-card-img {
    height: auto;
}
.gmb-card-photo .gmb-card-img img {
    height: auto;
    display: block;
    object-fit: contain;
}
.gmb-card-photo .gmb-card-actions {
    padding: 18px 20px 20px;
    margin-top: auto;
}
.gmb-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}
.gmb-card-content {
    padding: 20px;
}
.gmb-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #000;
}
.gmb-card-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gmb-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gmb-direction {
    color: #df5830;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.gmb-btn-primary {
    background: #df5830;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}
.gmb-btn-primary:hover {
    background: #c4441f;
    color: white;
}
.gmb-carousel-nav {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    gap: 15px;
    margin-top: 10px;
}
.gmb-carousel-nav button {
    background: transparent;
    border: none;
    color: #df5830;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gmb-carousel-nav button:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .gmb-left, .gmb-right {
        flex: 0 0 100%;
        padding: 0 20px;
    }
    .gmb-left {
        margin-bottom: 30px;
    }
    .gmb-carousel-nav {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        display: none !important;
    }
}
