/* Section-Specific Styles */
/* Individual section styles: hero, about, services, prices, testimonials, FAQs, contact, footer */

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-navy);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

/* Hero background placeholder */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--color-light-grey);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Hero title */
.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: 2px;
  line-height: var(--line-height-tight);
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-left: 3px solid var(--color-white);
  border-bottom: 3px solid var(--color-white);
  transform: rotate(-45deg);
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Disable animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator {
    animation: none;
  }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
  background-color: var(--color-white);
}

/* Profile image styling */
.profile-image {
  width: 100%;
  max-width: 300px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-profile);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.profile-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(30, 67, 112, 0.2);
}

/* About text links */
.about-text a {
  font-weight: var(--font-weight-semibold);
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
  background-color: var(--color-off-white);
}

/* Service section is primarily styled in components.css */
/* Additional section-specific overrides can go here */

/* ===================================
   PRICES SECTION
   =================================== */

.prices-section {
  background-color: var(--color-white);
}

/* Pricing section is primarily styled in components.css */
/* Additional section-specific overrides can go here */

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
  background-color: var(--color-off-white);
}

/* Placeholder styling */
.testimonials-section .placeholder-text {
  color: var(--color-medium-grey);
  font-style: italic;
}

/* ===================================
   FAQS SECTION
   =================================== */

.faqs-section {
  background-color: var(--color-white);
}

/* FAQ styling is primarily in components.css */

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
  background-color: var(--color-off-white);
}

.contact-form-container {
  background-color: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  padding: var(--space-xl);
  text-align: center;
}

.contact-info-title {
  font-size: var(--font-size-h3);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.contact-email {
  margin-bottom: var(--space-md);
}

.contact-email a {
  font-weight: var(--font-weight-semibold);
  word-break: break-word;
}

.contact-description {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 100%;
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

/* Footer logo */
.footer-logo {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.footer-logo-image {
  width: 100px;
  height: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1); /* Make logo white */
  transition: opacity var(--transition-fast);
}

.footer-logo-image:hover {
  opacity: 1;
}

/* Footer navigation */
.footer-nav {
  margin-bottom: var(--space-xl);
}

.footer-link {
  color: var(--color-turquoise);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
}

.footer-link:hover {
  color: var(--color-white);
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer info */
.footer-info {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

.footer-accessibility {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
}

/* Footer social */
.footer-social {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.social-link {
  color: var(--color-turquoise);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  font-size: var(--font-size-small);
}

.social-link:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}
