:root {
  --primary-blue: #4F95ED;
  --secondary-green: #A7D5B2;
  --light-bg: #F9F9F9;
  --pure-white: #FFFFFF;
  --body-text: #666666;
  --heading-text: #333333;
  --primary-font: 'Playfair Display', serif;
  --secondary-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--secondary-font);
  color: var(--body-text);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font);
  color: var(--heading-text);
  font-weight: 700;
  line-height: 1.3;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--pure-white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 50px;
  width: auto;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-number {
  font-weight: 600;
  color: var(--heading-text);
}

.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  color: var(--heading-text);
  position: relative;
  padding: 15px 0;
  display: block;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--primary-blue);
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--heading-text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--pure-white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  color: var(--heading-text);
  border-bottom: 1px solid #eee;
}

.mobile-nav .mobile-cta {
  margin-top: 20px;
  text-align: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--heading-text);
}

/* CTA Buttons */
.primary-cta {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--pure-white);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-cta:hover {
  background: #3d7bc9;
  box-shadow: 0 5px 20px rgba(79, 149, 237, 0.4);
  transform: translateY(-2px);
}

.secondary-cta {
  display: inline-block;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-cta:hover {
  background: var(--primary-blue);
  color: var(--pure-white);
}

.tertiary-cta {
  color: var(--primary-blue);
  font-weight: 600;
  position: relative;
}

.tertiary-cta:hover {
  text-decoration: underline;
}

/* Hero Sections */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--light-bg) 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--heading-text);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--body-text);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-home.png') center/cover no-repeat;
  z-index: -1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(167, 213, 178, 0.85);
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--pure-white);
}

.page-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-services { background: linear-gradient(135deg, var(--primary-blue) 0%, #3d7bc9 100%); }
.hero-doctor { background: linear-gradient(135deg, var(--primary-blue) 0%, #3d7bc9 100%); }
.hero-essential-oils { background: linear-gradient(135deg, #8BC34A 0%, #4CAF50 100%); }
.hero-testimonials { background: linear-gradient(135deg, var(--secondary-green) 0%, #8BC34A 100%); }
.hero-faqs { background: linear-gradient(135deg, var(--primary-blue) 0%, #5C9CE6 100%); }
.hero-contact { background: linear-gradient(135deg, var(--primary-blue) 0%, #7EB3F5 100%); }

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--body-text);
}

/* Welcome Section */
.welcome-section {
  background: var(--pure-white);
}

.welcome-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.welcome-text {
  flex: 1;
}

.welcome-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.welcome-text p {
  margin-bottom: 20px;
  color: var(--body-text);
}

.welcome-image {
  flex: 1;
}

.welcome-image img {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--pure-white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--body-text);
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--pure-white);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-slide blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--heading-text);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-slide blockquote::before {
  content: '"';
  font-size: 4rem;
  font-family: var(--primary-font);
  color: var(--primary-blue);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-slide cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-blue);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: none;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}

.carousel-btn:hover {
  background: var(--primary-blue);
  color: var(--pure-white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-blue);
  transform: scale(1.2);
}

/* Why Choose Us Section */
.why-choose-section {
  background: var(--secondary-green);
  padding: 80px 0;
}

.why-choose-section .section-title h2,
.why-choose-section .section-title p {
  color: var(--heading-text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-blue);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--body-text);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #3d7bc9 100%);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  color: var(--pure-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .primary-cta {
  background: var(--pure-white);
  color: var(--primary-blue);
}

.cta-section .primary-cta:hover {
  background: var(--secondary-green);
  box-shadow: 0 5px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.site-footer {
  background: var(--heading-text);
  color: var(--pure-white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo svg {
  height: 40px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-column h4 {
  color: var(--pure-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--primary-font);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-blue);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-blue);
}

.office-hours li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--pure-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

/* Service Categories Page */
.service-categories {
  background: var(--pure-white);
}

.service-category {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.service-category:last-child {
  border-bottom: none;
}

.service-category:nth-child(even) {
  flex-direction: row-reverse;
}

.service-category-content {
  flex: 1;
}

.service-category-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-category-content h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.service-category-content p {
  color: var(--body-text);
  margin-bottom: 15px;
}

.service-category-content ul {
  list-style: none;
  margin-top: 20px;
}

.service-category-content ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.service-category-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.service-category-image {
  flex: 1;
}

.service-category-image img {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* What to Expect */
.process-section {
  background: var(--light-bg);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: var(--primary-blue);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Doctor Page */
.doctor-section {
  background: var(--pure-white);
}

.doctor-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.doctor-image {
  flex: 1;
  max-width: 500px;
}

.doctor-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.doctor-info {
  flex: 1;
}

.doctor-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.doctor-info p {
  margin-bottom: 20px;
  color: var(--body-text);
}

/* Principles Grid */
.principles-section {
  background: var(--light-bg);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.principle-card {
  background: var(--pure-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.principle-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.principle-card h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-blue);
}

/* Essential Oils Page */
.oils-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.oil-card {
  background: var(--pure-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 20px;
}

.oil-card-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.oil-card-image img {
  border-radius: 10px;
}

.oil-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.oil-card p {
  color: var(--body-text);
  font-size: 0.95rem;
}

.safety-section {
  background: var(--light-bg);
}

.safety-list {
  max-width: 800px;
  margin: 0 auto;
}

.safety-list ul {
  list-style: none;
}

.safety-list li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.safety-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: #f39c12;
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
  background: var(--pure-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--primary-font);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 15px 0;
  color: var(--body-text);
}

/* Contact Page */
.contact-section {
  background: var(--pure-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-details ul {
  list-style: none;
  margin-bottom: 30px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.contact-details li svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-form {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: var(--secondary-font);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--pure-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--body-text);
  margin-bottom: 20px;
  position: relative;
  padding-top: 20px;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  font-family: var(--primary-font);
  color: var(--primary-blue);
  position: absolute;
  top: -10px;
  left: 0;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Share Section */
.share-section {
  background: var(--secondary-green);
  text-align: center;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .welcome-content {
    flex-direction: column;
  }
  
  .welcome-content:nth-child(even) {
    flex-direction: column;
  }
  
  .doctor-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-wrap: wrap;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .header-contact .phone-number {
    display: none;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .oils-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .service-category {
    flex-direction: column !important;
    text-align: center;
  }
  
  .service-category ul li {
    text-align: left;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .hero, .page-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
