/* ============================================================
   Indiana Aesthetics — styles.css
   Elegant rose gold & white luxury directory theme
   ============================================================ */

:root {
  --rose-gold: #b76e79;
  --rose-gold-light: #d4a0a8;
  --rose-gold-dark: #8f4f5a;
  --cream: #fdf8f5;
  --white: #ffffff;
  --charcoal: #2c2c2c;
  --dark-gray: #4a4a4a;
  --mid-gray: #7a7a7a;
  --light-gray: #f0ebe8;
  --border: #e8ddd9;
  --gold: #c9a84c;
  --gold-light: #f0d98a;
  --shadow-sm: 0 2px 8px rgba(183,110,121,0.08);
  --shadow-md: 0 4px 20px rgba(183,110,121,0.12);
  --shadow-lg: 0 8px 40px rgba(183,110,121,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--dark-gray); line-height: 1.75; }
a { color: var(--rose-gold); text-decoration: none; }
a:hover { color: var(--rose-gold-dark); }

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { padding: 80px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--charcoal); margin-bottom: 16px; }
.section-header p { color: var(--mid-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--rose-gold), var(--gold)); margin: 16px auto 0; border-radius: 2px; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--charcoal); text-decoration: none;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; font-weight: 700; font-family: var(--font-serif);
  flex-shrink: 0;
}
.nav-logo span { color: var(--rose-gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--dark-gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--rose-gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: white !important; padding: 10px 22px; border-radius: 50px;
  font-weight: 600 !important; transition: all 0.2s !important;
  box-shadow: 0 2px 12px rgba(183,110,121,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(183,110,121,0.4) !important; color: white !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #fdf0f2 0%, #fff8f5 50%, #fdf5ee 100%);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(183,110,121,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(183,110,121,0.1); color: var(--rose-gold);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: var(--charcoal); margin-bottom: 20px; }
.hero h1 span { color: var(--rose-gold); }
.hero-sub { font-size: 1.15rem; color: var(--mid-gray); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--rose-gold); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--mid-gray); margin-top: 4px; }
.hero-visual {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  border-radius: var(--radius-lg); padding: 40px; color: white;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hero-visual::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.hero-visual-title { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 24px; opacity: 0.95; }
.featured-preview { display: flex; flex-direction: column; gap: 12px; }
.featured-card-mini {
  background: rgba(255,255,255,0.15); border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; backdrop-filter: blur(4px);
}
.featured-card-mini .mini-badge {
  background: var(--gold); color: var(--charcoal); font-size: 0.65rem;
  font-weight: 700; padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}
.featured-card-mini .mini-name { font-weight: 600; font-size: 0.9rem; }
.featured-card-mini .mini-city { font-size: 0.78rem; opacity: 0.8; }
.search-box {
  background: white; border-radius: var(--radius); padding: 8px;
  display: flex; gap: 8px; box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.search-box input {
  flex: 1; border: none; outline: none; padding: 10px 16px;
  font-size: 0.95rem; color: var(--charcoal); background: transparent;
  font-family: var(--font-sans);
}
.search-box select {
  border: none; outline: none; padding: 10px 12px;
  font-size: 0.9rem; color: var(--dark-gray); background: var(--light-gray);
  border-radius: 8px; cursor: pointer; font-family: var(--font-sans);
}
.search-box button {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: white; border: none; padding: 10px 24px; border-radius: 8px;
  font-weight: 600; cursor: pointer; font-size: 0.9rem; transition: 0.2s;
  white-space: nowrap;
}
.search-box button:hover { opacity: 0.9; transform: translateY(-1px); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all 0.2s;
  text-decoration: none; border: none; font-family: var(--font-sans);
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: white; box-shadow: 0 4px 16px rgba(183,110,121,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(183,110,121,0.45); color: white; }
.btn-outline {
  background: transparent; color: var(--rose-gold);
  border: 2px solid var(--rose-gold);
}
.btn-outline:hover { background: var(--rose-gold); color: white; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8832a);
  color: white; box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.45); color: white; }
.btn-white { background: white; color: var(--rose-gold); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--rose-gold-dark); }

/* ---- LISTING CARDS ---- */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.listing-card {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  padding: 24px; transition: all 0.2s; position: relative;
  box-shadow: var(--shadow-sm);
}
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--rose-gold-light); }
.listing-card.premier { border-color: var(--gold); border-width: 2px; }
.listing-card.premier::before {
  content: '⭐ PREMIER'; position: absolute; top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--gold), #a8832a);
  color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 0 0 8px 8px;
}
.listing-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.listing-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); }
.listing-type { font-size: 0.75rem; color: var(--rose-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.listing-city { font-size: 0.85rem; color: var(--mid-gray); margin-bottom: 10px; }
.listing-city::before { content: '📍 '; }
.listing-desc { font-size: 0.875rem; color: var(--dark-gray); line-height: 1.6; margin-bottom: 14px; }
.listing-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.listing-tag {
  background: var(--light-gray); color: var(--dark-gray);
  font-size: 0.72rem; padding: 4px 10px; border-radius: 20px; font-weight: 500;
}
.listing-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.listing-phone { font-size: 0.85rem; color: var(--mid-gray); }
.listing-link { font-size: 0.85rem; font-weight: 600; color: var(--rose-gold); }

/* ---- CITY GRID ---- */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.city-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; transition: all 0.2s; cursor: pointer;
  text-decoration: none; display: block;
}
.city-card:hover { border-color: var(--rose-gold); background: rgba(183,110,121,0.04); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.city-card-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.city-card-count { font-size: 0.78rem; color: var(--mid-gray); }

/* ---- TREATMENT GRID ---- */
.treatment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.treatment-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: all 0.2s;
  text-decoration: none; display: block;
}
.treatment-card:hover { border-color: var(--rose-gold); background: rgba(183,110,121,0.04); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.treatment-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.treatment-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.treatment-desc { font-size: 0.8rem; color: var(--mid-gray); line-height: 1.5; }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 760px; margin: 0 auto; }
.pricing-card {
  background: white; border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center; position: relative;
}
.pricing-card.featured { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.pricing-popular {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a8832a);
  color: white; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 20px; border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: var(--rose-gold); line-height: 1; margin: 16px 0 4px; }
.pricing-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 10px; }
.pricing-period { font-size: 0.85rem; color: var(--mid-gray); margin-bottom: 28px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; font-size: 0.9rem; color: var(--dark-gray); border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--rose-gold); font-weight: 700; flex-shrink: 0; }

/* ---- FORM ---- */
.form-card { background: white; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 0.9rem; font-family: var(--font-sans);
  color: var(--charcoal); background: white; transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose-gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: 50px; margin-top: 8px; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: 16px 0; font-size: 0.85rem; color: var(--mid-gray); }
.breadcrumb a { color: var(--rose-gold); }
.breadcrumb span { margin: 0 8px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #fdf0f2 0%, #fff8f5 100%);
  padding: 60px 0 48px; border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--charcoal); margin-bottom: 12px; }
.page-hero p { color: var(--mid-gray); font-size: 1.05rem; max-width: 560px; }

/* ---- WHY SECTION ---- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card { text-align: center; padding: 32px 24px; }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(183,110,121,0.1), rgba(183,110,121,0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: var(--mid-gray); }

/* ---- TESTIMONIAL ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.85rem; color: var(--charcoal); }
.testimonial-clinic { font-size: 0.78rem; color: var(--mid-gray); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  padding: 80px 0; text-align: center; color: white;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.03em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--rose-gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 16px; }

/* ---- DISCLAIMER BANNER ---- */
.disclaimer-bar {
  background: rgba(183,110,121,0.08); border: 1px solid rgba(183,110,121,0.2);
  border-radius: 8px; padding: 12px 20px; margin-bottom: 32px;
  font-size: 0.8rem; color: var(--mid-gray); text-align: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .section-alt { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .form-card { padding: 28px 20px; }
}
