/* Modern Enhanced Vida Sana Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Vida Sana Brand Colors */
  --primary-cyan: #03989e;
  --primary-dark: #026b70;
  --secondary-gray-cyan: #95b0b2;
  --secondary-light: #b8cfd1;
  --accent-orange: #FF6B35;
  --accent-yellow: #F1C40F;
  --accent-blue: #3498DB;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #03989e 0%, #026b70 100%);
  --gradient-secondary: linear-gradient(135deg, #95b0b2 0%, #7a9799 100%);
  --gradient-hero: linear-gradient(135deg, rgba(3, 152, 158, 0.9) 0%, rgba(2, 107, 112, 0.9) 100%);
  
  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing & Sizing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-hero: 0 20px 60px rgba(3, 152, 158, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(3, 152, 158, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo img {
  height: 50px;
  transition: all var(--transition-normal);
}

.header.scrolled .header__logo img {
  height: 40px;
}

.nav__list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav__list a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all var(--transition-fast);
}

.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

.nav__list a:hover {
  color: var(--primary-cyan);
}

.nav__list a:hover::after {
  width: 100%;
}

/* Header Social Media */
.nav__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--primary-cyan);
  transition: all var(--transition-fast);
  font-size: 1rem;
  text-decoration: none;
}

.nav__social a:hover {
  background: var(--primary-cyan);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav__toggle-line {
  width: 100%;
  height: 3px;
  background: var(--primary-cyan);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(3, 152, 158, 0.1) 0%, rgba(2, 107, 112, 0.05) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%2303989e" stop-opacity="0.1"/><stop offset="100%" stop-color="%2303989e" stop-opacity="0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23g)"/></svg>') no-repeat center;
  background-size: 80%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content h1 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__content p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
  transition: transform var(--transition-slow);
}

.hero__image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Section Dividers */
.section-divider {
  height: 100px;
  overflow: hidden;
  position: relative;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

/* Services Section */
.services-preview, .services {
  padding: 6rem 0;
  background: var(--light-gray);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-preview__list, .services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  filter: hue-rotate(90deg);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.5;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Wellness Tips Section */
.wellness-tips {
  padding: 6rem 0;
  background: var(--white);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tip-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--primary-cyan);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: var(--white);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--white);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-info h4 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Info Section */
.info {
  padding: 6rem 0;
  background: var(--light-gray);
}

.info__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-card h2 {
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.info-card li:last-child {
  border-bottom: none;
}

/* Contact Section */
.contact-preview, .contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
  margin: 3rem 0;
}

.contact-item {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.contact-item span {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Footer Social Media */
.footer__social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  justify-content: flex-start;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  text-decoration: none;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.footer__social a:hover {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
  color: var(--white);
  transform: translateY(-3px);
}

.social-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* About Page Specific */
.about {
  padding: 6rem 0;
  padding-top: 8rem;
}

.about__mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.mission-card, .vision-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-cyan);
}

/* Form Styles */
.contact__form {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 1rem;
  font-family: var(--font-secondary);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2303989e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(3, 152, 158, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero__content {
    order: 2;
  }
  
  .hero__image {
    order: 1;
  }
  
  .nav__list {
    gap: 1rem;
  }
  
  .hero__cta {
    justify-content: center;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .services-preview__list,
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    min-height: 350px;
    padding: 2rem;
  }
  
  .service-card h2 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .service-header {
    min-height: 70px;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-card {
    min-height: 240px;
    padding: 1.5rem;
  }
  
  .tip-card h3 {
    font-size: 1.1rem;
  }
  
  .tip-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 2rem;
    transition: right var(--transition-normal);
    z-index: 1000;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav__list a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .nav__social {
    justify-content: center;
    margin-top: 2rem;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .service-card,
  .info-card {
    padding: 1.5rem;
    min-height: 320px;
  }
  
  .service-card h2 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .service-header {
    min-height: 60px;
  }
  
  .emergency-card {
    padding: 1.5rem;
  }
  
  .emergency-btn, .urgent-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .tip-card {
    min-height: 220px;
    padding: 1.25rem;
  }
  
  .tip-card h3 {
    font-size: 1rem;
  }
  
  .tip-card p {
    font-size: 0.85rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Hero Sections with Background Images */
.services-hero,
.about-hero,
.contact-hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  margin-top: 20px;
}

.services-hero { 
  background-image: url('https://images.unsplash.com/photo-1553267570-73887f15b17a?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D?auto=format&fit=crop&w=1920&q=80');
}

.about-hero {
  background-image: url('https://images.unsplash.com/photo-1559757175-0eb30cd8c063?auto=format&fit=crop&w=1920&q=80');
}

.contact-hero {
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&q=80');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(3, 152, 158, 0.8) 0%, rgba(2, 107, 112, 0.7) 100%);
  z-index: 1;
}

.services-hero .hero-content,
.about-hero .hero-content,
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero h1,
.about-hero h1,
.contact-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Services Page Specific Styles */
.featured-service {
  position: relative;
  border: 2px solid var(--primary-cyan);
}

.service-header {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-orange);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.service-badge.confidential {
  background: var(--accent-blue);
}

.service-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-features i {
  color: var(--primary-cyan);
  font-size: 0.9rem;
}

.service-cta {
  text-align: center;
}

.emergency-section {
  margin: 4rem 0;
}

.emergency-card {
  background: linear-gradient(135deg, #FF6B35 0%, #E55039 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}

.emergency-icon {
  font-size: 4rem;
  opacity: 0.9;
}

.emergency-content h3 {
  color: white;
  margin-bottom: 1rem;
}

.emergency-content p {
  color: white;
  opacity: 1;
  font-weight: 500;
}

.emergency-contacts {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.emergency-btn, .urgent-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  justify-content: center;
}

.emergency-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.urgent-btn {
  background: white;
  color: #E55039;
  font-weight: 600;
}

.appointment-process {
  margin: 4rem 0;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-cta {
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Responsive adjustments for hero sections */
@media (max-width: 768px) {
  .services-hero,
  .about-hero,
  .contact-hero {
    min-height: 50vh;
    padding: 6rem 0 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .emergency-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .emergency-contacts {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .emergency-btn, .urgent-btn {
    flex: none;
    min-width: 250px;
    max-width: 300px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-cta {
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .services-hero,
  .about-hero,
  .contact-hero {
    min-height: 40vh;
    padding: 5rem 0 2rem;
  }
}

/* Form Message Styles */
.form-message {
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message.success {
  background: rgba(3, 152, 158, 0.1);
  border-color: var(--primary-cyan);
  color: var(--primary-dark);
}

.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #721c24;
}

.form-message i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.form-message ul {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.form-message li {
  margin-bottom: 0.25rem;
}

.form-message strong {
  font-weight: 600;
}

/* Contact Page Specific Styles */
.contact-methods {
  margin: 4rem 0;
}

/* Form Container - Constrain width and center */
.form-container {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
}

.container-inner {
  width: 100%;
  max-width: 1000px;
}

.contact__info-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.contact-method {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-top: 4px solid var(--primary-cyan);
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-method .contact-icon {
  font-size: 3rem;
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
}

.contact-method h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin: 1rem 0;
}

.contact-address {
  font-style: normal;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 1rem 0;
}

.hours-emergency {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.hours-card, .emergency-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.emergency-card {
  background: linear-gradient(135deg, #FF6B35 0%, #E55039 100%);
  color: white;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-header i {
  font-size: 1.5rem;
  color: var(--primary-cyan);
}

.card-header.emergency i {
  color: white;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.hours-item.closed {
  opacity: 0.6;
}

.day {
  font-weight: 600;
  color: var(--text-dark);
}

.time {
  color: var(--primary-cyan);
  font-weight: 500;
}

.contact-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-item i {
  color: var(--primary-cyan);
}

.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  color: var(--primary-cyan);
  margin-bottom: 0.5rem;
}

.checkbox-group {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.quick-actions {
  margin: 4rem 0;
  text-align: center;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.action-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: center;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.action-icon {
  font-size: 2.5rem;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.action-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact__info-form {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hours-emergency {
    grid-template-columns: 1fr;
  }

  .emergency-buttons {
    justify-content: center;
  }

  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .container-inner {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .form-container {
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .actions-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .header, .footer, .btn { display: none; }
  .hero, .services-hero, .about-hero, .contact-hero { min-height: auto; padding: 2rem 0; }
  * { color: black !important; background: white !important; }
}
