/* ============================================
   HIDEAWAY SPA - CONSOLIDATED STYLESHEET
   All pages use this single CSS file
   ============================================ */

/* ============================================
   BASE STYLES & RESET
   ============================================ */
* { 
  box-sizing: border-box; 
}

body { 
  font-family: 'Montserrat', sans-serif; 
  line-height: 1.3; 
  color: #222; 
  background: #fafafa; 
  margin: 0; 
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { 
  color: #667eea; 
}

/* ============================================
   STICKY TOP NAVIGATION
   ============================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

/* Logo & Branding */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-branding {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-secondary {
  font-size: 11px;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.5px;
}

/* Desktop Navigation Links - ALWAYS HIDDEN (hamburger menu on all screens) */
.nav-links {
  position: fixed;
  top: 50px;
  right: -100%;
  width: 200px;
  height: calc(100vh - 50px);
  background: #fff;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 20px 0;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 10003;
  list-style: none;
  margin: 0;
}

#mobile-menu-toggle:checked ~ .nav-container .nav-links {
  right: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.nav-links a:hover {
  background: transparent;
  color: #667eea;
}

.nav-links a.active {
  background: transparent;
  color: #667eea;
  font-weight: 600;
}

/* Book Now Button */
.nav-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff !important;
  padding: 4px 14px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  margin: 12px 16px;
  border-radius: 8px;
  text-align: center;
  border-bottom: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

/* Mobile Menu Toggle */
#mobile-menu-toggle {
  display: none;
}

/* Hamburger Menu Button - ALWAYS VISIBLE */
.mobile-menu-button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
}

.mobile-menu-button span {
  width: 24px;
  height: 3px;
  background: #667eea;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Mobile Menu Animation */
#mobile-menu-toggle:checked ~ .nav-container .mobile-menu-button span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

#mobile-menu-toggle:checked ~ .nav-container .mobile-menu-button span:nth-child(2) {
  opacity: 0;
}

#mobile-menu-toggle:checked ~ .nav-container .mobile-menu-button span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   MOBILE RESPONSIVE NAVIGATION
   ============================================ */

/* Overlay when menu is open - WORKS ON ALL SCREEN SIZES */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10002;
}

#mobile-menu-toggle:checked ~ .mobile-overlay {
  display: block;
}

/* Mobile-specific adjustments */
@media (max-width: 991px) {
  .nav-branding {
    display: flex !important;
  }
  
  .nav-container {
    height: 30px;
    padding: 0 16px;
  }
  
  .nav-logo img {
    height: 30px;
  }
  
  .nav-links {
    top: 30px;
    height: calc(100vh - 30px);
  }
  
  .mobile-overlay {
    top: 30px;
  }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero { 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: #fff; 
  text-align: center; 
  padding: 60px 20px 50px; 
}

.hero img { 
  max-width: 300px; 
  height: auto; 
  margin: 0 auto 20px auto; 
  display: block; 
}

.hero h1 { 
  font-size: 36px; 
  font-weight: 700; 
  margin-bottom: 12px; 
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subhead { 
  font-size: 18px; 
  font-weight: 400; 
  opacity: 0.95; 
  max-width: 700px; 
  margin: 0 auto 24px; 
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 20px; 
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.mission-section,
.intro-section,
.about-section { 
  background: #fff; 
  padding: 40px 30px; 
  margin-top: -20px; 
  border-radius: 12px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}

.mission-section {
  text-align: center;
}

.mission-section .label { 
  font-size: 14px; 
  color: #667eea; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-bottom: 12px; 
  font-weight: 600; 
}

.mission-section p { 
  color: #444; 
  line-height: 1.8; 
  max-width: 800px; 
  margin: 0 auto; 
}

.content-section,
.service-category,
.faq-section,
.services-section,
.credentials-section,
.why-choose-section { 
  background: #fff; 
  padding: 40px 30px; 
  border-radius: 12px; 
  margin: 30px 0; 
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); 
}

.content-section h2,
.service-category h2,
.faq-section h2,
.services-section h2,
.credentials-section h2,
.why-choose-section h2 { 
  font-size: 28px; 
  margin-bottom: 20px; 
  color: #667eea; 
}

.content-section h3 { 
  font-size: 20px; 
  margin: 24px 0 12px; 
  color: #667eea; 
}

.content-section p,
.service-category p,
.service-category > p { 
  color: #444; 
  margin-bottom: 16px; 
  line-height: 1.7; 
}

.service-category > p small { 
  font-size: 14px; 
  color: #666; 
  display: block; 
  margin-top: 12px; 
  line-height: 1.6; 
}

.content-section ul, 
.content-section ol { 
  color: #444; 
  padding-left: 1.5rem; 
  margin-bottom: 16px; 
  line-height: 1.7; 
}

.content-section ul li, 
.content-section ol li { 
  margin-bottom: 8px; 
}

.content-section a { 
  color: #667eea; 
  text-decoration: none; 
}

.content-section a:hover { 
  text-decoration: underline; 
}

/* ============================================
   INTRO/ABOUT FLEX LAYOUTS
   ============================================ */
.intro-flex,
.about-content { 
  display: flex; 
  gap: 30px; 
  align-items: flex-start; 
  flex-wrap: wrap; 
  margin-top: 30px;
}

.intro-content,
.about-text { 
  flex: 1 1 420px; 
  min-width: 280px; 
  color: #444;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 16px;
}

.intro-image,
.about-image { 
  flex: 0 0 300px; 
  max-width: 300px; 
}

.about-image {
  flex: 0 0 250px;
  max-width: 250px;
}

.intro-image img,
.about-image img { 
  width: 100%; 
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================
   CONTENT GRID LAYOUTS
   ============================================ */
.content-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
  align-items: center; 
}

.content-grid.reverse { 
  direction: rtl; 
}

.content-grid.reverse > * { 
  direction: ltr; 
}

.content-text h2 { 
  font-size: 28px; 
  margin-bottom: 16px; 
  color: #333; 
}

.content-text p { 
  color: #444; 
  line-height: 1.8; 
  margin-bottom: 20px; 
}

.content-text p a { 
  color: #667eea; 
  text-decoration: none; 
  font-weight: 600; 
}

.content-text p a:hover { 
  text-decoration: underline; 
}

.content-image img { 
  width: 100%; 
  height: auto; 
  border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

.logo-showcase {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border-radius: 12px;
  margin: 30px 0;
}

.logo-showcase img {
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.logo-showcase h3 {
  font-size: 22px;
  color: #667eea;
  margin-bottom: 12px;
}

.logo-showcase p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.logo-showcase .external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
  padding: 8px 16px;
  border: 2px solid #667eea;
  border-radius: 6px;
  transition: all 0.2s;
}

.logo-showcase .external-link:hover {
  background: #667eea;
  color: #fff;
}

/* ============================================
   GRIDS - SERVICES, BENEFITS, TREATMENTS, ETC
   ============================================ */
.services-grid,
.benefits-grid,
.treatments-grid,
.treats-grid,
.results-grid,
.comparison-grid,
.pricing-grid,
.credentials-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; 
  margin-top: 30px; 
}

.comparison-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.results-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.credentials-grid {
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ============================================
   CARD STYLES
   ============================================ */
.service-card,
.benefit-card,
.treatment-card,
.treat-card,
.comparison-card,
.credential-card { 
  background: #fafafa; 
  padding: 20px; 
  border-radius: 8px; 
  border-left: 4px solid #667eea; 
  text-align: center; 
}

.treatment-card,
.treat-card {
  padding: 16px;
  text-align: left;
}

.credential-card {
  text-align: left;
}

.service-card img { 
  width: 75px; 
  height: 75px; 
  object-fit: contain; 
  margin-bottom: 12px; 
}

.treatment-card img,
.treat-card img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  border-radius: 6px; 
  margin-bottom: 12px; 
}

.service-card h3,
.benefit-card h4,
.treatment-card h3,
.treat-card h3,
.comparison-card h3,
.comparison-card h4,
.credential-card h3 { 
  font-size: 18px; 
  margin-bottom: 8px; 
  color: #667eea; 
}

.benefit-card h4,
.comparison-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card h3 a { 
  color: #667eea; 
  text-decoration: none; 
}

.service-card h3 a:hover { 
  text-decoration: underline; 
}

.service-card p,
.benefit-card p,
.treatment-card p,
.treat-card p,
.comparison-card p,
.credential-card p { 
  font-size: 14px; 
  color: #555; 
  line-height: 1.6; 
  margin: 0;
}

.benefit-card p {
  margin-bottom: 0;
}

.treatment-card p,
.treat-card p {
  margin-bottom: 6px;
}

.treat-card .timing {
  font-size: 13px;
  color: #777;
  font-style: italic;
}

.treatment-card a,
.treat-card a { 
  color: #667eea; 
  text-decoration: none; 
}

.treatment-card a:hover,
.treat-card a:hover { 
  text-decoration: underline; 
}

.result-card { 
  background: #fff; 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
}

.result-card img { 
  width: 100%; 
  height: auto; 
  object-fit: cover; 
}

.result-card p { 
  padding: 16px; 
  font-size: 14px; 
  color: #666; 
}

.comparison-card ul {
  list-style: none;
  padding: 0;
}

.comparison-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.comparison-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* ============================================
   FEATURED CARDS & NOTE BOXES
   ============================================ */
.featured-card,
.info-box { 
  background: #f0f4ff; 
  padding: 20px; 
  border-radius: 8px; 
  border: 2px solid #667eea; 
  margin: 30px 0; 
}

.info-box {
  background: #fff6e6;
  border-left: 4px solid #ffd58a;
  border: none;
  border-left: 4px solid #ffd58a;
  text-align: center;
}

.note-box { 
  background: #fff6e6; 
  padding: 16px; 
  border-left: 4px solid #ffd58a; 
  border-radius: 4px; 
  margin: 20px 0; 
}

.featured-card img { 
  width: 100%; 
  max-width: 400px; 
  border-radius: 8px; 
  margin-bottom: 16px; 
}

.featured-card h3 { 
  font-size: 22px; 
  margin-bottom: 12px; 
  color: #667eea; 
}

.featured-card p { 
  color: #444; 
  margin-bottom: 12px; 
  line-height: 1.7; 
}

.featured-card ul { 
  color: #444; 
  padding-left: 1.5rem; 
  margin-bottom: 12px; 
}

.info-box p,
.intro-text p { 
  color: #444; 
  line-height: 1.8; 
  margin-bottom: 12px; 
}

.info-box a,
.intro-text a { 
  color: #667eea; 
  text-decoration: none; 
  font-weight: 600;
  display: inline;
}

.info-box a:hover,
.intro-text a:hover { 
  text-decoration: underline; 
}

/* ============================================
   PRICING BOXES
   ============================================ */
.pricing-box { 
  background: #f0f4ff; 
  border: 2px solid #667eea; 
  border-radius: 12px; 
  padding: 30px; 
  margin: 30px 0; 
}

.pricing-box h3 { 
  font-size: 24px; 
  margin-bottom: 16px; 
  color: #667eea; 
  text-align: center; 
}

.pricing-box ul { 
  max-width: 600px; 
  margin: 0 auto 20px; 
  padding-left: 1.5rem; 
}

.pricing-box ul li { 
  margin-bottom: 10px; 
  color: #444; 
}

.pricing-box .highlight {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin: 20px 0;
  text-align: center;
}

.pricing-category h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #667eea;
  font-weight: 600;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #d0d0d0;
}

.price-item:last-child {
  border-bottom: none;
}

/* ============================================
   SERVICES SECTION SPECIFIC
   ============================================ */
.services-section h2 { 
  text-align: center; 
  font-size: 28px; 
  margin-bottom: 10px; 
  color: #333;
}

.services-section .label { 
  text-align: center; 
  font-size: 14px; 
  color: #667eea; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-bottom: 20px; 
  font-weight: 600; 
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
  background: #f0f4ff;
  border: 2px solid #667eea;
  text-align: center;
}

.why-choose-section ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1.5rem;
  line-height: 1.8;
  color: #444;
}

.why-choose-section ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* ============================================
   TABLES
   ============================================ */
.service-table,
.comparison-table { 
  width: 100%; 
  border-collapse: collapse; 
  margin: 20px 0; 
  font-size: 14px;
}

.service-table th,
.comparison-table th { 
  text-align: left; 
  font-weight: 600; 
  padding: 12px 8px; 
  background: #f0f4ff; 
  color: #667eea; 
  border-bottom: 2px solid #667eea; 
}

.comparison-table th {
  background: #667eea;
  color: #fff;
  padding: 12px;
}

.service-table td,
.comparison-table td { 
  padding: 10px 8px; 
  border-bottom: 1px solid #e6e6e6; 
}

.comparison-table td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.service-table tr:last-child td { 
  border-bottom: none; 
}

.service-table tr:hover,
.comparison-table tr:hover { 
  background: #fafafa; 
}

.comparison-table tr:nth-child(even) {
  background: #f8f9fa;
}

.comparison-table tr:hover {
  background: #f0f4ff;
}

.service-table .price { 
  text-align: right; 
  font-weight: 600; 
  color: #667eea; 
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */
   
   
   .cta-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cta-section h2 {
  font-size: 28px;
  color: #667eea;
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: #444;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
   
   
.cta-button { 
  display: inline-block; 
  background: #667eea; 
  color: #fff; 
  padding: 14px 28px; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 700; 
  font-size: 16px; 
  margin-top: 16px; 
  transition: transform 0.2s, background 0.2s; 
}

.cta-button:hover { 
  transform: translateY(-2px); 
  background: #764ba2; 
  box-shadow: 0 4px 12px rgba(102,126,234,0.3); 
}

.hero .cta-button { 
  background: #fff; 
  color: #667eea; 
  padding: 16px 32px;
  font-size: 18px;
  margin-top: 8px;
}

.hero .cta-button:hover { 
  background: #f0f0f0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2); 
}

/* ============================================
   CTA FOOTERS
   ============================================ */
.cta-footer { 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: #fff; 
  text-align: center; 
  padding: 50px 20px; 
  margin-top: 40px; 
  border-radius: 12px; 
}

.cta-footer h2 { 
  font-size: 32px; 
  margin-bottom: 16px; 
}

.cta-footer p { 
  font-size: 18px; 
  margin-bottom: 24px; 
  opacity: 0.95; 
}

.cta-footer .cta-button { 
  background: #fff; 
  color: #667eea; 
}

.cta-footer .cta-button:hover {
  background: #f0f0f0;
}

/* ============================================
   DETAILS/ACCORDION ELEMENTS
   ============================================ */
details { 
  background: #f8f9fa; 
  padding: 16px; 
  border-radius: 8px; 
  margin: 16px 0; 
  border-left: 4px solid #667eea; 
}

details summary { 
  cursor: pointer; 
  font-weight: 600; 
  color: #667eea; 
  user-select: none; 
}

details summary::-webkit-details-marker { 
  display: none; 
}

details summary::before { 
  display: inline-block; 
  transition: transform 0.2s; 
}

details[open] summary::before { 
  transform: rotate(90deg); 
}

details p, details ul, details ol { 
  margin: 12px 0 0 0; 
  color: #444; 
  font-size: 14px; 
  line-height: 1.7; 
}

details ul, details ol { 
  padding-left: 24px; 
}

details ul li, details ol li { 
  margin-bottom: 6px; 
}

details a { 
  color: #667eea; 
  text-decoration: none; 
  display: inline; 
}

details a:hover { 
  text-decoration: underline; 
}

/* ============================================
   CITATIONS & REFERENCES
   ============================================ */
sup.reference { 
  font-size: 0.65em; 
  color: #999; 
  vertical-align: super; 
  line-height: 0; 
  margin-left: -2px; 
  margin-right: 2px; 
  font-weight: 400; 
  position: relative; 
  top: -0.2em; 
}

sup.reference a.ref-link { 
  color: inherit; 
  text-decoration: none; 
  display: inline; 
  padding: 0; 
  margin: 0; 
}

sup.reference a.ref-link:hover, 
sup.reference a.ref-link:focus { 
  color: #666; 
  text-decoration: underline; 
}

.references { 
  background: #f8f9fa; 
  padding: 30px; 
  border-radius: 8px; 
  margin: 30px 0; 
}

.references h3 { 
  font-size: 22px; 
  margin-bottom: 20px; 
  color: #667eea; 
}

.references .ref-list { 
  margin-left: 1rem; 
  padding-left: 1rem; 
  list-style-position: outside; 
}

.references .ref-list li { 
  margin-bottom: 12px; 
  line-height: 1.6; 
  font-size: 14px; 
  color: #444; 
}

.references .ref-list a { 
  color: #667eea; 
  text-decoration: none; 
  font-weight: 500; 
}

.references .ref-list a:hover { 
  text-decoration: underline; 
}

/* ============================================
   QUICK JUMP NAVIGATION
   ============================================ */
.quick-jump-nav {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #f0f4ff;
  padding: 8px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: slideDown 0.3s ease;
}

.quick-jump-nav.visible {
  display: block;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.quick-jump-inner {
  font-size: 14px;
  text-align: center;
}

.quick-jump-nav .separator {
  margin: 0 8px;
}

.quick-jump-nav a {
  font-size: 14px;
  color: #667eea;
  text-decoration: none;
  display: inline;
}

.quick-jump-nav a:hover {
  text-decoration: underline;
}

/* ============================================
   BOTTOM CTA BAR
   ============================================ */
.bottom-cta-bar,
.bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4px 16px;
  text-align: center;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.bottom-nav-bar {
  display: none;
}

.bottom-cta-bar a,
.bottom-cta a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.bottom-cta-bar a:hover,
.bottom-cta a:hover {
  opacity: 0.9;
}

body {
  padding-bottom: 56px;
}

.jump-toggle-label {
  display: block;
  background: #667eea;
  color: #fff;
  padding: 6px 16px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: -5px;
}

.toggle-text::after {
  content: " ▼";
  font-size: 10px;
  opacity: 0.8;
  margin-left: 4px;
}

#jump-toggle:checked ~ .bottom-nav-bar .toggle-text::after {
  content: " ▲";
}

.bottom-jump-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f0f4ff;
}

#jump-toggle:checked ~ .bottom-nav-bar .bottom-jump-nav {
  max-height: 300px;
}

.bottom-jump-links {
  display: flex;
  flex-direction: column;
}

.bottom-jump-nav a {
  color: #667eea;
  text-decoration: none;
  font-size: 13px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.15);
  display: block;
}

.bottom-jump-nav a:last-child {
  border-bottom: none;
}

.bottom-jump-nav a:hover {
  background: #fff;
  color: #764ba2;
}

.bottom-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4px 4px;
  text-align: center;
}

/* ============================================
   VIDEO EMBEDS
   ============================================ */
.video-holder {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */
:root {
  --brand: #667eea;
  --muted: #666;
  --bg: #fafafa;
  --card: #fff;
}

.contact-container {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  max-width: 640px;
  margin: 0 auto;
}

.contact-methods {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 12px 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: var(--brand);
  color: #fff;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: #5568d3;
}

.social-icons {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.social-icons a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.social-icons img {
  width: 28px;
  height: 28px;
  display: block;
}

.form-divider {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 12px 0;
  font-weight: 600;
}

.contact-form {
  margin-top: 16px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 6px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 14px;
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #5568d3;
}

.form-success,
.form-error {
  display: none;
  margin-top: 14px;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================
   RESPONSIVE BREAKPOINTS - TABLET
   ============================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    padding: 0 10px;
  }

  .hero img {
    max-width: 200px;
  }

  .hero .subhead {
    font-size: 16px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-grid.reverse {
    direction: ltr;
  }

  .content-text h2 {
    font-size: 24px;
  }

  .content-text p {
    font-size: 15px;
  }

  .about-content,
  .intro-flex {
    flex-direction: column;
  }

  .about-image,
  .intro-image {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .mission-section,
  .about-section,
  .intro-section,
  .content-section,
  .service-category,
  .faq-section,
  .services-section,
  .credentials-section,
  .why-choose-section {
    padding: 30px 20px;
  }

  .pricing-box {
    padding: 30px 20px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-table th,
  .service-table td {
    padding: 8px 6px;
    font-size: 14px;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px;
  }

  details {
    padding: 14px;
  }

  details summary {
    font-size: 15px;
  }

  .cta-footer h2 {
    font-size: 26px;
  }

  .cta-footer p {
    font-size: 16px;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS - MOBILE (991px)
   ============================================ */
@media (max-width: 991px) {
  .quick-jump-nav {
    top: 30px;
    padding: 2px 14px;
  }

  .quick-jump-inner {
    font-size: 12px;
  }

  .quick-jump-nav strong {
    display: none;
  }

  .quick-jump-nav .separator {
    margin: 0 2px;
  }

  .quick-jump-nav a {
    font-size: 12px;
  }

  .bottom-nav-bar {
    display: block !important;
  }

  body {
    padding-bottom: 52px;
  }

  .jump-toggle-label {
    padding: 8px 12px;
    font-size: 13px;
  }

  .bottom-jump-nav a {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS - MOBILE (600px)
   ============================================ */
@media (max-width: 600px) {
  .container {
    padding: 16px;
  }

  .hero {
    padding: 50px 16px 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero img {
    max-width: 180px;
  }

  .hero .subhead {
    font-size: 16px;
  }

  .mission-section,
  .about-section,
  .intro-section {
    padding: 25px 15px;
  }

  .content-section,
  .service-category,
  .faq-section,
  .services-section,
  .credentials-section,
  .why-choose-section {
    padding: 24px 16px;
    margin: 20px 0;
  }

  .content-section h2,
  .service-category h2,
  .faq-section h2,
  .services-section h2,
  .credentials-section h2,
  .why-choose-section h2 {
    font-size: 24px;
  }

  .pricing-box {
    padding: 25px 15px;
    margin: 20px 0;
  }

  .service-table {
    font-size: 14px;
  }

  .service-table th,
  .service-table td {
    padding: 8px 4px;
  }

  .service-table th {
    font-size: 13px;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 12px 24px;
    font-size: 15px;
  }

  .content-text .cta-button {
    padding: 10px 20px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  details {
    padding: 14px;
  }

  details summary {
    font-size: 15px;
  }

  details p,
  details ul {
    font-size: 14px;
  }

  .cta-footer {
    padding: 40px 15px;
  }

  .cta-footer h2 {
    font-size: 24px;
  }

  .cta-footer .cta-button {
    width: 100%;
    padding: 14px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .quick-jump-nav {
    top: 30px;
    padding: 1px 12px;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS - MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .hero {
    padding: 40px 15px 40px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero img {
    max-width: 180px;
  }

  .container {
    padding: 15px;
  }

  .mission-section,
  .about-section,
  .intro-section,
  .content-section,
  .service-category,
  .faq-section,
  .services-section,
  .credentials-section,
  .why-choose-section {
    padding: 25px 15px;
  }

  .pricing-box {
    padding: 20px 15px;
  }

  .content-text h2 {
    font-size: 22px;
  }

  .cta-footer {
    padding: 40px 15px;
  }

  .cta-footer h2 {
    font-size: 24px;
  }

  .contact-container {
    padding: 16px;
  }

  .contact-container h2 {
    font-size: 20px;
  }

  .intro-text {
    font-size: 13px;
  }

  .contact-btn {
    font-size: 13px;
    padding: 9px 12px;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS - SMALL MOBILE (400px)
   ============================================ */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 24px;
  }

  .service-table {
    font-size: 13px;
  }

  .service-table th,
  .service-table td {
    padding: 6px 3px;
  }
}