/* Gentle Touch Enterprises - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-primary: #003375;
  --color-primary-dark: #00224f;
  --color-primary-light: #0a4d9e;
  --color-secondary: #249595;
  --color-secondary-dark: #197373;
  --color-secondary-light: #eaf6f6;
  --color-accent: #f59e0b;
  --color-surface: #ffffff;
  --color-bg-alt: #f8fafc;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  color: #1e293b;
  background-color: #fcfdfd;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
}

/* Custom Gradient Utilities */
.bg-gradient-brand {
  background: linear-gradient(135deg, #003375 0%, #002454 55%, #197373 100%);
}

.bg-gradient-teal {
  background: linear-gradient(135deg, #249595 0%, #166e6e 100%);
}

.bg-gradient-soft {
  background: linear-gradient(180deg, #f0f7f9 0%, #ffffff 100%);
}

.text-gradient-brand {
  background: linear-gradient(135deg, #003375 0%, #249595 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Cards & Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 51, 117, 0.08), 0 10px 10px -5px rgba(0, 51, 117, 0.04);
  border-color: #249595;
}

/* Form Styling */
.form-input-focus:focus {
  outline: none;
  border-color: #249595;
  box-shadow: 0 0 0 3px rgba(36, 149, 149, 0.2);
}

/* Leaflet Map Height & Radius */
#shirley-map {
  min-height: 380px;
  width: 100%;
  border-radius: 1rem;
  z-index: 10;
}

/* Toast Notification */
#toast-notification {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#toast-notification.show {
  transform: translateY(0);
}

/* Modal Transitions */
.modal-backdrop {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-content {
  transform: scale(1);
}
