/* ==========================================================================
   FISIOES CLÍNICA ESTÉTICA SANTANA - DESIGN SYSTEM & STYLESHEET
   Developed by LTM Digital
   ========================================================================== */

/* 1. CSS VARIABLES & COLOR PALETTE */
:root {
  /* Colors strictly matching brand identity */
  --bg-offwhite: #F8F5F1;
  --bg-beige-soft: #EFE7DF;
  --bg-white: #FFFFFF;
  --bg-dark-graphite: #1E1B1A;
  --bg-dark-card: #252220;
  
  --text-main: #2D2A28;
  --text-secondary: #6A6662;
  --text-light: #F8F5F1;
  --text-muted: #9E9A95;

  --gold-soft: #C6A15B;
  --gold-deep: #A98341;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C6A15B 100%);

  --turq-main: #43C7C8;
  --turq-deep: #26A7A9;
  --turq-gradient: linear-gradient(135deg, #43C7C8 0%, #26A7A9 100%);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Shadows */
  --shadow-sm: 0 4px 12px rgba(45, 42, 40, 0.04);
  --shadow-md: 0 10px 30px rgba(45, 42, 40, 0.08);
  --shadow-lg: 0 20px 45px rgba(45, 42, 40, 0.12);
  --shadow-gold: 0 8px 25px rgba(198, 161, 91, 0.25);
  --shadow-turq: 0 8px 25px rgba(67, 199, 200, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-offwhite);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* 3. TYPOGRAPHY HELPERS */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

.text-serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-soft);
}

.font-gold {
  color: var(--gold-soft) !important;
}

.text-center { text-align: center; }
.margin-top-30 { margin-top: 30px; }
.margin-top-40 { margin-top: 40px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-header {
  margin-bottom: 50px;
}

.section-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-headline {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

.gold-accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px 0 24px 0;
  border-radius: 2px;
}

/* 4. BUTTONS & BADGES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--turq-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-turq);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(67, 199, 200, 0.45);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-main);
  border: 1.5px solid var(--gold-soft);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-beige-soft);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-header {
  background: var(--turq-main);
  color: #FFFFFF;
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

.btn-header:hover {
  background: var(--turq-deep);
  box-shadow: var(--shadow-turq);
}

.btn-card {
  width: 100%;
  background: var(--bg-offwhite);
  color: var(--text-main);
  border: 1px solid var(--gold-soft);
  font-size: 0.9rem;
  padding: 12px;
  margin-top: 16px;
}

.btn-card:hover {
  background: var(--turq-main);
  color: #FFFFFF;
  border-color: var(--turq-main);
}

.btn-outline-turq {
  border: 1.5px solid var(--turq-main);
  color: var(--turq-deep);
  padding: 14px 32px;
}

.btn-outline-turq:hover {
  background: var(--turq-main);
  color: #FFFFFF;
}

.btn-cta-gold {
  background: var(--gold-gradient);
  color: #1E1B1A;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-cta-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(198, 161, 91, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-dark-graphite);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* 5. HEADER STYLES */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(248, 245, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(239, 231, 223, 0.8);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--turq-main);
  transition: width var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* 6. HERO SECTION STYLES */
.hero-section {
  padding: 60px 0 90px 0;
  background: linear-gradient(180deg, var(--bg-offwhite) 0%, var(--bg-beige-soft) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67, 199, 200, 0.12);
  border: 1px solid rgba(67, 199, 200, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--turq-deep);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 42, 40, 0.1);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.stars {
  color: #F59E0B;
  letter-spacing: 2px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--bg-beige-soft);
  z-index: 2;
}

.hero-floating-card.top-right {
  top: -20px;
  right: -20px;
}

.hero-floating-card.bottom-left {
  bottom: -20px;
  left: -20px;
}

.card-icon {
  font-size: 1.4rem;
}

.card-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.card-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--gold-deep);
}

/* 7. PROOFS BAR STYLES */
.proofs-bar {
  background: var(--bg-white);
  padding: 32px 0;
  border-top: 1px solid var(--bg-beige-soft);
  border-bottom: 1px solid var(--bg-beige-soft);
}

.proofs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.proof-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number small {
  font-size: 1.2rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--bg-beige-soft);
}

/* 8. SOBRE SECTION STYLES */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(30, 27, 26, 0.92);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.exp-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 2px;
}

.exp-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-beige-soft);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.feature-icon {
  font-size: 1.5rem;
}

.about-feature-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.about-feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.about-quote {
  border-left: 3px solid var(--gold-soft);
  padding-left: 20px;
  font-style: italic;
  color: var(--text-main);
}

.quote-author {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: 8px;
}

/* 9. TREATMENTS SECTION STYLES */
.treatments-section {
  background: var(--bg-beige-soft);
}

.treatment-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--turq-main);
  color: #FFFFFF;
  box-shadow: var(--shadow-turq);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.treatment-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  border: 1px solid rgba(239, 231, 223, 0.8);
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}

.card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--turq-deep);
  background: rgba(67, 199, 200, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.card-benefits {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

/* 10. RESULTS SECTION STYLES */
.results-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 30px;
}

.result-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-beige-soft);
}

.result-image-box {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.result-card:hover .result-img {
  transform: scale(1.04);
}

.result-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(30, 27, 26, 0.85);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.result-details {
  padding: 24px;
}

.result-details h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.result-details p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.results-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* 11. DIFFERENTIALS STYLES */
.differentials-section {
  background: var(--bg-offwhite);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.diff-card {
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-beige-soft);
  box-shadow: var(--shadow-sm);
}

.diff-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 16px;
}

.diff-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* 12. ENVIRONMENT SECTION STYLES */
.environment-section {
  background: var(--bg-beige-soft);
}

.environment-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.env-lead {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.env-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.env-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.env-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.env-img-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.env-img-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* 13. REVIEWS SECTION STYLES */
.reviews-section {
  background: var(--bg-white);
}

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-offwhite);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--bg-beige-soft);
  margin-top: 20px;
}

.google-logo-icon {
  width: 32px;
  height: 32px;
  background: #4285F4;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 6px;
}

.score-num {
  font-weight: 700;
  font-size: 1.2rem;
}

.score-stars {
  color: #F59E0B;
}

.google-count {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.review-card {
  background: var(--bg-offwhite);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-beige-soft);
  box-shadow: var(--shadow-sm);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--turq-main);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
}

.review-stars {
  color: #F59E0B;
  font-size: 0.85rem;
}

.verified-badge {
  margin-left: auto;
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 600;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.5;
}

/* 14. INSTAGRAM SECTION STYLES */
.instagram-section {
  background: var(--bg-beige-soft);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.insta-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 26, 0.7);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-card:hover img {
  transform: scale(1.06);
}

/* 15. LOCATION SECTION STYLES */
.location-section {
  background: var(--bg-offwhite);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-beige-soft);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-icon {
  font-size: 1.3rem;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.link-styled {
  color: var(--turq-deep);
  font-weight: 600;
}

.link-styled:hover {
  text-decoration: underline;
}

.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 16. FINAL CTA STYLES */
.final-cta-section {
  padding: 60px 0;
  background: var(--bg-offwhite);
}

.cta-box-dark {
  background: linear-gradient(135deg, #1E1B1A 0%, #2A2624 100%);
  color: #FFFFFF;
  padding: 70px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.3);
}

.cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-title {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.cta-microtext {
  display: block;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 17. FOOTER STYLES */
.site-footer {
  background: #151312;
  color: #FFFFFF;
  padding: 70px 0 30px 0;
  border-top: 1px solid #282422;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: #A09C96;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-soft);
  text-decoration: underline;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #A09C96;
}

.footer-links a:hover {
  color: var(--turq-main);
}

.footer-address {
  font-size: 0.88rem;
  color: #A09C96;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #252220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: #807B75;
}

.ltm-credit a {
  color: var(--gold-soft);
  font-weight: 600;
}

/* 18. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-container,
  .about-grid,
  .environment-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-offwhite);
    padding: 30px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .header-actions .btn-header {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-img {
    height: 380px;
  }

  .hero-floating-card {
    display: none;
  }

  .section-headline {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-box-dark {
    padding: 40px 20px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}
