/* ============================================
   Revitalize - Stylesheet
   Wellness editorial publication
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green: #0B724C;
  --green-dark: #095e3e;
  --green-light: #0d8a5c;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --gray: #555555;
  --dark-gray: #333333;
  --footer-dark: #191919;
  --gold: #DAA520;
  --max-width: 1040px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--green-dark);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary,
.btn-green {
  background-color: var(--green);
  color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-green:hover {
  background-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background-color: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background-color: var(--off-white);
  color: var(--green);
  box-shadow: 0 2px 5px rgba(165, 165, 165, 0.5);
}

.btn-white:hover {
  color: var(--green);
  box-shadow: 0 9px 5px rgba(165, 165, 165, 0.35);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--green);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
  font-weight: bold;
}

.top-bar .container,
.top-bar .top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--white);
  font-weight: bold;
}

.top-bar a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Site Header / Navigation --- */
.site-header {
  background: var(--white);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

/* Also support main-nav as wrapper */
.main-nav {
  background: var(--white);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Logo --- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 38px;
  }
}

/* --- Newsletter Signup --- */
.newsletter {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 260px;
  padding: 14px 18px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 2px solid #ddd;
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--green);
}

.newsletter-form button {
  padding: 14px 28px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: bold;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--green-dark);
}

.newsletter-note {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}

/* Newsletter on dark backgrounds */
.contact-cta .newsletter-note,
.bg-dark .newsletter-note {
  color: rgba(255, 255, 255, 0.75);
}

.contact-cta .newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.95);
}

/* --- Navigation Menu --- */
.nav-list,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item,
.nav-list > li,
.nav-menu > li {
  position: relative;
}

.nav-link,
.nav-list > li > a,
.nav-menu > li > a {
  display: block;
  padding: 10px 18px;
  color: var(--green);
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-list > li > a:hover,
.nav-menu > li > a:hover {
  color: var(--green-dark);
}

/* Dropdown Arrow */
.has-dropdown > a::after {
  content: ' \25BE';
  font-size: 12px;
}

/* Dropdown Menu */
.dropdown,
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green);
  min-width: 220px;
  padding: 5px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  z-index: 200;
  list-style: none;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a,
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s ease;
}

.dropdown li a:hover,
.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Hamburger Menu */
.hamburger,
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-line,
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--green);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1),
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2),
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3),
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 100%);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--green);
  font-style: italic;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

/* Hero placeholder class maintained for HTML compatibility */
.hero.hero-placeholder {
  background-image: url('../images/hero.jpg');
}

/* --- CTA Bar --- */
.cta-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.cta-bar .container,
.cta-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cta-bar p {
  font-weight: bold;
  font-size: 18px;
}

/* --- Free Download Section --- */
.free-download {
  padding: 40px 0;
  text-align: center;
  background: var(--light-gray);
}

.free-download .download-link {
  font-weight: bold;
  font-size: 18px;
}

.free-download .webinar-text {
  font-size: 16px;
  color: var(--gray);
  margin: 10px 0 5px;
}

.free-download h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 5px;
}

.free-download .subtext {
  color: var(--gray);
  font-style: italic;
}

/* --- Section Styles --- */
.section-heading,
.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--green);
  margin-bottom: 20px;
}

/* --- Services Section (Homepage) --- */
.services-section {
  padding: 60px 0;
}

.services-section .section-heading {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.services-list h3,
.services-description h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--green);
  margin-bottom: 15px;
}

.services-list ul {
  list-style: disc;
  padding-left: 20px;
}

.services-list ul li {
  padding: 4px 0;
  color: var(--gray);
  font-size: 15px;
}

.services-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-description p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- Service Cards (Services page) --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* --- Products Section --- */
.products-section {
  padding: 60px 0;
  background: var(--light-gray);
  text-align: center;
}

.products-section .section-heading {
  text-align: center;
}

.products-section p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.8;
}

/* --- Health Score Section --- */
.health-score-section {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
}

.health-score-section .section-heading {
  text-align: center;
}

.health-score-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: var(--gray);
  line-height: 1.8;
}

/* --- Challenge / 10-Day Section --- */
.ten-day-challenge,
.challenge-section {
  padding: 50px 0;
  background: var(--green);
  text-align: center;
}

.ten-day-challenge h2,
.challenge-section h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--white);
  margin-bottom: 25px;
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.testimonials-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 60px;
  color: var(--green);
  opacity: 0.3;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
}

.testimonial-card blockquote {
  padding-top: 25px;
}

.testimonial-card blockquote p {
  font-style: italic;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial-card cite {
  font-weight: bold;
  color: var(--dark-gray);
  font-size: 13px;
  text-transform: uppercase;
  font-style: normal;
  display: block;
}

/* --- Contact CTA Section --- */
.contact-cta {
  padding: 80px 0;
  background-color: var(--footer-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  box-shadow: inset 0 8px 12px rgba(0, 0, 0, 0.4);
}

.contact-cta h2 {
  font-family: var(--font-heading);
  font-size: 35px;
  color: var(--off-white);
  margin-bottom: 30px;
}

/* --- Footer --- */
.site-footer,
.footer {
  background: var(--white);
  padding: 50px 0 30px;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  min-width: 200px;
}

.footer-info {
  flex: 1;
  min-width: 280px;
}

.footer-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark-gray);
  margin-bottom: 15px;
  line-height: 1.25;
}

.footer-info p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav ul li {
  margin-bottom: 5px;
}

.footer-nav ul li a {
  color: var(--green);
  font-size: 14px;
  font-weight: bold;
  line-height: 2.35;
}

.footer-nav ul li a:hover {
  color: var(--green-dark);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--green);
  color: var(--white) !important;
  border-radius: 4px;
  font-size: 13px;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: var(--green-dark);
  color: var(--white) !important;
}

/* --- Copyright Bar --- */
.copyright-bar {
  background: var(--green);
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.copyright-bar p {
  color: #eaeaea;
  font-size: 14px;
}

.copyright-bar a {
  color: var(--white);
  font-weight: bold;
}

.copyright-bar a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--white);
  opacity: 0.9;
}

/* --- Content Pages --- */
.page-content {
  padding: 60px 0;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  margin-top: 40px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green);
  margin-bottom: 15px;
  margin-top: 30px;
}

.page-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.page-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-content ul li {
  color: var(--gray);
  padding: 4px 0;
  line-height: 1.7;
}

.page-content .highlight-text {
  color: var(--green);
  font-weight: bold;
}

/* --- Two Column Cards (Contact page) --- */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.info-card {
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--green);
  margin-bottom: 15px;
  margin-top: 0;
}

.info-card p {
  margin-bottom: 20px;
}

/* --- Staff Cards --- */
.staff-grid {
  display: grid;
  gap: 50px;
  margin-top: 30px;
}

.staff-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: start;
}

.staff-photo {
  width: 250px;
  height: 300px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-photo-placeholder {
  width: 250px;
  height: 300px;
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.staff-photo-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.staff-info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--green);
  margin-bottom: 5px;
  margin-top: 0;
}

.staff-info .credentials,
.staff-info .staff-title {
  font-size: 14px;
  color: var(--gray);
  font-weight: bold;
  margin-bottom: 15px;
}

.staff-info p {
  color: var(--gray);
  line-height: 1.8;
}

.staff-info ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.staff-info ul li {
  color: var(--gray);
  padding: 3px 0;
  font-size: 14px;
}

/* --- FAQ Styles --- */
.faq-section {
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-section-header {
  background: var(--green);
  color: var(--white);
  padding: 15px 20px;
  font-family: var(--font-heading);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-section-header:hover {
  background: var(--green-dark);
}

.faq-section-header::after {
  content: '+';
  font-size: 24px;
  font-weight: bold;
}

.faq-section.open .faq-section-header::after {
  content: '\2212';
}

.faq-section-body {
  display: none;
  padding: 10px;
}

.faq-section.open .faq-section-body {
  display: block;
}

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

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

.faq-question {
  padding: 15px 20px;
  font-weight: bold;
  color: var(--green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question::after {
  content: '\25B8';
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item.open .faq-question::after {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  padding: 10px 20px 20px;
  color: var(--gray);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Blog Template --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover {
  color: inherit;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card-link:hover .blog-card {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.blog-card-link:hover .read-more {
  color: var(--green-dark);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 10px;
  margin-top: 0;
}

.blog-card-content .blog-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
  display: block;
}

.blog-card-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-card-content .read-more {
  color: var(--green);
  font-weight: bold;
  font-size: 14px;
}

/* --- Location Map Placeholder --- */
.location-map {
  width: 100%;
  height: 300px;
  background: var(--light-gray);
  border-radius: 8px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-style: italic;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
  /* Top Bar */
  .top-bar .container,
  .top-bar .top-bar-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  /* Navigation */
  .hamburger,
  .menu-toggle {
    display: flex;
  }

  .main-nav,
  .nav-list,
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* Keep site-header visible */
  .site-header .main-nav {
    position: absolute;
    padding: 0;
  }

  .nav-list.active,
  .nav-menu.active,
  .main-nav.active {
    display: flex;
  }

  .nav-list > li > a,
  .nav-menu > li > a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .dropdown,
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .has-dropdown.open > .dropdown,
  .has-dropdown.open > .dropdown-menu {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 350px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  /* CTA Bar */
  .cta-bar .container,
  .cta-bar-inner {
    flex-direction: column;
    gap: 15px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Two Column Cards */
  .two-col-cards {
    grid-template-columns: 1fr;
  }

  /* Staff Cards */
  .staff-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .staff-photo,
  .staff-photo-placeholder {
    margin: 0 auto;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
  }

  /* Page Header */
  .page-header h1 {
    font-size: 32px;
  }

  /* Contact CTA */
  .contact-cta h2 {
    font-size: 26px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 280px;
  }

  .hero-title {
    font-size: 22px;
  }

  .section-heading,
  .section-title {
    font-size: 26px;
  }

  .logo-text {
    font-size: 28px;
  }

  .page-header h1 {
    font-size: 26px;
  }
}
