/* ========================================
   SUGAR DADDY PUNE - PREMIUM STYLESHEET
   Pure CSS - No Frameworks
   ======================================== */

/* ---- CSS VARIABLES ---- */
:root {
  /* Colors */
  --brand-ink: #2A2925;
  --champagne: #CAB695;
  --champagne-light: #E8DCC8;
  --aura-white: #F7F7F5;
  --charcoal: #111111;
  --pure-white: #FFFFFF;
  --text-muted: #6B6B6B;
  --border-light: rgba(202, 182, 149, 0.2);
  --border-white: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad-y: clamp(4rem, 8vw, 10rem);
  --section-pad-x: clamp(1.5rem, 6vw, 6rem);
  --container-max: 1280px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(42, 41, 37, 0.06);
  --shadow-md: 0 8px 32px rgba(42, 41, 37, 0.1);
  --shadow-lg: 0 24px 64px rgba(42, 41, 37, 0.14);
  --shadow-glow: 0 0 40px rgba(202, 182, 149, 0.15);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--brand-ink);
  background-color: var(--aura-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- TYPOGRAPHY ---- */
.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.text-display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.text-display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.text-display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.text-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
}

.text-h3 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
}

.text-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
  position: relative;
}

.section-dark {
  background-color: var(--brand-ink);
  color: var(--pure-white);
}

.section-charcoal {
  background-color: var(--charcoal);
  color: var(--pure-white);
}

.section-champagne {
  background-color: var(--champagne);
  color: var(--brand-ink);
}

/* ---- GRID SYSTEM ---- */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

.grid-6 {
  grid-template-columns: repeat(2, 1fr);
}

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

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

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

/* ---- FLEX UTILITIES ---- */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}

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

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }
.gap-8 { gap: 4rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--champagne);
  color: var(--brand-ink);
  border: 1px solid var(--champagne);
}

.btn-primary:hover {
  background-color: var(--champagne-light);
  border-color: var(--champagne-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-ink);
  border: 1px solid var(--brand-ink);
}

.btn-secondary:hover {
  background-color: var(--brand-ink);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--pure-white);
  color: var(--brand-ink);
  border: 1px solid var(--pure-white);
}

.btn-white:hover {
  background-color: var(--champagne);
  border-color: var(--champagne);
  color: var(--brand-ink);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--brand-ink);
  color: var(--pure-white);
  border: 1px solid var(--brand-ink);
}

.btn-dark:hover {
  background-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-nav-ghost {
  background-color: transparent;
  color: var(--brand-ink);
  border: 1px solid rgba(26, 26, 26, 0.2);
}

.btn-nav-ghost:hover {
  border-color: var(--brand-ink);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background-color: var(--pure-white);
  color: var(--brand-ink);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

/* ---- LIQUID GLASS EFFECT ---- */
.glass-panel {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.5) 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  mix-blend-mode: screen;
}

.glass-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  mix-blend-mode: overlay;
  z-index: 2;
}

.glass-dark {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

/* ---- CARDS ---- */
.card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.card-body {
  padding: 1.5rem;
}

.card-body-lg {
  padding: 2rem;
}

/* Glass card variant */
.card-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.card-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem var(--section-pad-x);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(247, 247, 245, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-link {
  color: var(--brand-ink);
}

.navbar.scrolled .nav-brand {
  color: var(--brand-ink);
}

.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
  transition: color var(--duration-normal) var(--ease-smooth);
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-ink);
  position: relative;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--champagne);
  transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

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

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

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brand-ink);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 247, 245, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-ink);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.mobile-nav a:hover {
  color: var(--champagne);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .mobile-menu-btn { display: none; }
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(180deg, var(--aura-white) 0%, #EDE9E0 100%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 var(--section-pad-x);
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--champagne);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--champagne);
  border-radius: var(--radius-pill);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--brand-ink);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-image-wrapper {
  margin-top: 4rem;
  width: 100%;
  max-width: 1100px;
  padding: 0 var(--section-pad-x);
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--champagne);
}

@media (min-width: 1024px) {
  .hero {
    padding-bottom: 5rem;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header-left {
  text-align: left;
  margin: 0 0 4rem 0;
  max-width: 600px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--champagne);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

/* ---- FEATURE CARDS ---- */
.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--champagne-light), var(--champagne));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-ink);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--brand-ink);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---- AREA CARDS (Pune Locations) ---- */
.area-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.area-grid {
  grid-template-columns: 1fr;
}

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

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

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.area-card:hover img {
  transform: scale(1.08);
}

.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 41, 37, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.area-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 0.25rem;
}

.area-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- STEPS / HOW IT WORKS ---- */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--champagne-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-ink);
  flex-shrink: 0;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---- CONTENT WITH IMAGE ---- */
.content-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.content-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-split-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .content-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .content-split-img img {
    aspect-ratio: 3 / 4;
  }
}

/* ---- FAQ ACCORDION ---- */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  padding-right: 2rem;
  color: var(--brand-ink);
}

.faq-question:hover h3 {
  color: var(--champagne);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-smooth), opacity var(--duration-normal) var(--ease-smooth);
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- BLOG CARDS ---- */
.blog-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 500;
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--brand-ink);
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 1px solid rgba(42, 41, 37, 0.15);
  border-radius: var(--radius-md);
  background: var(--pure-white);
  color: var(--brand-ink);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(202, 182, 149, 0.15);
}

.form-input::placeholder {
  color: rgba(42, 41, 37, 0.4);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.form-input-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--pure-white);
}

.form-input-dark:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(202, 182, 149, 0.2);
}

.form-input-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-error {
  font-size: 0.8125rem;
  color: #E05252;
  margin-top: 0.375rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(202, 182, 149, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

/* ---- LOGIN PAGE ---- */
.login-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--aura-white) 0%, #EDE9E0 50%, var(--champagne-light) 100%);
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.login-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-card .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.login-card .form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.login-card .checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.login-card .checkbox-wrap input {
  accent-color: var(--champagne);
  width: 16px;
  height: 16px;
}

.login-card .forgot-link {
  color: var(--champagne);
  font-weight: 500;
}

.login-card .forgot-link:hover {
  text-decoration: underline;
}

.login-card .btn {
  width: 100%;
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.login-footer a {
  color: var(--champagne);
  font-weight: 500;
}

.login-faq {
  width: 100%;
  max-width: 840px;
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.login-faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

.login-faq .section-label {
  display: block;
  text-align: center;
}

.login-faq-list {
  display: grid;
  gap: 1.25rem;
}

.login-faq-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.login-faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--brand-ink);
}

.login-faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  background-color: var(--brand-ink);
  color: var(--pure-white);
  padding: 5rem 0 2.5rem;
}

.footer-top {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 300px;
}

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

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
  margin-bottom: 1.25rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-column a:hover {
  color: var(--champagne);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8125rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--champagne);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 2fr;
  }
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-ink);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-smooth);
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--champagne);
  color: var(--brand-ink);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(202, 182, 149, 0.2); }
  50% { box-shadow: 0 0 40px rgba(202, 182, 149, 0.4); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s var(--ease-smooth) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s var(--ease-smooth) forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- PAGE HEADER (for inner pages) ---- */
.page-header {
  padding-top: 140px;
  padding-bottom: 4rem;
  text-align: center;
  background: linear-gradient(180deg, #EDE9E0 0%, var(--aura-white) 100%);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--champagne);
}

.breadcrumb-separator {
  color: var(--champagne);
}

/* ---- STATS ---- */
.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* ---- DIVIDER ---- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--champagne-light));
  margin: 2rem 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ---- TAG / BADGE ---- */
.tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  background: rgba(202, 182, 149, 0.12);
  color: var(--champagne);
  border: 1px solid var(--border-light);
}

/* ---- QUOTE BLOCK ---- */
.quote-block {
  border-left: 3px solid var(--champagne);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brand-ink);
  line-height: 1.6;
}

/* ---- CHECK LIST ---- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

.check-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- LEGAL PAGES ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ---- RESPONSIVE UTILITIES ---- */
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-grid { display: grid; }
  .md-hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg-flex { display: flex; }
  .lg-grid { display: grid; }
  .lg-hidden { display: none; }
}

/* ---- PRINT STYLES ---- */
@media print {
  .navbar, .back-to-top, .hero-scroll-indicator, .mobile-menu-btn {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
