/* 
   Clínica das Avenidas - CSS Stylesheet
   Awards Style Layout & Typography
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- THEME DEFINITIONS --- */
:root {
  /* Option 1: Classic Premium (Default) */
  --primary-color: #0B1B3D;       /* Deep Navy */
  --primary-hover: #162c5b;
  --accent-color: #C5A880;        /* Gold/Champagne */
  --accent-hover: #b3956d;
  --bg-color: #FAF9F6;            /* Cream/Off-white */
  --bg-secondary: #FFFFFF;
  --bg-dark: #070F20;             /* Very Dark Navy for dark sections */
  --text-color: #1E293B;          /* Slate 800 */
  --text-muted: #64748B;          /* Slate 500 */
  --text-light: #F8FAFC;          /* Slate 50 */
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --border-color: rgba(197, 168, 128, 0.25);
  --shadow-color: rgba(11, 27, 61, 0.06);
  --pulse-glow: rgba(197, 168, 128, 0.4);
}

[data-theme="organic"] {
  /* Option 2: Modern Organic */
  --primary-color: #1E352F;       /* Deep Sage Green */
  --primary-hover: #294940;
  --accent-color: #A3B899;        /* Soft Eucalyptus */
  --accent-hover: #8fA684;
  --bg-color: #F5F4F0;            /* Warm Alabaster */
  --bg-secondary: #FFFFFF;
  --bg-dark: #12211D;             /* Dark Sage */
  --text-color: #2D3748;          /* Slate 800-ish */
  --text-muted: #718096;
  --text-light: #EDF2F7;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --border-color: rgba(163, 184, 153, 0.35);
  --shadow-color: rgba(30, 53, 47, 0.06);
  --pulse-glow: rgba(163, 184, 153, 0.5);
}

[data-theme="minimalist"] {
  /* Option 3: Cyber Minimalist */
  --primary-color: #0B0B0C;       /* Deep Charcoal */
  --primary-hover: #1A1A1C;
  --accent-color: #2563EB;        /* Electric Blue */
  --accent-hover: #1D4ED8;
  --bg-color: #F8F9FA;            /* Ice White */
  --bg-secondary: #FFFFFF;
  --bg-dark: #000000;             /* Pure Black */
  --text-color: #111827;
  --text-muted: #6B7280;
  --text-light: #F3F4F6;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --border-color: rgba(37, 99, 235, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.08);
  --pulse-glow: rgba(37, 99, 235, 0.4);
}

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

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  transition: background-color 0.6s ease, color 0.6s ease, font-family 0.6s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  transition: color 0.6s ease, font-family 0.6s ease;
}

p, span, li, input, textarea, button {
  transition: color 0.6s ease, font-family 0.6s ease;
}

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

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 40px;
  max-width: 800px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s var(--transition-bezier);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-secondary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}

/* --- HEADER & NAVBAR --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(250, 249, 246, 0.8);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.6s ease, border-color 0.6s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo svg {
  fill: var(--accent-color);
  width: 32px;
  height: 32px;
  transition: transform 0.4s var(--transition-bezier);
}

.logo:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  color: var(--text-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-contact {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* --- THEME SWITCHER WIDGET --- */
.theme-switcher-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 30px var(--shadow-color);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: border 0.6s ease, box-shadow 0.6s ease;
}

.theme-switcher-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.theme-options {
  display: flex;
  gap: 8px;
}

.theme-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.theme-btn:hover {
  transform: scale(1.15);
}

.theme-btn.active {
  border-color: var(--primary-color);
}

.theme-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--primary-color);
  color: var(--bg-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.theme-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.theme-btn-classic { background: linear-gradient(135deg, #0B1B3D 50%, #C5A880 50%); }
.theme-btn-organic { background: linear-gradient(135deg, #1E352F 50%, #A3B899 50%); }
.theme-btn-minimalist { background: linear-gradient(135deg, #0B0B0C 50%, #2563EB 50%); }

/* --- HERO SECTION --- */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 30px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 520px;
}

.hero-img-container {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px var(--shadow-color);
  position: relative;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--transition-bezier);
}

.hero-media:hover img {
  transform: scale(1.05);
}

/* Decorative geometric frames for awards look */
.hero-deco-frame {
  position: absolute;
  border: 1px solid var(--accent-color);
  width: 100%;
  height: 100%;
  top: 15px;
  left: -15px;
  border-radius: 8px;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.6s var(--transition-bezier);
}

.hero-media:hover .hero-deco-frame {
  transform: translate(-5px, 5px);
}

/* --- STATS SECTION --- */
.stats {
  padding: 60px 0;
  background-color: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid var(--border-color);
  padding: 10px 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --- LEGACY SECTION --- */
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.legacy-text {
  max-width: 580px;
}

.legacy-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.legacy-highlight {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary-color);
  border-left: 3px solid var(--accent-color);
  padding-left: 20px;
  margin: 30px 0;
  line-height: 1.4;
}

.legacy-directors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.director-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.4s var(--transition-bezier);
}

.director-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.director-photo {
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.director-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  border-radius: 6px;
  padding: 12px 12px 0 12px;
  box-sizing: border-box;
  transition: transform 0.6s var(--transition-bezier), background-color 0.6s ease, border-color 0.6s ease;
}

.director-card:hover .director-photo img {
  transform: scale(1.08) translateY(-5px);
  border-color: var(--accent-color);
}

.director-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 5px;
  display: block;
}

.director-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

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

.legacy-visual {
  position: relative;
}

.legacy-badge-box {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legacy-badge-box h3 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.legacy-badge-box p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 320px;
  margin: 0 auto;
}

.legacy-badge-year {
  font-family: var(--font-heading);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  bottom: -40px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
}

/* --- DIFFERENTIATORS SECTION --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.diff-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 50px 40px;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s var(--transition-bezier);
  box-shadow: 0 10px 30px var(--shadow-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.diff-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.diff-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  fill: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--accent-color);
}

.diff-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Special Highlight Card: Emergency Service */
.diff-card.highlight {
  border: 2px solid var(--accent-color);
  box-shadow: 0 15px 35px var(--pulse-glow);
  position: relative;
  overflow: hidden;
}

.diff-card.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.badge-emergency {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: #EF4444; /* Alert color */
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pulse-emergency 2s infinite;
}

.badge-emergency span {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}

@keyframes pulse-emergency {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* --- BOOKING & CONTACT SECTION --- */
.contact-section {
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.info-content p, .info-content a {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.5;
}

.hours-widget {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
}

.hours-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  font-size: 0.95rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
}

.hours-time {
  color: var(--text-muted);
}

.hours-time.special {
  color: #EF4444;
  font-weight: 600;
}

/* Booking Form */
.booking-form-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 20px 50px var(--shadow-color);
}

.booking-form-card h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-color);
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--pulse-glow);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C5A880'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 20px;
  padding-right: 45px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: block;
}

.form-status.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #B91C1C;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px 0;
  transition: background-color 0.6s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
  margin-bottom: 30px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-light);
}

.social-link:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}

.social-link:hover svg {
  fill: var(--primary-color);
}

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 25px;
}

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

.footer-links a {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p, .footer-contact-item a {
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.5);
}

/* --- ANIMATION EFFECTS --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-bezier), transform 0.8s var(--transition-bezier);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for scroll animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .hero-container {
    gap: 40px;
  }
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
  }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-content {
    align-items: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-media {
    max-width: 600px;
    margin: 0 auto;
    height: 450px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-item {
    border-right: none;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }
  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .legacy-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .nav-links, .nav-cta .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    gap: 15px;
  }
  
  /* Mobile Navigation Menu */
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 24px;
    gap: 20px;
    box-shadow: 0 10px 20px var(--shadow-color);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-item:nth-child(odd) {
    border-right: none;
  }
  .stat-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .booking-form-card {
    padding: 30px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .theme-switcher-wrap {
    bottom: 20px;
    right: 20px;
    padding: 6px 12px;
  }
  .theme-switcher-label {
    display: none;
  }
}
