/* Custom Variables and Refined Senior UI Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
  --navy: #001f3f;
  --gold: #D4AF37;
  --mint: #e0f2f1; /* Soft mint for backgrounds */
  --accent-mint: #26a69a; /* Stronger mint for details */
  --text-main: #2c3e50;
  --bg-white: #ffffff;
  --font-base: 18px;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: var(--font-base);
  color: var(--text-main);
  line-height: 1.8;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Accessibility: Clear contrast and large touch targets */
button, .btn {
  min-height: 48px;
  min-width: 48px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Service Cards Hover */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 31, 63, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 31, 63, 0.08);
  border-color: var(--gold);
}

/* Glassmorphism for Header */
header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-white);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Footer & Decorative elements */
.gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F9E2AF 50%, #D4AF37 100%);
}

.navy-gradient {
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
}

/* Specific Senior UX adjustments */
p {
  max-width: 70ch;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
