/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Georgia', 'Times New Roman', serif; line-height: 1.15; color: #000; }
h1 { font-size: 54px; font-weight: 400; }
h2 { font-size: 54px; font-weight: 400; }
h3 { font-size: 24px; font-weight: 500; }
h4 { font-size: 20px; font-weight: 500; }
p { margin-bottom: 1em; color: #444; font-size: 18px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.flex { display: flex; gap: 40px; align-items: center; }
.col-2 { flex: 1; min-width: 300px; }

/* ===== HEADER ===== */
.site-header {
  background: transparent;
  padding: 20px 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.logo img { height: 50px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > a,
.nav-dropdown > a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 4px;
}
.main-nav > a:hover,
.nav-dropdown > a:hover { background: rgba(255,255,255,0.15); }
.main-nav > a.active { color: #98d2c0; }

/* Dropdown menu */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: none; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 340px;
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
}
.dropdown-menu a:hover { background: #f5f5f5; color: #205781; }

/* CTA button - mint green */
.btn-cta {
  background: #98d2c0;
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn-cta:hover { background: #7ec4ae; }

/* Secondary button - navy */
.btn-secondary {
  background: #205781;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover { background: #1a4668; }

/* Mobile menu toggle (hamburger) */
.mobile-toggle {
  display: none;
  background: #98d2c0;
  border: none;
  color: #000;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-toggle svg { width: 22px; height: 22px; }
.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

/* ===== HERO (homepage) ===== */
.hero {
  background: url('../images/Hero-Banner-2.jpg') 0% 0% / auto no-repeat;
  min-height: 850px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-left: 5%;
  padding: 180px 30px 120px;
}
.hero h1 { color: #fff; font-size: 54px; margin-bottom: 20px; font-weight: 400; line-height: 1.15; }
.hero h1 .highlight { color: #98d2c0; }
.hero .hero-tagline { color: #fff; font-size: 20px; font-weight: 600; margin-bottom: 30px; }
.hero .btn-cta { font-size: 16px; padding: 14px 35px; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(to bottom, #205781 0%, #4f959d 100%);
  padding: 140px 0 50px;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: 54px; font-weight: 400; }
.breadcrumb { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.breadcrumb a:hover { color: #fff; }

/* Service hero */
.service-hero {
  background: linear-gradient(to bottom, #205781 0%, #4f959d 100%);
  padding: 140px 0 50px;
  color: #fff;
}
.service-hero h1 { color: #fff; font-size: 54px; font-weight: 400; margin-bottom: 10px; }
.service-hero p { color: rgba(255,255,255,0.85); font-size: 18px; }

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 80px 0;
  text-align: center;
  background: #205781;
  color: #fff;
}
.problem-section h2 { margin-bottom: 30px; font-size: 54px; color: #fff; }
.problem-section p { max-width: 800px; margin: 0 auto 20px; font-size: 18px; color: rgba(255,255,255,0.9); }

/* ===== THERAPIST INTRO ===== */
.therapist-intro { padding: 80px 0; background: #faf8f5; }
.therapist-intro .flex { align-items: flex-start; }
.therapist-intro .photo { overflow: hidden; max-width: 460px; flex-shrink: 0; }
.therapist-intro .photo img { width: 100%; object-fit: cover; }
.therapist-intro .content h2 { margin-bottom: 5px; font-size: 54px; color: #000; }
.therapist-intro .content h2 span { color: #205781; }
.therapist-intro .content p { font-size: 17px; color: #555; }
.therapist-intro .branding { margin-top: 25px; }
.therapist-intro .branding h3 { font-family: 'Georgia', 'Times New Roman', serif; font-size: 42px; color: #4f959d; margin-bottom: 2px; font-weight: 400; }
.therapist-intro .branding p { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 20px; }

/* ===== SERVICES SECTION (HOME) ===== */
.services-home {
  background: #6a9fa5;
  padding: 80px 0;
  color: #fff;
}
.services-home h2 { color: #fff; text-align: center; margin-bottom: 15px; font-size: 54px; }
.services-home .services-intro { color: rgba(255,255,255,0.9); text-align: center; max-width: 750px; margin: 0 auto 50px; font-size: 18px; }
.services-home .services-closing { color: rgba(255,255,255,0.9); text-align: center; font-style: italic; margin-top: 40px; font-size: 18px; max-width: 900px; margin-left: auto; margin-right: auto; }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px 0;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card .card-body {
  padding: 20px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; color: #000; font-weight: 500; }
.service-card p { font-size: 14px; color: #666; margin-bottom: 15px; flex: 1; }
.service-card .learn-more-bar {
  display: block;
  background: #205781;
  color: #fff;
  text-align: center;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
}
.service-card .learn-more-bar:hover { background: #1a4668; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: #205781;
  padding: 80px 0;
  color: #fff;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.9); }
.cta-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.cta-text h2 { color: #fff; margin-bottom: 15px; font-size: 54px; }
.cta-text p { color: rgba(255,255,255,0.9); font-size: 17px; }
.cta-decorative {
  min-height: 400px;
}
.cta-decorative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  min-height: 400px;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin-top: 20px;
}
.cta-form input {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  width: 100%;
  color: #333;
}
.cta-form input:focus { outline: none; border-color: #98d2c0; }
.cta-form .btn-cta { width: auto; align-self: flex-start; }

/* Human checkbox */
.human-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  user-select: none;
}
.human-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #98d2c0;
  cursor: pointer;
}
/* For light backgrounds */
.svc-cream .human-check,
.contact-form-section .human-check,
.consultation-form .human-check { color: #444; }

/* ===== BLOG SECTION (HOME) ===== */
.blog-home { padding: 80px 0; text-align: center; background: #faf8f5; }
.blog-home h2 { font-size: 54px; color: #000; margin-bottom: 15px; }
.blog-home h2 .highlight-teal { color: #4f959d; font-style: italic; }
.blog-home .blog-intro { color: #666; margin-bottom: 40px; font-size: 18px; }

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card .card-body { padding: 20px 15px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 20px; margin-bottom: 8px; color: #000; font-weight: 600; }
.blog-card p { font-size: 15px; color: #666; margin-bottom: 12px; flex: 1; }
.blog-meta { font-size: 13px; color: rgba(0,0,0,0.4); display: block; margin-bottom: 8px; }
.read-more { color: #000; font-weight: 500; font-size: 16px; text-transform: uppercase; text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: #205781;
  color: #fff;
  padding: 60px 0 0;
  text-align: center;
}
.footer-brand { margin-bottom: 25px; }
.footer-brand h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2px;
}
.footer-brand .subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}
.footer-brand .tagline {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  font-style: italic;
  margin-bottom: 30px;
}
.footer-two-col {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: left;
  align-items: stretch;
}
.footer-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
  border: 3px solid rgba(255,255,255,0.3);
}
.footer-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.footer-contact {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  color: #333;
}
.footer-contact h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 40px;
  color: #4f959d;
  margin-bottom: 20px;
  font-weight: 600;
}
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #333;
  font-size: 17px;
}
.contact-list li span { color: #333; }
.contact-list li a { color: #333; }
.contact-icon { flex-shrink: 0; margin-top: 4px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer-social a:hover { background: rgba(255,255,255,0.3); }
.footer-nav {
  background: rgba(0,0,0,0.15);
  padding: 15px 0;
  margin-top: 30px;
}
.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-nav-links a:not(:last-child)::after {
  content: '|';
  margin-left: 30px;
  color: rgba(255,255,255,0.4);
}
.footer-nav-links a:hover { color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,0.1);
  padding: 15px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 60px 0; background: #faf8f5; }
.about-section .photo-col { max-width: 460px; flex-shrink: 0; }
.about-section .photo-col img { width: 100%; }
.about-section h2 { color: #000; margin-bottom: 15px; font-size: 42px; }
.about-section h2 span { color: #205781; }
.about-section ul { padding-left: 0; margin: 20px 0; }
.about-section ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #444;
  font-size: 17px;
}
.about-section ul li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: #4f959d;
  font-weight: bold;
}
.two-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.two-images img { border-radius: 8px; width: 100%; height: 280px; object-fit: cover; }

/* My Approach section */
.approach-section {
  padding: 60px 0;
  background: #e8ebe4;
}
.approach-section h2 { color: #000; font-size: 36px; margin-bottom: 15px; }
.approach-section .flex { align-items: flex-start; }

/* Who I Work With section */
.who-section { padding: 60px 0; }
.who-section h2 { color: #000; font-size: 42px; margin-bottom: 5px; }
.who-section h2 span { color: #205781; text-decoration: underline; }
.who-section h3 { font-size: 22px; color: #333; margin-bottom: 15px; }
.who-section ul { margin: 15px 0; }
.who-section ul li {
  padding: 5px 0 5px 28px;
  position: relative;
  color: #444;
  font-size: 17px;
}
.who-section ul li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: #4f959d;
}

/* ===== CONTACT PAGE ===== */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.contact-info-card {
  background: linear-gradient(135deg, #205781, #4f959d);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.contact-info-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(152,210,192,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
}
.contact-info-card .icon svg { width: 28px; height: 28px; }
.contact-info-card h3 { font-size: 18px; margin-bottom: 10px; color: #fff; font-family: 'Georgia', serif; }
.contact-info-card p { color: rgba(255,255,255,0.9); margin-bottom: 0; font-size: 14px; }

/* Contact form section */
.contact-form-section {
  padding: 60px 0;
  text-align: center;
  background: #6a9fa5;
  color: #fff;
}
.contact-form-section h2 { color: #fff; margin-bottom: 15px; font-size: 42px; }
.contact-form-section > .container > p { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 17px; max-width: 700px; margin-left: auto; margin-right: auto; }
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: #333; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: #f5f5f5;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: #4f959d; }
.form-group textarea { min-height: 120px; resize: vertical; }

/* Consultation popup form */
.consultation-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
  color: #333;
}
.consultation-form h3 { margin-bottom: 5px; color: #000; }
.consultation-form p { font-size: 14px; color: #666; margin-bottom: 20px; }

/* ===== SERVICE CONTENT PAGE ===== */
/* Section backgrounds */
.svc-section { padding: 70px 0; }
.svc-cream { background: rgba(246, 248, 213, 0.35); }
.svc-teal { background: rgb(79, 149, 157); }
.svc-navy { background: rgb(32, 87, 129); }

/* Service section typography */
.svc-section h2 { font-size: 36px; margin-bottom: 18px; color: #000; }
.svc-section h3 { font-size: 22px; color: #205781; margin-top: 22px; margin-bottom: 8px; }
.svc-section p { font-size: 18px; color: #444; }

/* Light text for dark backgrounds (must come AFTER base rules for specificity) */
.svc-section.svc-light-text h2 { color: #fff; }
.svc-section.svc-light-text p { color: rgba(255,255,255,0.92); }
.svc-section.svc-light-text li { color: rgba(255,255,255,0.92); }
.svc-section.svc-light-text h3 { color: rgba(255,255,255,0.95); }
.svc-section.svc-light-text .btn-cta { background: #98d2c0; color: #000; }
.svc-section ul { padding-left: 0; margin: 15px 0; }
.svc-section ul li {
  padding: 5px 0 5px 25px;
  position: relative;
  font-size: 18px;
  color: #444;
}
.svc-section ul li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: #4f959d;
  font-weight: bold;
}
.svc-light-text ul li::before { color: #98d2c0; }

/* Two-column layout */
.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}
.svc-img-col img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.svc-text-col h2:first-child { margin-top: 0; }

/* Single column centered (for CTA and FAQ sections) */
.svc-single-col { max-width: 800px; }
.svc-navy.svc-light-text .svc-single-col { text-align: center; }

/* FAQ Accordion */
.faq-item {
  background: rgba(152, 210, 192, 0.15);
  border-radius: 8px;
  margin-bottom: 12px;
  border: none;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 25px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 500;
  color: #205781;
  list-style: none;
  gap: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: #205781;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item .faq-answer {
  padding: 0 25px 20px;
}
.faq-item .faq-answer p {
  margin-bottom: 0.5em;
}
.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

/* Numbered Step Boxes */
.svc-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}
.svc-step {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 30px 25px;
  position: relative;
}
.svc-cream .svc-step {
  background: rgba(32, 87, 129, 0.06);
}
.svc-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #98d2c0;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
.svc-light-text .svc-step-number {
  background: #98d2c0;
  color: #000;
}
.svc-step h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.svc-step p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .svc-steps { grid-template-columns: 1fr; }
}

/* Old service-two-col kept for any legacy pages */
.service-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}
.service-two-col img { border-radius: 8px; width: 100%; object-fit: cover; }

/* ===== BLOG POST ===== */
.blog-post { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.blog-post h1 { margin-bottom: 15px; }
.blog-post .post-meta { color: #888; font-size: 14px; margin-bottom: 30px; }
.blog-post h2 { margin-top: 35px; margin-bottom: 15px; font-size: 32px; }
.blog-post h3 { margin-top: 25px; margin-bottom: 12px; font-size: 24px; }
.blog-post ul, .blog-post ol { padding-left: 25px; margin: 15px 0; list-style: disc; }
.blog-post li { margin-bottom: 8px; color: #444; font-size: 18px; }

/* ===== RESPONSIVE ===== */

/* Tablet - hamburger menu kicks in */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-mobile-actions { display: flex; }
  .mobile-toggle { display: flex; }
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #205781;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    gap: 0;
  }
  .main-nav.active > a,
  .main-nav.active .nav-dropdown > a {
    padding: 14px 0;
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.active > a:hover,
  .main-nav.active .nav-dropdown > a:hover {
    background: none;
    color: #98d2c0;
  }
  .main-nav.active .btn-cta {
    margin-top: 15px;
    text-align: center;
    padding: 14px 20px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    background: transparent;
    min-width: 0;
    border-radius: 0;
  }
  .dropdown-menu a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .dropdown-menu a:hover { background: transparent; color: #98d2c0 !important; }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .nav-dropdown > a::after { content: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-two-col { grid-template-columns: 1fr; }
  .cta-two-col { grid-template-columns: 1fr; }
  .flex { flex-direction: column; }
  .service-two-col { grid-template-columns: 1fr; }
  .svc-two-col { grid-template-columns: 1fr; gap: 30px; }
  .svc-section { padding: 50px 0; }
  .svc-section h2 { font-size: 30px; }
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  .cta-decorative { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero { min-height: auto; }
  .hero-content { padding: 120px 20px 60px; }
  .two-images { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav-links { gap: 15px; }
  .page-hero, .service-hero { padding: 100px 0 40px; }
  .header-mobile-actions .btn-cta { display: none; }
}
