/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Luxury Design System */
:root {
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette */
  --bg-deep: hsl(220, 25%, 5%);
  --bg-card: hsl(220, 25%, 8%);
  --bg-card-hover: hsl(220, 25%, 12%);
  
  --primary: hsl(41, 62%, 56%); /* Gold / Champagne */
  --primary-hover: hsl(41, 72%, 66%);
  --primary-glow: hsla(41, 62%, 56%, 0.15);
  --secondary: hsl(340, 75%, 55%); /* Rose / Crimson */
  --secondary-hover: hsl(340, 85%, 65%);
  
  --text-main: hsl(220, 20%, 95%);
  --text-muted: hsl(220, 15%, 70%);
  --text-dark: hsl(220, 25%, 15%);
  
  --border-glass: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(13, 17, 23, 0.7);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
  --glow-gold: 0 0 25px rgba(201, 160, 84, 0.2);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  color: #fff;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  min-width: 0;
}

.glass-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
  border-color: rgba(201, 160, 84, 0.2);
  box-shadow: var(--shadow-premium), var(--glow-gold);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  min-width: 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 65px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  min-width: 0;
}

.logo img {
  width: auto;
  max-width: min(220px, 58vw);
}

.logo span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(41, 55%, 45%) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 15px rgba(201, 160, 84, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 160, 84, 0.4), var(--glow-gold);
  color: var(--bg-deep);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--secondary) 0%, hsl(340, 70%, 45%) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230, 38, 102, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 38, 102, 0.4);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 80% 20%, hsla(41, 62%, 56%, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, hsla(340, 75%, 55%, 0.06) 0%, transparent 50%);
  width: 100%;
  overflow: hidden;
}

.hero > .container {
  min-width: 0;
  max-width: 900px;
  transform: translateY(8vh);
}

.hero h1 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(201, 160, 84, 0.1);
  border: 1px solid rgba(201, 160, 84, 0.2);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Card Registration Form */
.reg-card {
  width: 100%;
}

.reg-card h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(201, 160, 84, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gender-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gender-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gender-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.gender-btn.active {
  border-color: var(--primary);
  background: rgba(201, 160, 84, 0.08);
  color: var(--primary);
}

/* Feature/Marketing Sections */
.section-padding {
  padding: 7rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 160, 84, 0.1), rgba(230, 38, 102, 0.05));
  border: 1px solid rgba(201, 160, 84, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Profile Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.profile-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.profile-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.profile-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, hsl(220, 25%, 8%), hsl(220, 25%, 15%));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
}

.profile-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px); /* Blurred image preview for un-registered users */
  opacity: 0.55;
  transition: var(--transition-smooth);
}

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

.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.95) 40%, rgba(10, 12, 16, 0.6) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.profile-name-age {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-tag {
  align-self: flex-start;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(201, 160, 84, 0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.profile-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 23, 0.15);
  backdrop-filter: blur(8px);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.profile-blur-overlay .btn-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-blur-overlay .btn-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Cities Section */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.city-card {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
}

.city-count {
  font-size: 0.85rem;
  color: var(--primary);
  background: rgba(201, 160, 84, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* Reviews/Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.review-avatar-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.review-details {
  display: flex;
  flex-direction: column;
}

.review-role {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: hsl(220, 25%, 3%);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem;
  margin-top: auto;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-card-hover);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(13, 17, 23, 0.4);
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
}

/* Blog layouts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.blog-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, hsl(220, 25%, 8%), hsl(220, 25%, 15%));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Article Layout */
.article-header {
  padding-top: 150px;
  padding-bottom: 3rem;
  text-align: center;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.article-body h2 {
  text-align: left;
  margin: 2.5rem 0 1.25rem;
  font-size: 1.75rem;
}

.article-body h2::after {
  margin: 0.5rem 0 0;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-image {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-glass);
}

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .badge {
    align-self: center;
  }
  
  .hero-description {
    margin: 0 auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-container {
    height: 72px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100dvh - 72px);
    background: var(--bg-deep);
    border-top: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .nav-cta {
    display: none; /* Collapsed on mobile, embedded inside links instead */
  }

  header.scrolled .nav-links {
    top: 65px;
  }

  .nav-links .mobile-cta {
    display: block !important;
    width: 100%;
  }
  .nav-links .mobile-cta .btn {
    display: flex;
    width: 100%;
    margin: 0.5rem 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .hero > .container {
    gap: 1.75rem !important;
    transform: translateY(7svh);
  }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 3.25rem) !important;
    line-height: 1.12 !important;
  }

  .hero .btn {
    width: 100%;
    max-width: 21rem;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  h2 {
    margin-bottom: 2.25rem;
  }

  .glass-card [style*="display: flex"],
  .seo-text [style*="display: flex"] {
    flex-wrap: wrap;
  }

  .glass-card [style*="display: flex"] .btn {
    flex: 1 1 10rem;
  }

  .cities-grid,
  .showcase-grid,
  .features-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .city-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .article-header {
    padding-top: 120px;
  }

  .article-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .glass-card {
    padding: 1.25rem;
  }
  .form-row, .gender-select {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
    padding: 0.85rem 1rem;
  }
  .hero .btn {
    padding: 1rem 1.2rem !important;
    font-size: clamp(0.92rem, 4.5vw, 1rem) !important;
  }
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 4.2rem) !important;
}

.responsive-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .responsive-grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem !important;
  }
}
