/* ==========================================================================
   Delhigirls Static Stylesheet
   ========================================================================== */

/* --- Design Tokens / Theme Variables --- */
:root {
  --color-white: #ffffff;
  
  --color-teal-50: #f0fdfa;
  --color-teal-100: #ccfbf1;
  --color-teal-200: #99f6e4;
  --color-teal-300: #5eead4;
  --color-teal-400: #2dd4bf;
  --color-teal-500: #14b8a6;
  --color-teal-600: #0d9488;
  --color-teal-700: #0f766e;
  --color-teal-800: #115e59;
  --color-teal-900: #134e4a;
  --color-teal-950: #042f2e;

  --color-emerald-200: #a7f3d0;
  --color-emerald-300: #6ee7b7;
  --color-emerald-400: #34d399;
  --color-emerald-500: #10b981;
  --color-emerald-600: #059669;
  --color-emerald-800: #064e3b;
  --color-emerald-900: #064e3b;

  --color-cyan-500: #06b6d4;
  --color-blue-500: #3b82f6;

  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* --- Resets and Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-gray-900);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  background-color: transparent;
  cursor: pointer;
  border: none;
}

button, input {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

/* --- Layout and Grid Containers --- */
.navbar-container,
.hero-container,
.intro-container,
.profiles-container,
.features-container,
.pricing-container,
.cities-container,
.testimonials-container,
.faq-container,
.final-cta-container,
.footer-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-container,
.hero-container,
.profiles-container,
.features-container,
.pricing-container,
.cities-container,
.testimonials-container,
.footer-container {
  max-width: 80rem; /* 1280px */
}

.intro-container,
.final-cta-container {
  max-width: 72rem; /* 1152px - slightly wider for better measure */
}

.faq-container {
  max-width: 70rem; /* 768px */
}

section {
  padding-top: 1rem; /* py-20 */
  padding-bottom: 1rem;
}

/* --- Helper and Utility Classes --- */
.text-center { text-align: center; }
.text-gray-900 { color: var(--color-gray-900); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-400 { color: var(--color-gray-400); }
.text-teal-100 { color: var(--color-teal-100); }
.text-teal-200 { color: var(--color-teal-200); }
.text-teal-300 { color: var(--color-teal-300); }
.text-teal-600 { color: var(--color-teal-600); }
.text-teal-700 { color: var(--color-teal-700); }
.text-emerald-500 { color: var(--color-emerald-500); }
.text-white { color: var(--color-white); }
.text-yellow-400 { color: #facc15; }

/* --- Typography System --- */
.section-label {
  color: var(--color-teal-600);
  font-weight: 600;
  font-size: 0.875rem; /* text-sm */
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem; /* mb-2 */
  text-transform: uppercase;
}

.section-heading {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem; /* slightly more breathing room */
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.25rem; /* text-4xl */
  }
}

.section-description {
  font-size: 1.125rem; /* text-lg */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}

/* --- Common Button Component --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 0.5rem; /* rounded-lg */
  transition: all 0.2s ease-in-out;
  padding: 0.625rem 1.25rem; /* px-5 py-2.5 */
  font-size: 1rem;
}

.btn-teal-gradient {
  background-image: linear-gradient(to right, var(--color-teal-600), var(--color-emerald-600));
  color: var(--color-white);
}

.btn-teal-gradient:hover {
  box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
}

.btn-text {
  color: var(--color-teal-600);
}

.btn-text:hover {
  background-color: var(--color-teal-50);
}

.btn-dark {
  background-color: var(--color-gray-900);
  color: var(--color-white);
}

.btn-dark:hover {
  background-color: var(--color-gray-800);
}

.btn-gray-light {
  background-color: var(--color-gray-100);
  color: var(--color-gray-700);
}

.btn-gray-light:hover {
  background-color: var(--color-gray-200);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-teal-700);
}

.btn-white:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-arrow {
  color: var(--color-teal-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.btn-arrow:hover {
  color: var(--color-teal-700);
}

.btn-arrow .arrow {
  transition: transform 0.2s;
}

.btn-arrow:hover .arrow {
  transform: translateX(4px);
}

.inline-flex-center {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Section Components
   ========================================================================== */

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1rem 0 1rem;
}

.navbar-container {
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-image: linear-gradient(to bottom right, var(--color-teal-500), var(--color-emerald-600));
}

.logo-text {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-gray-900);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--color-gray-700);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--color-teal-600);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--color-gray-700);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-100);
  margin-top: 1rem;
  padding: 1rem 0;
  border-radius: 0 0 1rem 1rem;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  color: var(--color-gray-700);
  padding: 0.5rem 0.5rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--color-teal-600);
}

.mobile-menu-cta {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  margin-top: 0.25rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 7rem; /* Space for sticky navbar */
  padding-bottom: 4rem;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at top, var(--color-teal-950), #021615 80%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.orb-1 {
  top: 10%;
  left: 5%;
  width: 28rem;
  height: 28rem;
  background-color: var(--color-emerald-500);
}

.orb-2 {
  bottom: 10%;
  right: 5%;
  width: 28rem;
  height: 28rem;
  background-color: var(--color-teal-500);
}

.orb-glow {
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 10;
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  color: var(--color-white);
  z-index: 10;
  position: relative;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  z-index: 10;
  position: relative;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-emerald-400);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-teal-100);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title-highlight {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, var(--color-teal-300), var(--color-emerald-400));
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(204, 251, 241, 0.85);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* 2x2 Feature Grid */
.hero-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 480px) {
  .hero-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-feat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(4, 47, 46, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.hero-feat-card:hover {
  background: rgba(4, 47, 46, 0.65);
  border-color: rgba(20, 184, 166, 0.35);
  transform: translateY(-2px);
}

.feat-icon-box {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon-box svg {
  color: var(--color-teal-400);
}

.feat-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.feat-info p {
  font-size: 0.75rem;
  color: var(--color-teal-200);
  opacity: 0.75;
}

/* Action Buttons */
.hero-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-action-buttons {
    flex-direction: row;
    align-items: center;
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  color: var(--color-teal-950);
  background: linear-gradient(135deg, var(--color-emerald-400), var(--color-teal-300));
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 211, 153, 0.45);
  filter: brightness(1.05);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  color: var(--color-teal-300);
  background: rgba(20, 184, 166, 0.05);
  border: 1.5px solid rgba(20, 184, 166, 0.35);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.6);
  color: var(--color-white);
  transform: translateY(-2px);
}

.whatsapp-icon {
  fill: none;
}
.about-section{
  padding:20px 20px;
  background:#ffffff;
}

.about-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.about-label{
  display:inline-block;
  font-size:14px;
  letter-spacing:4px;
  font-weight:600;
  color:#0ea5a4;
  margin-bottom:28px;
}

.about-heading{
  font-size:clamp(40px,4vw,40px);
  line-height:1.05;
  font-weight:800;
  color:#0f172a;
  margin-bottom:40px;
  letter-spacing:-2px;
}

.about-heading span{
  color:#0ea5a4;
}

.about-text{
  font-size:20px;
  line-height:2;
  color:#475569;
  margin-bottom:28px;
  font-weight:400;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:768px){

  .about-section{
    padding:5px 10px;
  }

  .about-heading{
    font-size:42px;
    line-height:1.1;
  }

  .about-text{
    font-size:17px;
    line-height:1.9;
  }

}
/* Visual Column / Mockup */
.hero-visual-col {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 2rem 0;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-visual-col {
    min-height: 520px;
    align-items: flex-end;
    padding-right: 2rem;
  }
}

.glowing-atmosphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22) 0%, rgba(20, 184, 166, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Floating Profile Card */
.floating-profile-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 310px;
  background: rgba(4, 47, 46, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 1.25rem;
  padding: 0.875rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(20, 184, 166, 0.15);
  transform: rotate(-1.5deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-profile-card:hover {
  transform: rotate(0deg) translateY(-8px);
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.65), 0 0 45px rgba(20, 184, 166, 0.25);
}

.card-image-wrapper {
  position: relative;
  aspect-ratio: 3/3.8;
  border-radius: 0.875rem;
  overflow: hidden;
}

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

.floating-profile-card:hover .profile-img-main {
  transform: scale(1.04);
}

.card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(4, 47, 46, 0.95) 100%);
}

.profile-online-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse-dot-green {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  display: inline-block;
}

.card-profile-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.25rem 0.25rem;
}

.profile-details-left h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.profile-loc {
  font-size: 0.75rem;
  color: var(--color-teal-200);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-loc svg {
  color: var(--color-teal-400);
}

.category-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-emerald-300);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
}

/* Floating Privacy Card */
.floating-privacy-card {
  position: absolute;
  z-index: 3;
  bottom: 1rem;
  left: 0;
  width: 220px;
  background: rgba(4, 47, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 0.875rem;
  padding: 0.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: rotate(2.5deg) translateY(-20px);
  animation: float-slow 5s ease-in-out infinite alternate;
}

@keyframes float-slow {
  0% {
    transform: rotate(2.5deg) translateY(-15px);
  }
  100% {
    transform: rotate(3.5deg) translateY(-25px);
  }
}

@media (min-width: 1024px) {
  .floating-privacy-card {
    left: 20%;
  }
}

@media (max-width: 480px) {
  .floating-privacy-card {
    left: 2rem;
    width: 200px;
  }
}

.floating-privacy-card:hover {
  border-color: rgba(20, 184, 166, 0.55);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.privacy-icon-box {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-text h5 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.1rem;
}

.privacy-text p {
  font-size: 0.65rem;
  color: var(--color-teal-200);
  opacity: 0.85;
}

/* Hero Footer Bar */
.hero-footer-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 184, 166, 0.15);
  z-index: 10;
  position: relative;
}

@media (min-width: 768px) {
  .hero-footer-bar {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4.5rem;
    padding-top: 2.5rem;
  }
}

.footer-bar-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(204, 251, 241, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-bar-item svg {
  flex-shrink: 0;
}

/* --- Intro Section --- */
.intro {
  background-color: var(--color-white);
  padding-top: 6rem; /* add extra vertical spacing for a more spacious feel */
  padding-bottom: 6rem;
}

.intro-text {
  font-size: 1.125rem; /* comfortable reading size */
  color: var(--color-gray-700);
  line-height: 1.6; /* tighter, more readable leading */
  max-width: 62ch; /* optimal measure for readable paragraphs */
  margin: 0.5rem auto 0; /* center block and add top gap */
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 500; /* slightly stronger for premium feel */
}

@media (min-width: 640px) {
  .intro-text {
    text-align: left; /* left-align on wider screens for natural reading */
    margin-top: 0.75rem;
  }
}

/* --- Profiles Section --- */
.profiles {
  background-color: var(--color-gray-50);
}

.profiles-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .profiles-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .profile-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.profile-card {
  background-color: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.profile-image-container {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.fav-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.fav-btn:hover {
  background-color: var(--color-white);
}

.fav-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gray-600);
}

.profile-info {
  padding: 1.25rem;
}

.profile-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.profile-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-gray-900);
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.profile-location svg {
  color: var(--color-gray-600);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.profile-tag {
  padding: 0.25rem 0.625rem;
  background-color: var(--color-teal-50);
  color: var(--color-teal-700);
  font-size: 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.profile-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.btn-profile-act {
  padding: 0.625rem 0.25rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

/* --- Features Section --- */
.features {
  background-color: var(--color-white);
}

.features-header {
  margin-bottom: 4rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Tablet */
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.feature-card {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.grad-teal-cyan { background-image: linear-gradient(to bottom right, var(--color-teal-500), var(--color-cyan-500)); }
.grad-emerald-teal { background-image: linear-gradient(to bottom right, var(--color-emerald-500), var(--color-teal-500)); }
.grad-cyan-blue { background-image: linear-gradient(to bottom right, var(--color-cyan-500), var(--color-blue-500)); }
.grad-teal-emerald { background-image: linear-gradient(to bottom right, var(--color-teal-600), var(--color-emerald-600)); }

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description-text {
  line-height: 1.625;
}

/* --- Pricing Section --- */
.pricing {
  background-image: linear-gradient(to bottom right, var(--color-gray-50), var(--color-teal-50), rgba(240, 253, 250, 0.3));
}

.pricing-header {
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

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

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-gray-200);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--color-teal-600);
  box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.2);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background-image: linear-gradient(to right, var(--color-teal-600), var(--color-emerald-600));
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
  white-space: nowrap;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.price-symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.price-period {
  color: var(--color-gray-600);
  margin-left: 0.25rem;
}

.pricing-cta {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto; /* Aligns contents to bottom */
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-gray-700);
  font-size: 0.875rem;
  line-height: 1.4;
}

.plan-feature-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* --- Cities Section --- */
.cities {
  background-color: var(--color-white);
}

.cities-header {
  margin-bottom: 4rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.city-card {
  background-image: linear-gradient(to bottom right, var(--color-teal-50), var(--color-emerald-50));
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--color-teal-100);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.city-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.city-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  transition: transform 0.2s;
}

.city-card:hover .city-icon {
  transform: scale(1.1);
}

.city-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.city-name {
  font-weight: 600;
  color: var(--color-gray-900);
  font-size: 1rem;
}

.city-country {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.cities-action {
  margin-bottom: 5rem;
}

/* Stats Showcase Banner */
.stats-banner {
  background-image: linear-gradient(to bottom right, var(--color-teal-900), var(--color-emerald-900));
  border-radius: 1.5rem;
  padding: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-num {
    font-size: 3rem;
  }
}

.text-teal-emerald-light {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--color-teal-200), var(--color-emerald-200));
}

.stat-desc {
  color: var(--color-teal-100);
  font-size: 1rem;
}

/* --- Testimonials Section --- */
.testimonials {
  background-color: var(--color-gray-50);
}

.testimonials-header {
  margin-bottom: 4rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stars-container {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: var(--color-gray-700);
  line-height: 1.625;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--color-gray-900);
}

.author-role {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.author-company {
  font-size: 0.875rem;
  color: var(--color-teal-600);
  font-weight: 500;
}

/* --- FAQ Section --- */
.faq {
  background-color: var(--color-white);
}

.faq-header {
  margin-bottom: 4rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 0.75rem;
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.2s;
  background: transparent;
  border: none;
}

.faq-trigger:hover {
  background-color: var(--color-gray-5);
}

.faq-question {
  font-weight: 600;
  color: var(--color-gray-900);
  padding-right: 1rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--color-teal-600);
  flex-shrink: 0;
}

/* Accordion Animation & Class states */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.open .faq-body {
  max-height: 20rem; /* Safe height limit for transition */
  padding-bottom: 1.25rem;
}

.faq-answer {
  color: var(--color-gray-600);
  line-height: 1.625;
}

.faq-footer {
  margin-top: 3rem;
}

.faq-footer-text {
  margin-bottom: 1rem;
}

/* --- Final CTA Section --- */
.final-cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom right, var(--color-teal-600), var(--color-teal-700), var(--color-emerald-800));
}

.cta-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.final-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 3rem;
  }
}

.final-cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .final-cta-actions {
    flex-direction: row;
  }
}

.final-cta-trust {
  margin-top: 2rem;
  font-size: 0.875rem;
}

/* --- Footer Section --- */
.footer {
  background-image: linear-gradient(to bottom right, var(--color-teal-900), var(--color-teal-950));
  color: var(--color-white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.brand-logo {
  margin-bottom: 1rem;
}

.footer .logo-text {
  color: var(--color-white);
  font-size: 1.25rem;
}

.footer .logo-icon {
  background-image: linear-gradient(to bottom right, var(--color-teal-400), var(--color-emerald-500));
}

.footer-brand-desc {
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.brand-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.links-title {
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links-list a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.links-list a:hover {
  color: var(--color-white);
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid var(--color-teal-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright {
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(17, 94, 89, 0.5);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.social-icon-btn:hover {
  background-color: var(--color-teal-700);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.legal-link {
  transition: color 0.2s;
}

.legal-link:hover {
  color: var(--color-white);
}

.hidden {
  display: none;
}

/* ==========================================================================
   Booking Guide Section Styles
   ========================================================================== */
.booking-guide-section {
  padding: 1rem 2rem;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.booking-guide-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Subtle dot patterns on the left and right sides */
.booking-guide-section::before,
.booking-guide-section::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 120px;
  height: 240px;
  opacity: 0.08;
  background-image: radial-gradient(#0ea5a4 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

.booking-guide-section::before {
  left: 3rem;
}

.booking-guide-section::after {
  right: 3rem;
}

@media (max-width: 1024px) {
  .booking-guide-section::before,
  .booking-guide-section::after {
    display: none;
  }
}

/* Badge style */
.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background-color: #f0fdfa; /* Teal 50 */
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(14, 165, 164, 0.15);
}

.badge-icon {
  color: #0ea5a4;
}

.guide-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0ea5a4;
  text-transform: uppercase;
}

/* Heading style */
.guide-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a; /* Slate 900 */
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  max-width: 850px;
}

.guide-heading-highlight {
  color: #0ea5a4;
}

.desktop-br {
  display: block;
}

@media (max-width: 768px) {
  .desktop-br {
    display: none;
  }
}

/* Underline decoration */
.heading-underline {
  width: 50px;
  height: 3px;
  background-color: #0ea5a4;
  border-radius: 99px;
  margin-bottom: 2.25rem;
}

/* Description paragraph */
.guide-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569; /* Slate 600 */
  max-width: 1200px;
  margin-bottom: 2rem;
  font-weight: 450;
}

/* Timeline/Steps wrapper */
.timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 4.5rem;
}

.timeline-line-svg-container {
  position: absolute;
  top: 48px; /* Aligns with the middle of step icon wrapper (96px/2) */
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .timeline-line-svg-container {
    display: none;
  }
}

.timeline-wave {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline-grid {
    
    gap: 3.5rem;
  }
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Circle Step Icons */
.step-icon-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(14, 165, 164, 0.15); /* Teal border with low opacity */
  box-shadow: 0 10px 30px rgba(14, 165, 164, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
}

.timeline-step:hover .step-icon-wrapper {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 164, 0.45);
  box-shadow: 0 20px 35px rgba(14, 165, 164, 0.15);
}

.step-icon {
  width: 32px;
  height: 32px;
  color: #0ea5a4;
  transition: transform 0.3s ease;
}

.timeline-step:hover .step-icon {
  transform: scale(1.1);
}

/* Small teal bar under icon */
.step-line-indicator {
  width: 16px;
  height: 3px;
  background-color: #0ea5a4;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0ea5a4;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.step-time {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
  max-width: 220px;
}

/* Pro Tip Banner */
.pro-tip-banner {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 2rem;
  background-color: #f0fdfa; /* Teal 50 */
  border: 1px solid rgba(14, 165, 164, 0.12);
  border-radius: 9999px;
  max-width: 850px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(14, 165, 164, 0.03);
}

@media (max-width: 768px) {
  .pro-tip-banner {
    border-radius: 1.25rem;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    max-width: 90%;
  }
}

.pro-tip-icon-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(14, 165, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-tip-icon {
  width: 20px;
  height: 20px;
}

.pro-tip-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
}

.pro-tip-label {
  color: #0ea5a4;
  font-weight: 700;
  margin-right: 0.25rem;
}



.content-section{
  padding:120px 20px;
  background:#ffffff;
}

.content-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.reverse-layout{
  direction:rtl;
}

.reverse-layout .content-text{
  direction:ltr;
}

.content-image img{
  width:100%;
  height:650px;
  object-fit:cover;
  border-radius:32px;
}

.section-label{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:3px;
  color:#0ea5a4;
  margin-bottom:24px;
}

.section-heading{
  font-size:clamp(42px,1vw,68px);
  line-height:1.05;
  font-weight:800;
  color:#0f172a;
  margin-bottom:32px;
  letter-spacing:-2px;
}

.section-description{
  font-size:19px;
  line-height:2;
  color:#475569;
  margin-bottom:24px;
  font-weight:400;
}

@media(max-width:991px){

  .content-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .reverse-layout{
    direction:ltr;
  }

  .content-image img{
    height:500px;
  }

}

@media(max-width:768px){

  .content-section{
    padding:80px 20px;
  }

  .section-heading{
    font-size:35px;
    line-height:1.1;
  }

  .section-description{
    font-size:17px;
    line-height:1.9;
  }

  .content-image img{
    height:400px;
    border-radius:24px;
  }

}

/* ==========================================================================
   Premium Insight & VIP Experience Sections
   ========================================================================== */

/* Section 1: Pricing Insights (Why Foreign Profiles...) */
.premium-insight-section {
  padding: 20px 20px;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.premium-insight-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 3rem;
  width: 120px;
  height: 180px;
  opacity: 0.05;
  background-image: radial-gradient(#0ea5a4 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.insight-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 150px 0.85fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.insight-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background-color: #f0fdfa; /* Teal 50 */
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(14, 165, 164, 0.15);
}

.insight-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0ea5a4;
  text-transform: uppercase;
}

.insight-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a; /* Slate 900 */
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.insight-heading-highlight {
  color: #0ea5a4;
}

.insight-description {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #475569; /* Slate 600 */
  margin-bottom: 2.5rem;
}

/* Horizontal Feature Row */
.horizontal-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  width: 100%;
}

.feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.feature-col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.feat-col-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #0ea5a4;
}

.feat-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.3;
}

/* Middle Arc Columns */
.timeline-arc-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.timeline-arc-container {
  position: relative;
  width: 120px;
  height: 380px;
}

.timeline-arc-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arc-step {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 300px;
  z-index: 5;
}

.arc-step-1 {
  top: 10px;
  left: 70px;
}

.arc-step-2 {
  top: 162px;
  left: -8px;
}

.arc-step-3 {
  top: 314px;
  left: 70px;
}

.arc-step-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(14, 165, 164, 0.15);
  box-shadow: 0 4px 15px rgba(14, 165, 164, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.arc-step:hover .arc-step-icon-box {
  transform: scale(1.1);
  border-color: rgba(14, 165, 164, 0.4);
  box-shadow: 0 8px 20px rgba(14, 165, 164, 0.15);
}

.arc-step-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.arc-step-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0ea5a4;
  margin-bottom: 0.2rem;
}

.arc-step-info p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b; /* Slate 500 */
  max-width: 210px;
  margin: 0;
}

/* Right Visual Column */
.insight-visual-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.insight-image-wrapper {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: -100px;
  border: 12px solid var(--color-white);
  box-shadow: 0 0 0 2px #0ea5a4, 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: visible;
  z-index: 2;
}

.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Floating Badges */
.insight-floating-badge {
  position: absolute;
  bottom: 25px;
  left: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #0ea5a4;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(14, 165, 164, 0.3);
  z-index: 5;
  animation: floatOrb 6s ease-in-out infinite;
}

.insight-floating-badge span {
  font-size: 0.725rem;
  font-weight: 700;
  line-height: 1.35;
}

.insight-floating-badge .badge-svg-icon {
  margin-bottom: 0.5rem;
}

.badge-mini-icon-overlay {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

/* Section 2: VIP Experience */
.vip-experience-section {
  padding: 120px 20px;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.vip-experience-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 3rem;
  width: 120px;
  height: 120px;
  opacity: 0.05;
  background-image: radial-gradient(#0ea5a4 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.vip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vip-visual-col {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.vip-image-wrapper {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: -100px;
  border: 12px solid var(--color-white);
  box-shadow: 0 0 0 2px #0ea5a4, 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: visible;
  z-index: 2;
}

.vip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.vip-floating-badge {
  position: absolute;
  bottom: 25px;
  left: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(14, 165, 164, 0.15);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  z-index: 5;
  animation: floatOrbReverse 6s ease-in-out infinite;
}

.vip-floating-badge span {
  font-size: 0.725rem;
  font-weight: 700;
  line-height: 1.35;
  color: #475569;
}

.vip-badge-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5a4;
  margin-bottom: 0.5rem;
}

.vip-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background-color: #f0fdfa; /* Teal 50 */
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(14, 165, 164, 0.15);
}

.vip-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0ea5a4;
  text-transform: uppercase;
}

.vip-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.vip-heading-highlight {
  color: #0ea5a4;
}

.vip-description {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #475569;
}

/* Feature Cards Grid */
.vip-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.vip-card-item {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.vip-card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 164, 0.2);
  box-shadow: 0 12px 30px rgba(14, 165, 164, 0.08);
}

.vip-card-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #0ea5a4;
}

.vip-card-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.vip-card-item p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Comfort Banner */
.vip-comfort-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background-color: #f0fdfa; /* Teal 50 */
  border: 1px solid rgba(14, 165, 164, 0.12);
  border-radius: 99px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(14, 165, 164, 0.02);
}

.vip-comfort-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(14, 165, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5a4;
  flex-shrink: 0;
}

.comfort-banner-text {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #475569;
  margin: 0;
}

/* Atmosphere & Soft Blurs */
.floating-orb-blur {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.08) 0%, rgba(14, 165, 164, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.orb-blur-1 {
  top: -50px;
  right: -50px;
}

.orb-blur-2 {
  bottom: -50px;
  left: -50px;
}

/* Keyframes for Float Animations */
@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatOrbReverse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .insight-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 10px;
  }
  
  .vip-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 10px;
  }

  .insight-visual-col, .vip-visual-col {
    justify-content: center;
    order: 2; /* Move visual columns down on tablets */
  }

  .insight-content-col, .vip-content-col {
    order: 1;
  }

  .insight-image-wrapper {
    margin-right: 0;
    width: 380px;
    height: 380px;
    border-width: 10px;
  }

  .vip-image-wrapper {
    margin-left: 0;
    width: 380px;
    height: 380px;
    border-width: 10px;
  }

  .insight-floating-badge {
    left: -15px;
    bottom: 15px;
  }

  .vip-floating-badge {
    left: -15px;
    right: auto;
    bottom: 15px;
  }

  .timeline-arc-col {
    order: 3;
    margin-top: 1rem;
  }

  .timeline-arc-container {
    height: auto;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .timeline-arc-svg {
    display: none;
  }

  .arc-step {
    position: static !important;
    width: 100% !important;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  }
}

@media (max-width: 768px) {
  .premium-insight-section, .vip-experience-section {
    padding: 80px 15px;
  }

  .insight-heading, .vip-heading {
    font-size: 2rem;
  }

  .horizontal-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .feature-col {
    padding: 0.25rem 0;
  }

  .feature-col:nth-child(even) {
    border-right: none;
  }

  .feature-col:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .vip-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vip-card-item {
    padding: 1.25rem;
  }

  .vip-comfort-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 1.25rem;
  }

  .insight-image-wrapper, .vip-image-wrapper {
    width: 300px;
    height: 300px;
    border-width: 8px;
  }

  .insight-floating-badge, .vip-floating-badge {
    width: 110px;
    height: 110px;
    padding: 0.75rem;
  }

  .insight-floating-badge span, .vip-floating-badge span {
    font-size: 0.65rem;
  }
  
  .insight-floating-badge .badge-svg-icon, .vip-badge-icon-box {
    width: 24px;
    height: 24px;
    margin-bottom: 0.25rem;
  }
}

@media (max-width:768px){

  .profile-grid{
    grid-template-columns:repeat(2,1fr) !important;
    gap:12px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  
  .pricing-card {
    padding: 1.25rem !important;
  }
  
  .pricing-card .plan-name {
    font-size: 1.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .pricing-card .plan-description {
    font-size: 0.75rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
  }
  
  .pricing-card .price-container {
    margin-bottom: 1rem !important;
  }
  
  .pricing-card .price-amount {
    font-size: 1.75rem !important;
  }
  
  .pricing-card .price-symbol {
    font-size: 1.15rem !important;
  }
  
  .pricing-card .price-period {
    font-size: 0.75rem !important;
  }
  
  .pricing-card .pricing-cta {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    margin-bottom: 1.25rem !important;
    border-radius: 0.5rem !important;
  }
  
  .pricing-card .plan-features {
    gap: 0.5rem !important;
  }
  
  .pricing-card .plan-feature-item {
    font-size: 0.75rem !important;
    gap: 0.4rem !important;
  }
  
  .pricing-card .plan-feature-item svg {
    width: 14px !important;
    height: 14px !important;
    margin-top: 0.1rem !important;
  }
  
  .pricing-card.popular .popular-badge {
    font-size: 0.75rem !important;
    padding: 0.25rem 0.75rem !important;
    top: -0.875rem !important;
  }

}

@media (max-width: 768px) {

  .timeline-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px 16px;
  }

  .timeline-step{
    width:100%;
  }

  .step-text{
    max-width:100%;
  }

}

/* ==========================================================================
   Premium Experience Section (Dinner Companion UI)
   ========================================================================== */
.premium-experience-section {
  position: relative;
  background-color: var(--color-white);
  padding: 6.5rem 0;
  overflow: hidden;
}

.premium-experience-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .premium-experience-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

/* Left Content Column */
.premium-content-col {
  text-align: left;
  z-index: 5;
}

.premium-experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(14, 165, 164, 0.08);
  border: 1px solid rgba(14, 165, 164, 0.2);
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  color: #0ea5a4;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.premium-experience-badge .badge-icon {
  color: #0ea5a4;
}

.premium-experience-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.premium-experience-heading .teal-highlight {
  color: #0ea5a4;
  font-style: italic;
  font-weight: 800;
}

.premium-heading-line {
  width: 3rem;
  height: 3px;
  background-color: #0ea5a4;
  margin-bottom: 2rem;
  border-radius: 99px;
}

.premium-experience-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
}

/* Services Grid (Horizontal List) */
.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 480px) {
  .premium-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.service-icon-circle {
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(14, 165, 164, 0.05);
  border: 1px solid rgba(14, 165, 164, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5a4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-icon-circle {
  background-color: #0ea5a4;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(14, 165, 164, 0.25);
}

.service-label {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-gray-800);
}

/* Right Image Column */
.premium-image-col {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Curve Image wrapper */
.premium-image-mask-wrapper {
  position: relative;
  width: 100%;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.premium-companion-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

@media (min-width: 1024px) {
  .premium-companion-image {
    min-height: 480px;
    height: 480px;
  }
}

/* SVG curve divider overlay */
.curve-overlay-svg {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  width: 50%;
  height: calc(100% + 2px);
  z-index: 2;
  pointer-events: none;
  display: none; /* Hide on mobile/tablet since the section stacks vertically */
}

@media (min-width: 1024px) {
  .curve-overlay-svg {
    display: block;
  }
}

.curve-overlay-svg path {
  vector-effect: non-scaling-stroke;
}

/* Floating Verified Badge */
.floating-verified-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border-radius: 1.25rem;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 165, 164, 0.1);
  width: 90%;
  max-width: 21rem;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .floating-verified-badge {
    left: 2rem;
    bottom: 2rem;
    transform: none;
    width: auto;
    min-width: 19.5rem;
  }
}

.floating-verified-badge:hover {
  transform: translateY(-5px) translateX(-50%);
  box-shadow: 0 20px 45px rgba(14, 165, 164, 0.16);
}

@media (min-width: 1024px) {
  .floating-verified-badge:hover {
    transform: translateY(-5px);
  }
}

.badge-star-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(14, 165, 164, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5a4;
  flex-shrink: 0;
}

.badge-content {
  flex-grow: 1;
}

.badge-content h4 {
  font-size: 0.925rem;
  font-weight: 700;
  color: #0ea5a4;
  margin-bottom: 0.2rem;
}

.badge-content p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray-600);
  margin-bottom: 0.15rem;
}

.badge-content span {
  font-size: 0.7rem;
  color: var(--color-gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-check-shield {
  color: #0ea5a4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative dot grid patterns */
.dot-pattern {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background-image: radial-gradient(rgba(14, 165, 164, 0.2) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 1;
  pointer-events: none;
}

.dot-pattern-top {
  top: -1.75rem;
  right: 2.5rem;
}

.dot-pattern-bottom {
  bottom: -2.25rem;
  left: -2rem;
}

@media (max-width: 1023px) {
  .dot-pattern {
    display: none;
  }
  .premium-experience-section {
    padding: 4.5rem 0 6rem 0; /* Add bottom padding so floating badge has clearance */
  }
}