/*
 * =====================================
 * MEDELEC SOLUTIONS GROUP - MAIN STYLES
 * Medical Platform Design System
 * =====================================
 * 
 * MODULAR ARCHITECTURE:
 * - Clean, organized, maintainable CSS
 * - Component-based structure  
 * - Responsive-first design
 * - Easy to scale and modify
 * 
 * =====================================
 */

/* =====================================
   1. IMPORT DESIGN SYSTEM & MODULES
   ===================================== */
@import url("/assets/design_system-3bca21b6.css");
@import url("/assets/components/header-5bd93975.css");
@import url("/assets/components/buttons-bd565d3a.css");
@import url("/assets/responsive-da70cbd5.css");
@import url("/assets/pages/service_requests-e521fb7e.css");
@import url("/assets/pages/blog-113fd91f.css");

/* =====================================
   2. BASE & RESET STYLES
   ===================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Adjusted to match actual header height */
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--neutral-gray-800);
  background-color: var(--neutral-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* =====================================
   3. GLOBAL COMPONENTS
   ===================================== */

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

.section-spacing {
  padding: var(--space-12) 0;
}

.cf-turnstile iframe {
    width: 350px !important; /* Or your specific width */
}
/* =====================================
   4. HEADER & NAVIGATION
   ===================================== */

.site-header {
  background: var(--neutral-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  min-height: 40px;
}

/* Top Contact Bar */
.header-top {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 8px 0;
}

.header-top-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  justify-content: flex-end;
}

.nav-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-2) 0;
  width: 100%;
}

.nav-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--neutral-gray-600);
  font-weight: 400;
}

.nav-contact-item .contact-icon {
  font-size: 12px;
}

.nav-contact-item .contact-text {
  font-size: 14px;
  color: #6B7280;
}

/* General contact item and icon styles */
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 16px;
  color: var(--neutral-gray-700);
  font-weight: 500;
}

.contact-icon {
  font-size: 13px;
}

/* Main Header Container */
.header-container {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-3) var(--space-8);
  min-height: 80px;
  justify-content: space-between;
}

/* Logo Section - Far Left */
.header-logo {
  position: absolute;
  left: var(--space-8);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Navigation Section - Top contact + centered nav */
.nav-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: var(--space-4);
}

/* Navigation and CTA Container */
.nav-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding: var(--space-4) 120px var(--space-4) 140px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo-image {
  height: 200px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-link:hover .logo-image {
  opacity: 0.8;
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-right: var(--space-8);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 12px 12px;
  min-height: 44px; /* iOS touch target recommendation */
}

.nav-link:hover {
  color: #374151;
}

.nav-dropdown-icon {
  font-size: 14px;
  color: #666666;
  margin-left: 4px;
  transition: transform 0.2s ease;
  padding: 4px; /* Better touch target */
}

.nav-dropdown-icon.rotated {
  transform: rotate(180deg);
}

.nav-item:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

/* Header CTA - Right side with spacing */
.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: none;
}

.btn-header-cta {
  background-color: var(--accent-orange);
  color: var(--neutral-white);
  padding: var(--space-3) var(--space-6);
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
  box-shadow: var(--shadow-lg);
  border: none;
}

.btn-header-cta:hover {
  background-color: var(--accent-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--neutral-white);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-icon.rotated {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--neutral-white);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  min-width: 250px;
  border: 1px solid #E5E7EB;
  /* Prevent dropdown from going off-screen */
  right: auto;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  padding: 12px 0;
}

.dropdown-link {
  display: block;
  padding: 16px 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #F3F4F6;
  white-space: nowrap;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background-color: #F9FAFB;
  color: var(--accent-orange);
  padding-left: 28px;
  transform: translateX(4px);
}

/* ===================================
   MOBILE NAVIGATION - HAMBURGER MENU
   =================================== */

/* Mobile hamburger menu button - hidden by default, positioned on the right */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Hamburger lines */
.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--accent-orange);
  transition: all 0.3s ease;
  margin: 2px 0;
  transform-origin: center;
}

/* Hamburger animation when menu is open */
.menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* Mobile contact info - hidden by default, shown only on mobile */
.mobile-contact-info {
  display: none;
}

.clients-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 90vw;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.08);
  border-radius: 1em;
  margin-bottom: 2.5em;
}
.clients-track {
  display: inline-block;
  animation: marquee 20s linear infinite;
}
.client-name {
  display: inline-block;
  margin: 0 2em;
  font-weight: 500;
  color: #fff;
  font-size: 2em;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.equipment-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 1020px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.08);
  border-radius: 1em;
  margin-bottom: 2.5em;
  padding: 1.5em 0;
}
.equipment-track {
  display: inline-flex;
  gap: 2em;
  animation: equipment-marquee 60s linear infinite;
  align-items: stretch;
}
.equipment-card {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 12px #0001;
  min-width: 300px;
  max-width: 320px;
  flex: 0 0 320px;
  padding: 1.5em 1.2em 1.7em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.equipment-image img {
  height: 160px;
  object-fit: contain;
  margin-bottom: 1em;
  border-radius: 1em;
  box-shadow: 0 2px 8px #0002;
}
.equipment-title {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.4em;
}
@media (max-width: 1100px) {
  .equipment-marquee { width: 700px; }
  .equipment-card { min-width: 220px; max-width: 90vw; }
  .equipment-track { gap: 1em; }
}
@media (max-width: 700px) {
  .equipment-marquee { width: 95vw; }
  .equipment-card { min-width: 85vw; max-width: 95vw; }
  .equipment-track { gap: 0.5em; }
}

@keyframes equipment-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.service-packages-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.service-packages-section {
  position: relative;
  overflow: visible;
}
.service-packages-bg .bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 500px;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  filter: blur(2px) saturate(1.2);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.5s;
}
.package-card {
  transition: box-shadow 0.25s, transform 0.25s;
}
.package-card:hover {
  box-shadow: 0 8px 32px #CF431C22, 0 2px 8px #0001;
  transform: translateY(-7px) scale(1.025);
}
.package-card .btn-primary {
  transition: transform 0.18s, box-shadow 0.18s;
}
.package-card .btn-primary:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px #CF431C33;
  filter: brightness(1.08);
}

.service-packages {
  background: #f8fafc;
  padding: 3em 0;
}
.service-packages-container {
  max-width: 1100px;
  margin: 0 auto;
}
.service-packages-title {
  text-align: center;
  color: #6B7280;
  font-size: 2.3em;
  margin-bottom: 1.7em;
  font-weight: 700;
  letter-spacing: -1px;
}
.package-cards {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}

.package-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px #0001;
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 340px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2em;
  font-size: 18px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  font-family: 'Poppins', sans-serif;
}
.package-card.most-popular {
  background: linear-gradient(135deg, #fff 80%, #ffe5e0 100%);
  border: 2.5px solid #CF431C;
  border-radius: 16px;
  box-shadow: 0 4px 18px #CF431C22;
  z-index: 2;
}
.package-card-badge {
  position: absolute;
  top: -18px;
  left: 1.2em;
  background: #CF431C;
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  padding: 0.3em 1.1em;
  border-radius: 12px;
  box-shadow: 0 2px 8px #CF431C33;
  letter-spacing: 0.5px;
}
.package-card-icon {
  margin-bottom: 0.7em;
  align-self: center;
}
.package-card-title {
  font-size: 1.3em;
  margin-bottom: 0.3em;
  font-weight: 700;
}
.package-card-title.essential { color: #CF431C; }
.package-card-title.priority { color: #B8361A; }
.package-card-title.total { color: #B8361A; }
.package-card-subtitle {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.7em;
}
.package-card-list {
  padding-left: 1.2em;
  margin-bottom: 1em;
  color: #374151;
  font-size: 1em;
}
.package-card-note {
  color: #6b7280;
  font-size: 0.97em;
  margin-bottom: 1.2em;
}
.package-card-spacer {
  flex: 1 1 auto;
}
.package-card-btn {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7em 1.5em;
  font-weight: 600;
  cursor: pointer;
  align-self: stretch;
  margin-top: auto;
  text-align: center;
}
.package-card-footnote {
  text-align: center;
  color: #6b7280;
  font-size: 0.95em;
  margin-top: 2em;
}

@media (max-width: 375px) {
  .service-packages-title {
    font-size: 22px !important;
  }

  .package-card {
    font-size: 12px;
    max-width: 300px !important;
  }

  .client-name {
    font-size: 22px !important;
  }
}

@media (min-width:376px) and (max-width: 430px) {
  .service-packages-title {
    font-size: 22px !important;
  }

  .package-card {
    font-size: 14px;
  }

  .client-name {
    font-size: 22px !important;
  }
}

@media (min-width:431px) and (max-width: 600px) {
  .service-packages-title {
    font-size: 26px !important;
  }

  .package-card {
    font-size: 14px;
  }

  .client-name {
    font-size: 22px !important;
  }
}
@media (max-width: 600px) {
  .package-card-footnote {
    font-size: 12px !important;
  }
}

/* Surface Duo Pro - location/phone at top, hamburger between, appointment at bottom */
@media (min-width: 431px) and (max-width: 600px) {
  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide mobile contact info */
  .mobile-contact-info {
    display: none;
  }
  
  /* Header container - similar to tablet but with hamburger */
  .header-container {
    padding: 20px 80px 20px 140px; /* Space for logo on left, hamburger on right */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    min-height: auto;
    position: relative;
  }
  
  /* Logo positioned on the left and vertically centered */
  .header-logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .logo-image {
    height: 100px;
  }
  
  /* Show navigation section with mixed layout */
  .nav-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    height: auto;
    overflow: visible;
    gap: var(--space-4);
  }
  
  /* When nav-section becomes active (hamburger opened), it slides in from right */
  .nav-section.active {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: var(--neutral-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 80px 30px 40px;
    justify-content: flex-start;
    overflow-y: auto;
  }
  
  /* Contact bar - show at top center when closed, hidden when hamburger is open */
  .nav-contact-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    order: 1;
  }
  
  .nav-section.active .nav-contact-bar {
    display: none;
  }
  
  /* Force 12px font size for Surface Duo contact items */
  .header-container .nav-section .nav-contact-bar .nav-contact-item,
  .nav-contact-bar .nav-contact-item,
  .nav-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 12px !important;
    color: var(--neutral-gray-700);
    font-weight: 500;
  }
  
  .contact-icon {
    font-size: 12px;
  }
  
  /* CTA container - holds appointment button */
  .nav-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: 0;
    width: 100%;
    order: 3;
  }
  
  /* Main navigation - hidden when closed, shown in hamburger */
  .main-navigation {
    display: none;
    order: 2;
    width: 100%;
  }
  
  .nav-section.active .main-navigation {
    display: block;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #F3F4F6;
    display: block;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-4) 0;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.2s ease;
    background: none;
    margin: 0;
  }
  
  .nav-link:hover {
    background-color: #F9FAFB;
    color: var(--accent-orange);
  }
  
  /* Hide appointment button in header for Surface Duo Pro screens */
  .header-cta {
    display: none;
  }
  
  /* Hide desktop dropdown in hamburger menu */
  .desktop-only {
    display: none !important;
  }
  
  /* Overlay when menu is open */
  .menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}

/* Tablet navigation layout for screens 601px to 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
  /* Hide hamburger menu for tablet */
  .mobile-menu-toggle {
    display: none;
  }
  
  /* Hide mobile contact info for tablet */
  .mobile-contact-info {
    display: none;
  }
  
  /* Adjust header container for tablet layout */
  .header-container {
    padding: 20px 20px 20px 140px; /* Extra left padding to make room for logo */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-4);
    min-height: auto;
    position: relative;
  }
  
  /* Logo positioned on the left and vertically centered */
  .header-logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .logo-image {
    height: 200px;
  }
  
  /* Show and position navigation section - shifted right to accommodate logo */
  .nav-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    height: auto;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Contact bar - show at top center */
  .nav-contact-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-3);
    order: 1;
  }
  
  .nav-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 14px;
    color: var(--neutral-gray-700);
    font-weight: 500;
  }
  
  .contact-icon {
    font-size: 12px;
  }
  
  /* Navigation container - underneath contact info */
  .nav-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    order: 2;
  }
  
  /* Main navigation - horizontal layout underneath contact info */
  .main-navigation {
    width: auto;
    order: 1;
  }
  
  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    border-bottom: none;
    gap: var(--space-1);
  }
  
  .nav-link {
    display: inline-block;
    padding: var(--space-2) var(--space-3);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.2s ease;
    background: none;
    margin: 0;
    white-space: nowrap;
  }
  
  .nav-link:hover {
    color: var(--accent-orange);
    background: none;
  }
  
  /* CTA button - underneath navigation, centered to full page width */
  .header-cta {
    order: 2;
    padding: 0;
    margin-top: var(--space-2);
    position: relative;
    width: 100vw; /* Full viewport width */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
  
  .btn-header-cta {
    padding: var(--space-3) var(--space-6);
    font-size: 14px;
    text-align: center;
    width: auto;
  }
  
  /* Show desktop dropdown elements */
  .desktop-only {
    display: inline !important;
  }
  
  /* Dropdown styles for tablet */
  .nav-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    transform: none;
    background: var(--neutral-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: var(--space-2) 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    white-space: nowrap;
  }
  
  /* Show dropdown via JavaScript class only (same as base styles) */
  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-link {
    display: block;
    padding: var(--space-2) var(--space-4);
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  
  .dropdown-link:hover {
    background-color: #F9FAFB;
    color: var(--accent-orange);
  }
  
  /* Restore dropdown arrow for iPads */
  .nav-dropdown-icon {
    margin-left: var(--space-1);
    transition: transform 0.2s ease;
  }
  
  .nav-dropdown:hover .nav-dropdown-icon,
  .nav-dropdown-icon.rotated {
    transform: rotate(180deg);
  }
  
  /* Hide Blog Posts nav link on tablet screens to save space */
  .nav-item:has(.nav-link[href*="blog"]) {
    display: none;
  }
  
  /* Hide Schedule Appointment button in header on tablet screens to save space */
  .header-cta {
    display: none;
  }
}

/* Nest Hub Max and similar desktop screens - fix logo overlap */
@media (min-width: 1025px) {
  /* Increase left padding to prevent logo overlap with navigation */
  .nav-cta-container {
    padding: var(--space-4) 120px var(--space-4) 180px; /* Increased left padding from 140px to 180px */
  }
  
  /* Center logo with nav section for better visual alignment */
  .header-logo {
    left: var(--space-6); /* Slightly reduce logo left position */
    top: 60%; /* Drop down from 50% to 60% to center with nav section */
    transform: translateY(-50%);
  }
  
  /* Adjust header container padding for better balance */
  .header-container {
    padding: var(--space-3) var(--space-6);
  }
}

/* Mobile navigation styles for screens < 425px */
@media (max-width: 430px) {
  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide mobile contact info for screens 430px and below to save space */
  .mobile-contact-info {
    display: none !important;
  }

  /* Hide default navigation on mobile */
  .nav-section {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--neutral-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 0 40px;
    overflow-y: auto;
  }
  
  /* Show navigation when active */
  .nav-section.active {
    right: 0;
  }
  
  /* Adjust header container for mobile */
  .header-container {
    padding: 15px 70px 15px 20px; /* Extra right padding for hamburger */
    justify-content: flex-start;
    align-items: center;
    position: relative;
    display: flex;
    flex-direction: row;
  }
  
  /* Hide contact bar in mobile menu since it's now in header */
  .nav-contact-bar {
    display: none;
  }
  
  /* Navigation container in mobile */
  .nav-cta-container {
    flex-direction: column;
    gap: var(--space-6);
    padding: 0;
    width: 100%;
  }
  
  /* Navigation menu in mobile */
  .main-navigation {
    width: 100%;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-item {
    border-bottom: 1px solid #F3F4F6;
  }
  
  .nav-link {
    display: block;
    font-size: 14px;
    padding: 6px 8px;; /* Increased horizontal padding from 40px to 60px for much wider blue section */
    text-align: left;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .nav-link:hover {
    background-color: #F9FAFB;
    color: var(--accent-orange);
  }
  
  /* Hide desktop-only elements in mobile */
  .desktop-only {
    display: none !important;
  }
  
  /* Dropdown in mobile - hidden now */
  .nav-dropdown {
    position: relative;
  }
  
  /* CTA button in mobile menu */
  .header-cta {
    padding: 0 30px;
    margin-top: var(--space-4);
  }
  
  .btn-header-cta {
    width: 100%;
    text-align: center;
    padding: var(--space-4);
    font-size: 10px;
  }
  
  /* Logo adjustments for mobile - change to relative positioning */
  .header-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
    margin-right: 12px;
  }
  
  .logo-image {
    height: 100px;
  }
  
  /* Overlay when menu is open */
  .menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}

/* Extra small mobile screens - prevent contact info from overlapping hamburger */
@media (max-width: 375px) {
  /* Hide contact details in header to save space */
  .mobile-contact-info {
    display: none !important;
  }

  /* Reduce padding and adjust layout for very small screens */
  .header-container {
    padding: 15px 75px 15px 15px; /* Increased right padding to 75px for more hamburger space */
  }
  
  /* Make mobile contact info smaller and more compact */
  .mobile-contact-info {
    gap: 8px; /* Reduced from 12px */
    margin-left: 10px; /* Reduced from 20px */
  }
  
  .mobile-contact-item {
    gap: 4px; /* Reduced from 6px */
    font-size: 11px; /* Reduced from 11px */
  }
  
  .mobile-contact-item .contact-icon {
    font-size: 12px; /* Reduced from 10px */
  }
  
  .mobile-contact-item .contact-text {
    font-size: 11px; /* Reduced from 11px */
  }
  
  /* Make logo slightly smaller */
  .logo-image {
    height: 100px; /* Reduced from 35px */
  }
  
  /* Reduce margin between logo and contact info */
  .header-logo {
    margin-right: 8px; /* Reduced from 12px */
  }

  .nav-link {
    font-size: 14px; /* Slightly reduce font size for better fit */
    padding: var(--space-3) 16px; /* Adjust padding */
  }
}

/* Ultra small mobile screens (320px and less) - maximum space optimization */
@media (max-width: 320px) {
  /* Further optimize header padding for smallest screens */
  .header-container {
    padding: 12px 80px 12px 10px; /* Even more right padding and less left padding */
  }
  /* Make mobile contact info even more compact */
  .mobile-contact-info {
    gap: 6px; /* Further reduced from 8px */
    margin-left: 5px; /* Further reduced from 10px */
  }
  
  .mobile-contact-item {
    gap: 3px; /* Further reduced from 4px */
    font-size: 9px; /* Further reduced from 10px */
  }
  
  .mobile-contact-item .contact-icon {
    font-size: 8px; /* Further reduced from 9px */
  }
  
  .mobile-contact-item .contact-text {
    font-size: 9px; /* Further reduced from 10px */
    max-width: 60px; /* Limit text width */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Make logo even smaller for ultra-compact layout */
  .logo-image {
    height: 100px; /* Further reduced from 32px */
  }
  
  /* Minimal margin between logo and contact info */
  .header-logo {
    margin-right: 5px; /* Further reduced from 8px */
  }
  
  /* Consider hiding the second contact item on extremely small screens */
  .mobile-contact-item:last-child {
    display: none; /* Hide phone number, keep only location */
  }
}
/* ===================================
   SECTION SPACING
   =================================== */

.section-spacing {
  padding: var(--space-16) 0;
}

.section-spacing-lg {
  padding: var(--space-32) 0;
}

.section-spacing-sm {
  padding: var(--space-16) 0;
}

/* Responsive Section Spacing for Mobile Devices */

/* Tablet and Small Desktop (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .section-spacing {
    padding: var(--space-12) 0;
  }

  .section-spacing-lg {
    padding: var(--space-20) 0;
  }

  .section-spacing-sm {
    padding: var(--space-10) 0;
  }

  .section-title.animate {
    font-size: 28px;
  }
}

/* Tablet (431px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
  .section-spacing {
    padding: var(--space-10) 0;
  }

  .section-spacing-lg {
    padding: var(--space-16) 0;
  }

  .section-spacing-sm {
    padding: var(--space-8) 0;
  }

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

/* Mobile Large (376px - 430px) */
@media (min-width: 376px) and (max-width: 430px) {
  .section-spacing {
    padding: 0px;
  }

  .section-spacing-lg {
    padding: var(--space-12) 0;
  }

  .section-spacing-sm {
    padding: var(--space-6) 0;
  }

  .section-title.animate {
    font-size: 22px;
  }
}

/* Mobile Medium (321px - 375px) */
@media (min-width: 321px) and (max-width: 375px) {
  .section-spacing {
    padding: var(--space-6) 0;
  }

  .section-spacing-lg {
    padding: var(--space-10) 0;
  }

  .section-spacing-sm {
    padding: var(--space-4) 0;
  }

  .section-title.animate {
    font-size: 22px;
  }
}

/* Mobile Small (320px and below) */
@media (max-width: 320px) {
  .section-spacing {
    padding: 0px;
  }

  .section-spacing-lg {
    padding: var(--space-8) 0;
  }

  .section-spacing-sm {
    padding: var(--space-3) 0;
  }
}

/* ===================================
   REUSABLE SECTION TITLES
   =================================== */

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  color: #6B7280;
  margin-bottom: var(--space-8);
  margin-top: var(--space-8);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Section title alignment variants */
.section-title--center {
  text-align: center;
}

.section-title--left {
  text-align: left;
}

/* Section title size variants */
.section-title--large {
  font-size: 48px;
}

.section-title--medium {
  font-size: 36px;
}

.section-title--small {
  font-size: 28px;
  font-weight: 700;
  color: #374151;
}

/* ===================================
   HERO SECTION - WITH SLIDE ANIMATIONS
   =================================== */

.hero-section {
  position: relative;
  height: 80vh;
  max-height: 1600px;
  display: flex;
  align-items: top;
  background: url("/assets/about_section-f6fc9811.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--neutral-white);
  overflow: hidden;
  margin-top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4);
}

/* Hero Elements - Initial Hidden State */
.hero-title {
  font-size: 48px;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-3);
  color: var(--neutral-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* Animation Setup */
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle {
  font-size: 32px;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  /* Animation Setup */
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.3s;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.8);
  width: 550px;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.6s;
}

.hero-actions {
  /* Animation Setup */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.9s;
}

.btn-hero-cta {
  background-color: var(--accent-orange);
  color: var(--neutral-white);
  padding: var(--space-6) var(--space-12);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-hero-cta:hover::before {
  left: 100%;
}

/* Animated State - When page loads */
.hero-content.animate .hero-title {
  opacity: 1;
  transform: translateX(0);
}

.hero-content.animate .hero-subtitle {
  opacity: 1;
  transform: translateX(0);
}

.hero-content.animate .hero-description {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.animate .hero-actions {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Pulse animation for the button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(207, 67, 28, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(207, 67, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(207, 67, 28, 0);
  }
}

.hero-content.animate .btn-hero-cta {
  animation: pulse 2s infinite;
  animation-delay: 2s;
}

/* Background image zoom effect */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/about_section-f6fc9811.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 8s ease-out;
  z-index: -1;
}

.hero-section.animate::before {
  transform: scale(1);
}

/* Floating particles effect */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: float 20s infinite linear;
  opacity: 0;
  transition: opacity 2s ease-in;
}

.hero-section.animate::after {
  opacity: 1;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-10px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

.btn-hero-cta:hover {
  background-color: var(--accent-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(207, 67, 28, 0.4);
  color: var(--neutral-white);
}

/* ===================================
   HERO SECTION - RESPONSIVE DESIGN
   =================================== */

/* Mobile screens - less than 425px */
@media (max-width: 425px) {
  .hero-section {
    height: 70vh;
    max-height: 500px;
    background-attachment: scroll; /* Better performance on mobile */
  }
  
  .hero-content {
    max-width: 100%;
    padding: var(--space-6) var(--space-3);
    text-align: center;
  }
  
  .hero-title {
    font-size: 20px;
    margin-bottom: var(--space-2);
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: var(--space-4);
  }
  
  .hero-description {
    font-size: 14px;
    width: 100%;
    margin-bottom: var(--space-6);
    line-height: 1.5;
  }
  
  .btn-hero-cta {
    padding: var(--space-4) var(--space-8);
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 375px) {
  .btn-hero-cta {
    padding: var(--space-3) var(--space-6);
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

@media (min-width: 426px) and (max-width: 600px) {
  .hero-section {
    height: 75vh;
    max-height: 600px;
    background-attachment: scroll;
  }
  
  .hero-content {
    max-width: 90%;
    padding: var(--space-7) var(--space-4);
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
    margin-bottom: var(--space-3);
  }
  
  .hero-subtitle {
    font-size: 24px;
    margin-bottom: var(--space-5);
  }
  
  .hero-description {
    font-size: 18px;
    width: 100%;
  }
  
  .btn-hero-cta {
    padding: var(--space-5) var(--space-10);
    font-size: 14px;
  }
}

/* Tablet screens - 601px to 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-section {
    height: 80vh;
    max-height: 700px;
  }
  
  .hero-content {
    max-width: 700px;
    padding: var(--space-8) var(--space-6);
    text-align: left;
  }
  
  .hero-title {
    font-size: 34px;
    margin-bottom: var(--space-3);
  }
  
  .hero-subtitle {
    font-size: 24px;
    margin-bottom: var(--space-5);
  }
  
  .hero-description {
    font-size: 18px;
    width: 100%;
    max-width: 600px;
  }
  
  .btn-hero-cta {
    padding: var(--space-5) var(--space-11);
    font-size: 24px;
  }
}

/* ===================================
   SERVICES SECTION - WITH ANIMATIONS
   =================================== */

.services-section {
  background: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.services-bg-container {
  border-radius: 20px;
  position: relative;
  padding: 60px 40px 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-bg-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.13;
  border-radius: 20px;
}

/* Services Title Animation */
.services-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  color: #6B7280;
  text-align: left;
  margin-bottom: var(--space-8);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.services-scroll-container {
  overflow-x: auto;
  position: relative;
  z-index: 2;
  padding-top: var(--space-6);
  scroll-margin-top: 100px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Services Cards Container */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: stretch;
  margin: 0 auto;
  width: 100%;
}

/* Service Card Animations */
.service-card {
  background: var(--neutral-white);
  border: 1px solid var(--primary-blue);
  box-shadow: 0px 0px 30px rgba(8, 73, 81, 0.06);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 16px;
  text-align: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered Animation Delays */
.service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.service-card:nth-child(2) {
  transition-delay: 0.3s;
}

.service-card:nth-child(3) {
  transition-delay: 0.5s;
}

.service-card:nth-child(4) {
  transition-delay: 0.7s;
}

.service-card:nth-child(5) {
  transition-delay: 0.9s;
}

/* Service Card Image */
.service-header-image {
  width: 100%;
  height: 60px;
  overflow: hidden;
  border-radius: 6px;
  margin: 3px 0;
  flex-shrink: 0;
}

.service-thumb {
  width: 100%;
  height: 60px;
  object-fit: cover;
  display: block;
}

/* Animated State */
.service-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0px 20px 50px rgba(8, 73, 81, 0.15);
  border-color: var(--accent-orange);
}

/* Card Background Shimmer Effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(8, 73, 81, 0.1), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.service-card:hover::before {
  left: 100%;
}

/* Icon Animation */
.service-icon {
  width: 30px;
  height: 30px;
  color: var(--primary-blue);
  flex: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  margin: 0 auto 6px auto;
}

.service-card:hover .service-icon {
  color: var(--accent-orange);
  transform: scale(1.2) rotate(5deg);
}

/* Icon Pulse Animation */
@keyframes iconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.service-card.animate .service-icon {
  animation: iconPulse 2s ease-in-out 1s;
}

.service-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: #F8FAFB;
  text-align: left;
  width: 100%;
  flex: none;
  position: relative;
  z-index: 2;
  margin-bottom: 3px;
  /* Animation setup - visible by default */
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-title {
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.service-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  margin: 10px;
  /* Animation setup - visible by default */
  opacity: 1;
  transform: translateY(0);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.service-card:hover .service-text {
  color: #2a2727;
}

/* Enhanced Button Styling */
.btn-service-learn {
  background-color: var(--primary-blue);
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral-white);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary-blue);
  opacity: 0;
  transform: translateY(30px);
  width: auto;
  align-self: center;
  margin-top: auto;
}

/* Button Hover Effects */
.btn-service-learn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(207, 67, 28, 0.3);
}

/* Button Shimmer Effect */
.btn-service-learn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.btn-service-learn:hover::before {
  left: 100%;
}

/* Service Card Content Animation on Scroll */
.service-card .service-title,
.service-card .service-text,
.service-card .btn-service-learn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card .service-title {
  transition-delay: 0.1s;
}

.service-card .service-text {
  transition-delay: 0.2s;
}

.service-card .btn-service-learn {
  transition-delay: 0.3s;
}

.service-card.animate .service-title,
.service-card.animate .service-text,
.service-card.animate .btn-service-learn {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Animation for Cards */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-card.animate:hover {
  animation: float 3s ease-in-out infinite;
}

/* Services Responsive Design */

/* Desktop Medium (1025px - 1400px) */
@media (min-width: 1025px) {
  .services-bg-container {
    padding: 50px 30px 70px;
  }
  
  .services-title {
    font-size: 38px;
  }
  
  .services-cards {
    gap: 18px;
    max-width: 900px;
  }
  
  .service-card {
    padding: 14px;
  }
  
  .service-icon {
    width: 28px;
    height: 28px;
  }
  
  .service-hero-title {
    font-size: 26px;
  }
  
  .service-text {
    font-size: 14px;
    line-height: 13px;
  }
  
  .btn-service-learn {
    padding: 7px 14px;
    font-size: 14px;
  }

  .faq-section[data-controller="faq-animation"] .faq-title.animate {
    font-size: 40px;
    padding-bottom: 30px
  }
}


/* Tablet Large (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .services-bg-container {
    padding: 40px 25px 60px;
    border-radius: 16px;
  }
  
  .services-title {
    font-size: 34px !important;
    text-align: center;
    margin-bottom: var(--space-6);
  }
  
  .services-scroll-container {
    max-width: 100%;
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
  }
  
  .service-card {
    padding: 12px;
  }
  
  .service-icon {
    width: 26px;
    height: 26px;
  }
  
  .service-hero-title {
    font-size: 30px !important;
    text-align: center;
  }
  
  .service-text {
    font-size: 14px !important;
    line-height: 12px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
  
  .btn-service-learn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .btn-appointment-main {
    padding: var(--space-8) var(--space-8);
    font-size: 16px;
  }
}

/* Tablet (431px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
  .services-bg-container {
    padding: 35px 20px 50px;
    border-radius: 12px;
  }
  
  .services-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: var(--space-5);
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 500px;
  }
  
  .service-card {
    padding: 10px;
    border-radius: 12px;
  }
  
  .service-header-image {
    height: 50px;
  }
  
  .service-thumb {
    height: 50px;
  }
  
  .service-icon {
    width: 24px;
    height: 24px;
  }
  
  .service-hero-title {
    font-size: 20px;
    text-align: center;
  }
  
  .service-text {
    font-size: 9px;
    line-height: 11px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .btn-service-learn {
    padding: 6px 10px;
    font-size: 8px;
    border-radius: 16px;
  }
  
  .btn-appointment-main {
    padding: var(--space-6) var(--space-6);
    font-size: 14px;
  }
}

/* Mobile Large (376px - 430px) */
@media (min-width: 376px) and (max-width: 430px) {
  .services-bg-container {
    padding: 30px 15px 40px;
    border-radius: 10px;
  }
  
  .services-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: var(--space-4);
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 320px;
  }
  
  .service-card {
    padding: 12px;
    border-radius: 10px;
    max-width: 100%;
    margin: 0;
  }
  
  .service-header-image {
    height: 45px;
  }
  
  .service-thumb {
    height: 45px;
  }
  
  .service-icon {
    width: 22px;
    height: 22px;
  }
  
  .service-hero-title {
    font-size: 18px;
    text-align: center;
  }
  
  .service-text {
    font-size: 14px !important;
    line-height: 11px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .btn-service-learn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 14px;
  }
  
  .btn-appointment-main {
    padding: var(--space-5) var(--space-5);
    font-size: 13px;
  }
}

/* Mobile Medium (321px - 375px) */
@media (max-width: 375px) {
  .services-bg-container {
    padding: 25px 12px 35px;
    border-radius: 8px;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 280px;
  }
  
  .service-card {
    padding: 10px;
    border-radius: 8px;
  }
  
  .service-header-image {
    height: 40px;
  }
  
  .service-thumb {
    height: 40px;
  }
  
  .service-icon {
    width: 20px;
    height: 20px;
  }
  
  .service-hero-title {
    font-size: 16px !important;
    text-align: center;
    margin-bottom: var(--space-3);
  }
  
  .service-text {
    font-size: 12px;
    line-height: 10px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .btn-service-learn {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 12px;
  }
  
  .btn-appointment-main {
    padding: var(--space-4) var(--space-4);
    font-size: 12px;
  }

  .services-bg-container {
    padding: 20px 10px 30px;
    border-radius: 6px;
  }
  
  .services-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: var(--space-2);
  }
  
  .service-card .service-title {
    transition-delay: 0.1s;
    padding-top: 20px;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 260px;
  }
  
  .service-card {
    padding: 8px;
    border-radius: 6px;
  }
  
  .service-header-image {
    height: 35px;
  }
  
  .service-thumb {
    height: 35px;
  }
  
  .service-icon {
    width: 18px;
    height: 18px;
  }
  
  .service-hero-title {
    font-size: 14px;
    text-align: left;
  }

  .btn-appointment-main {
    padding: var(--space-3) var(--space-3);
    font-size: 11px;
  }
}

/* Schedule Appointment Button - Animated */
.btn-appointment-main {
  background-color: var(--accent-orange);
  color: var(--neutral-white);
  padding: var(--space-10) var(--space-10);
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--accent-orange);
  /* Animation Setup - Hidden Initially */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated State */
.btn-appointment-main.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: appointmentPulse 2.5s infinite;
  animation-delay: 1s;
}

/* Enhanced Hover Effects */
.btn-appointment-main:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(207, 67, 28, 0.3);
  color: var(--neutral-white);
  animation: appointmentFloat 2s ease-in-out infinite;
}

/* Shimmer Effect */
.btn-appointment-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn-appointment-main:hover::before {
  left: 100%;
}

/* Pulse Animation after scroll animation */
@keyframes appointmentPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(207, 67, 28, 0.7);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(207, 67, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(207, 67, 28, 0);
  }
}

/* Floating effect on hover */
@keyframes appointmentFloat {
  0%, 100% {
    transform: translateY(-8px) scale(1.05);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
  }
}

/* Glowing border effect */
.btn-appointment-main.animate::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-orange), var(--primary-blue), var(--accent-orange));
  border-radius: var(--radius-full);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-appointment-main:hover::after {
  opacity: 0.7;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Ripple effect for button clicks */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar styling for services */
.services-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.services-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.services-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
}

.services-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}


/* ===================================
   CONTACT SECTION - FULL WIDTH LAYOUT
   =================================== */

.contact-section {
  background: var(--neutral-white);
  padding: var(--space-16) 0;
}

/* Override container width for contact section */
.contact-section .container {
  max-width: 800px;
}

/* Contact Flash Messages */
.contact-flash-message {
  background: #10B981;
  color: white;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  animation: slideInDown 0.5s ease-out;
}

.contact-flash-message.contact-flash-alert {
  background: #EF4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.contact-flash-message .flash-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.contact-flash-message .flash-content svg {
  flex-shrink: 0;
}

.contact-flash-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  margin-left: var(--space-4);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-flash-close:hover {
  opacity: 1;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.contact-title {
  /* Uses base section-title class, only override margin-bottom */
  margin-bottom: var(--space-3);
}

.contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section[data-controller="contact-animation"] .contact-title {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
}

.contact-main-container {
  margin: 0 auto;
}

/* Contact Info + Form Container */
.contact-left-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-section[data-controller="contact-animation"] .contact-left-content {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
}

/* Contact Information Grid - 2x2 grid for 800px container */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-card {
  background: #F8FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  transition: all 0.3s ease;
  width: 100%;
}

.contact-info-card:hover {
  background: #F3F4F6;
  border-color: #CF431C;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 67, 28, 0.1);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #CF431C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-info-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #6B7280;
  margin-bottom: var(--space-2);
}

.contact-info-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: var(--space-1);
}

.contact-link, .contact-phone, .contact-email {
  color: #CF431C;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 12px
}

.contact-link:hover, .contact-phone:hover, .contact-email:hover {
  color: #B83A17;
  text-decoration: underline;
}

.contact-note {
  font-size: 12px !important;
  color: #9CA3AF !important;
  margin-bottom: 0 !important;
}

/* Opening Hours Specific Styles */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid #E5E7EB;
}

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

.hours-item.closed {
  opacity: 0.6;
}

.hours-item .day {
  font-weight: 500;
  color: #374151;
  font-size: 12px;
  margin-right: 10px;
}

.hours-item .time {
  color: #CF431C;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
}

.hours-item.closed .time {
  color: #9CA3AF;
}

/* Contact Form - Full Width */
.contact-form-side {
  width: 100%;
}

.contact-form-container {
  background: #F8FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: var(--space-10);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.form-header h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #6B7280;
  margin-bottom: var(--space-3);
}

.form-header p {
  color: #6B7280;
  font-size: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form-row {
  display: flex;
  gap: var(--space-6);
}

.form-group {
  flex: 1;
  position: relative;
}

.form-group.full-width {
  flex: none;
  width: 100%;
}

.form-input, .form-select {
  width: 100%;
  padding: 22px 24px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #374151;
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: #CF431C;
  box-shadow: 0 0 0 3px rgba(207, 67, 28, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.form-textarea {
  min-height: 200px;
  resize: vertical;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.form-actions {
  text-align: center;
  margin-top: var(--space-6);
}

.btn-contact-submit {
  background: #CF431C;
  color: white;
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-4);
  display: inline-block;
}

.btn-contact-submit:hover {
  background: var(--accent-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--neutral-white);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: #6B7280;
  font-size: 16px;
  margin: 0;
}

.form-note svg {
  color: #10B981;
}

/* Responsive Design for Contact Section */

/* Desktop Medium (1025px - 1400px) */
@media (min-width: 1025px) {
  .contact-section {
    padding: var(--space-14) 0;
  }
  
  .contact-section .container {
    max-width: 750px;
  }
  
  .contact-header {
    margin-bottom: var(--space-10);
  }
  
  .contact-subtitle {
    font-size: 17px;
    max-width: 550px;
  }
  
  .contact-info-grid {
    max-width: 750px;
    gap: var(--space-5);
    margin-bottom: var(--space-7);
  }
  
  .contact-info-card {
    padding: var(--space-5);
  }
  
  .contact-info-content h3 {
    font-size: 17px;
  }
  
  .contact-info-content p {
    font-size: 11px;
  }
  
  .contact-form-container {
    padding: var(--space-8);
    max-width: 750px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .form-header h3 {
    font-size: 26px;
  }
  
  .form-header p {
    font-size: 17px;
  }
  
  .form-input, .form-select {
    padding: 20px 22px;
    font-size: 18px;
  }
}

/* Tablet Large (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .contact-section {
    padding: var(--space-12) 0;
  }
  
  .contact-section .container {
    max-width: 650px;
    padding: 0 var(--space-4);
  }
  
  .contact-header {
    margin-bottom: var(--space-8);
  }
  
  .contact-subtitle {
    font-size: 20px;
    max-width: 500px;
  }
  
  .contact-info-grid {
    max-width: 650px;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }
  
  .contact-info-card {
    padding: var(--space-4);
  }
  
  .contact-info-icon {
    width: 44px;
    height: 44px;
  }
  
  .contact-info-content h3 {
    font-size: 16px;
  }
  
  .contact-info-content p {
    font-size: 11px;
  }
  
  .contact-form-container {
    max-width: 650px;
    padding: var(--space-8);
    margin: 0 auto;
    border-radius: 14px;
  }

  .form-header h3 {
    font-size: 18px;
  }
  
  .form-header p {
    font-size: 16px;
  }
  
  .form-input, .form-select {
    padding: 18px 20px;
    font-size: 14px;
  }

  .form-select {
    background-size: 15px;
    background-position: right 15px center;
  }

  .form-textarea {
    min-height: 180px;
  }
  
  .btn-contact-submit {
    padding: var(--space-3) var(--space-5);
    font-size: 13px;
  }
}

/* Tablet (431px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
  .contact-section {
    padding: var(--space-10) 0;
  }
  
  .contact-section .container {
    max-width: 500px;
    padding: 0 var(--space-3);
  }
  
  .contact-header {
    margin-bottom: var(--space-6);
  }
  
  .contact-subtitle {
    font-size: 15px;
    max-width: 450px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }
  
  .contact-info-card {
    padding: var(--space-4);
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-info-content h3 {
    font-size: 15px;
  }
  
  .contact-info-content p {
    font-size: 10px;
  }
  
  .hours-item .day,
  .hours-item .time {
    font-size: 11px;
  }
  
  .contact-form-container {
    padding: var(--space-6);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
  }

  .form-row {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .form-header h3 {
    font-size: 17px;
  }
  
  .form-header p {
    font-size: 15px;
  }
  
  .form-input, .form-select {
    padding: 16px 18px;
    font-size: 13px;
  }

  .form-select {
    background-size: 14px;
    background-position: right 14px center;
  }

  .form-textarea {
    min-height: 160px;
  }
  
  .btn-contact-submit {
    width: 100%;
    padding: 18px 36px;
    font-size: 13px;
  }
}

/* Mobile Large (376px - 430px) */
@media (min-width: 376px) and (max-width: 430px) {
  .contact-section {
    padding: var(--space-8) 0;
  }
  
  .contact-section .container {
    max-width: 350px;
    padding: 0 var(--space-2);
  }
  
  .contact-header {
    margin-bottom: var(--space-5);
  }
  
  .contact-subtitle {
    font-size: 14px;
    max-width: 320px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
  }
  
  .contact-info-card {
    padding: var(--space-3);
    gap: var(--space-3);
  }
  
  .contact-info-icon {
    width: 36px;
    height: 36px;
  }
  
  .contact-info-content h3 {
    font-size: 14px;
    margin-bottom: var(--space-1);
  }
  
  .contact-info-content p {
    font-size: 9px;
  }
  
  .hours-item .day,
  .hours-item .time {
    font-size: 10px;
  }
  
  .contact-form-container {
    padding: var(--space-5);
    max-width: 350px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .form-row {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .form-header {
    margin-bottom: var(--space-6);
  }
  
  .form-header h3 {
    font-size: 18px;
  }
  
  .form-header p {
    font-size: 14px;
  }
  
  .form-input, .form-select {
    padding: 14px 16px;
    font-size: 14px !important;
  }

  .form-select {
    background-size: 13px;
    background-position: right 12px center;
  }

  .form-textarea {
    min-height: 140px;
  }
  
  .btn-contact-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 12px;
  }
  
  .form-note {
    font-size: 11px !important;
  }
}

/* Mobile Medium (321px - 375px) */
@media (min-width: 321px) and (max-width: 375px) {
  .contact-section {
    padding: var(--space-6) 0;
  }
  
  .contact-section .container {
    max-width: 320px;
    padding: 0 var(--space-2);
  }
  
  .contact-header {
    margin-bottom: var(--space-4);
  }
  
  .contact-subtitle {
    font-size: 13px;
    max-width: 290px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-bottom: var(--space-3);
  }
  
  .contact-info-card {
    padding: var(--space-2);
  }
  
  .contact-info-icon {
    width: 32px;
    height: 32px;
  }
  
  .contact-info-content h3 {
    font-size: 13px;
    margin-bottom: var(--space-1);
  }
  
  .contact-info-content p {
    font-size: 8px;
  }
  
  .hours-item .day,
  .hours-item .time {
    font-size: 9px;
  }
  
  .contact-form-container {
    padding: var(--space-4);
    max-width: 320px;
    margin: 0 auto;
    border-radius: 8px;
  }

  .form-row {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .form-header {
    margin-bottom: var(--space-5);
  }
  
  .form-header h3 {
    font-size: 15px;
  }
  
  .form-header p {
    font-size: 13px;
  }
  
  .form-input, .form-select {
    padding: 12px 14px;
    font-size: 11px;
  }

  .form-select {
    background-size: 12px;
    background-position: right 10px center;
  }

  .form-textarea {
    min-height: 120px;
  }
  
  .btn-contact-submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 11px;
  }
  
  .form-note {
    font-size: 10px;
  }
}

/* Mobile Small (320px and below) */
@media (max-width: 320px) {
  .contact-section {
    padding: var(--space-4) 0;
  }
  
  .contact-section .container {
    max-width: 280px;
    padding: 0 var(--space-1);
  }
  
  .contact-header {
    margin-bottom: var(--space-3);
  }
  
  .contact-subtitle {
    font-size: 12px;
    max-width: 260px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    gap: var(--space-1);
    margin-bottom: var(--space-2);
  }
  
  .contact-info-card {
    padding: var(--space-2);
    gap: var(--space-2);
  }
  
  .contact-info-icon {
    width: 28px;
    height: 28px;
  }
  
  .contact-info-content h3 {
    font-size: 12px;
    margin-bottom: var(--space-1);
  }
  
  .contact-info-content p {
    font-size: 7px;
  }
  
  .hours-item {
    padding: var(--space-1) 0;
  }
  
  .hours-item .day,
  .hours-item .time {
    font-size: 8px;
  }
  
  .contact-form-container {
    padding: var(--space-3);
    max-width: 280px;
    margin: 0 auto;
    border-radius: 6px;
  }

  .form-row {
    flex-direction: column;
    gap: var(--space-1);
  }
  
  .form-header {
    margin-bottom: var(--space-4);
  }
  
  .form-header h3 {
    font-size: 14px;
  }
  
  .form-header p {
    font-size: 12px;
  }
  
  .form-input, .form-select {
    padding: 10px 12px;
    font-size: 10px;
  }

  .form-select {
    background-size: 11px;
    background-position: right 8px center;
  }

  .form-textarea {
    min-height: 100px;
  }
  
  .btn-contact-submit {
    width: 100%;
    padding: 12px 24px;
    font-size: 10px;
  }
  
  .form-note {
    font-size: 12px;
  }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
  background: var(--neutral-white);
  padding: var(--space-12) 0;
}

/* Override container width for FAQ section */
.faq-section .container {
  max-width: 800px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}

/* FAQ title - now uses base section-title class with center alignment */

/* Animation states for FAQ */
.faq-section[data-controller="faq-animation"] .faq-title {
  opacity: 0;
  transform: translateY(20px);
  color: #6B7280;
}

.faq-section[data-controller="faq-animation"] .faq-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  background: var(--neutral-white);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation states for FAQ items */
.faq-section[data-controller="faq-animation"] .faq-item {
  opacity: 0;
  transform: translateY(30px);
}

.faq-section[data-controller="faq-animation"] .faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.faq-section[data-controller="faq-animation"] .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-section[data-controller="faq-animation"] .faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-section[data-controller="faq-animation"] .faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-section[data-controller="faq-animation"] .faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-section[data-controller="faq-animation"] .faq-item:nth-child(5) { transition-delay: 0.5s; }
.faq-section[data-controller="faq-animation"] .faq-item:nth-child(6) { transition-delay: 0.6s; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  background: var(--neutral-white);
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
}

.faq-question:hover {
  background: #F9FAFB;
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #374151;
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: #6B7280;
  min-width: 24px;
  text-align: center;
}

.faq-answer {
  padding: var(--space-4) var(--space-6) var(--space-10) var(--space-6); /* Increased bottom padding for more space */
  background: var(--neutral-white);
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8; /* Increased line height for better readability */
  color: #6B7280;
  margin: 0 0 var(--space-4) 0; /* Add bottom margin for spacing after text */
}


/* Responsive Design for FAQ Section */

/* Desktop Medium (1025px - 1400px) */
@media (min-width: 1025px) {
  .faq-section {
    padding: var(--space-10) 0;
  }
  
  .faq-section .container {
    max-width: 750px;
  }
  
  .faq-list {
    max-width: 750px;
    gap: var(--space-4);
  }
  
  .faq-question {
    padding: var(--space-4) var(--space-5);
    font-size: 18px;
  }
  
  .faq-icon {
    font-size: 22px;
    min-width: 22px;
  }
  
  .faq-answer {
    padding: var(--space-3) var(--space-5) var(--space-8) var(--space-5);
  }
  
  .faq-answer p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* Tablet Large (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .faq-section {
    padding: var(--space-8) 0;
  }
  
  .faq-section .container {
    max-width: 650px;
    padding: 0 var(--space-4);
  }
  
  .faq-question {
    font-size: 20px !important
  }

  .faq-list {
    max-width: 650px;
    gap: var(--space-3);
  }

  .faq-icon {
    font-size: 20px;
    min-width: 20px;
  }
  
  .faq-answer {
    padding: var(--space-3) var(--space-5) var(--space-6) var(--space-5);
  }
  
  .faq-answer p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 var(--space-3) 0;
  }
}

/* Tablet (431px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
  .faq-section {
    padding-top: var(--space-10) 0;
  }
  
  .faq-section .container {
    max-width: 500px;
    padding: 0 var(--space-3);
  }
  
  .faq-list {
    max-width: 500px;
    gap: var(--space-3);
  }
  
  .faq-question {
    padding: var(--space-3) var(--space-4);
    font-size: 11px;
    line-height: 1.3;
  }
  
  .faq-icon {
    font-size: 18px;
    min-width: 18px;
  }
  
  .faq-answer {
    padding: var(--space-2) var(--space-4) var(--space-5) var(--space-4);
  }
  
  .faq-answer p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 var(--space-2) 0;
  }
}

/* Mobile Large (376px - 430px) */
@media (min-width: 376px) and (max-width: 430px) {
  /* FAQ Title with bottom padding */
  .faq-section[data-controller="faq-animation"] .faq-title.animate {
    padding-bottom: var(--space-6); /* 24px bottom padding */
  }

  .faq-section .container {
    max-width: 350px;
    padding: 0 var(--space-2);
  }
  
  .faq-list {
    max-width: 350px;
    gap: var(--space-2);
  }
  
  .faq-question {
    font-size: 14px;
    line-height: 1.2;
  }
  
  .faq-icon {
    font-size: 16px;
    min-width: 16px;
  }
  
  .faq-answer {
    padding: var(--space-2) var(--space-3) var(--space-4) var(--space-3);
  }
  
  .faq-answer p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 var(--space-2) 0;
  }
}

/* Mobile (max 375px) - Consolidated FAQ styles */
@media (max-width: 375px) {
  /* FAQ Section Layout */
  .faq-section {
    padding: var(--space-10) 0;
  }
  
  .faq-section .container {
    max-width: 320px;
    padding: 0 var(--space-2);
  }
  
  .faq-list {
    max-width: 320px;
    gap: var(--space-2);
  }

  /* FAQ Title Animation */
  .faq-section[data-controller="faq-animation"] .faq-title.animate {
    opacity: 1;
    transform: translateY(0);
    font-size: 22px; /* Smaller font size for mobile */
    padding-top: var(--space-6); /* Added padding underneath FAQ title */
    padding-bottom: var(--space-6);
    justify-content: center; /* Center the FAQ title on mobile */
  }

  /* FAQ Questions & Answers */
  .faq-question {
    font-size: 12px;
    line-height: 1.2;
  }
  
  .faq-icon {
    font-size: 14px;
    min-width: 14px;
  }
  
  .faq-answer {
    padding: var(--space-2) var(--space-3) var(--space-3) var(--space-3);
  }
  
  .faq-answer p {
    font-size: 11px;
    line-height: 1.3;
    margin: 0 0 var(--space-1) 0;
  }
}

/* Mobile Small (320px and below) */
@media (max-width: 320px) {
  .faq-section {
    padding: var(--space-3) 0;
  }
  
  .faq-section .container {
    max-width: 280px;
    padding: 0 var(--space-1);
  }
  
  .faq-list {
    max-width: 280px;
    gap: var(--space-1);
  }
  
  .faq-title {
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .faq-question {
    padding: var(--space-2) var(--space-2);
    font-size: 8px;
    line-height: 1.1;
  }
  
  .faq-icon {
    font-size: 12px;
    min-width: 12px;
  }
  
  .faq-answer {
    padding: var(--space-1) var(--space-2) var(--space-3) var(--space-2);
  }
  
  .faq-answer p {
    font-size: 10px;
    line-height: 1.2;
    margin: 0 0 var(--space-1) 0;
  }
}

/* ===================================
   ENHANCED POSTS SECTION
   =================================== */

.posts-section {
  background: var(--neutral-white);
  padding: var(--space-12) 0;
}

/* Override container width for posts and contact sections */
.posts-section .container,
.contact-section .container {
  max-width: 1400px;
}


.posts-section .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #6B7280;
  text-align: center;
  margin-bottom: var(--space-6);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header .posts-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.posts-section[data-controller="posts-animation"] .section-header h2 {
  opacity: 0;
  transform: translateY(20px);
}

.posts-section[data-controller="posts-animation"] .section-header h2.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Old posts-grid styles removed - now handled by blog.css */

.post-card {
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  flex: none;
  position: relative;
  /* Animation Setup - matching service cards */
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered Animation Delays for Posts */
.posts-section[data-controller="posts-animation"] .post-card:nth-child(1) {
  transition-delay: 0.1s;
}

.posts-section[data-controller="posts-animation"] .post-card:nth-child(2) {
  transition-delay: 0.3s;
}

.posts-section[data-controller="posts-animation"] .post-card:nth-child(3) {
  transition-delay: 0.5s;
}

/* Animated State */
.posts-section[data-controller="posts-animation"] .post-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover Effects for Posts */
.post-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Home posts section content */
.posts-section .post-content {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Home posts section date styling */
.posts-section .post-date {
  color: #9CA3AF;
  font-size: 14px;
  margin-bottom: var(--space-2);
}

.posts-section .post-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #374151;
  margin-bottom: var(--space-2);
}

.posts-section .post-content p {
  color: #6B7280;
  line-height: 1.6;
  margin-top: 20px;
}

.posts-cta {
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}

.posts-section[data-controller="posts-animation"] .posts-cta {
  opacity: 0;
  transform: translateY(20px);
}

.posts-section[data-controller="posts-animation"] .posts-cta.animate {
  opacity: 1;
  transform: translateY(0);
  padding: 20px
}

.btn-read-more {
  background: #CF431C;
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn-read-more:hover {
  background: #B83A17;
}

/* =====================================
   LEGACY POSTS STYLES - TO BE REMOVED
   Note: These old responsive styles conflict with blog.css
   All blog/posts styling should use blog.css instead
   ===================================== */

/* Responsive Design for Posts Section */

/* ===================================
   SURFACE DUO PRO OPTIMIZATION (540px - 720px)
   =================================== */
@media (min-width: 540px) and (max-width: 720px) {
  /* Navigation */
  .header-container {
    padding: 0 var(--space-3);
  }
  
  .nav-contact-bar {
    padding: 14px;
  }
  .nav-menu {
    gap: var(--space-3);
  }
  
  .nav-link {
    font-size: 13px;
    padding: var(--space-2) var(--space-3);
  }
  
  .btn-header-cta {
    padding: var(--space-2) var(--space-4);
    font-size: 12px;
  }
  
  /* Hero Section */
  .hero-section {
    padding: var(--space-14) 0;
    min-height: 450px;
  }
  
  .hero-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }
  
  .hero-content p {
    font-size: 16px;
    margin-bottom: var(--space-5);
    max-width: 500px;
  }
  
  .hero-buttons {
    gap: var(--space-3);
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: var(--space-3) var(--space-5);
    font-size: 14px;
  }
  
  /* About Section */
  .about-section {
    padding: var(--space-10) 0;
  }
  
  .about-header h2 {
    font-size: 28px;
  }
  
  .about-subtitle {
    font-size: 16px;
  }
  
  .about-lead {
    font-size: 16px;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .about-cta {
    flex-direction: row !important;
    gap: var(--space-3) !important;
    margin: 0 !important;
  }
  
  .about-cta .btn {
    flex: 1 !important;
    max-width: none !important;
    font-size: 12px !important;
  }
  
  /* Services Section */
  .services-section {
    padding: var(--space-8) 0;
  }
  
  .services-bg-container {
    padding: var(--space-8) var(--space-4) var(--space-10);
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: var(--space-5);
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    padding: 0 var(--space-2);
  }
  
  .service-card {
    padding: var(--space-4);
  }
  
  .service-title {
    font-size: 16px;
  }
  
  .service-description {
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* Contact Section */
  .contact-section {
    padding: var(--space-8) 0;
  }
  
  .contact-section .section-title {
    margin-bottom: var(--space-4) !important;
  }
  
  .contact-info-grid {
    max-width: 600px;
    gap: var(--space-3);
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
  }
  
  .contact-info-card {
    padding: var(--space-3) !important;
    font-size: 12px !important;
  }
  
  .contact-info-icon {
    width: 30px !important;
    height: 30px !important;
  }
  
  .contact-form-container {
    max-width: 500px;
    padding: var(--space-4);
  }
  
  .form-header h3 {
    font-size: 16px;
  }
  
  .form-header p {
    font-size: 13px;
  }
  
  .form-row {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .btn-contact-submit {
    width: 100%;
    padding: 14px 28px;
    font-size: 12px;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: var(--space-8) 0;
  }
  
  .faq-section .container {
    max-width: 600px;
  }
  
  .faq-title {
    text-align: left !important;
    margin-bottom: var(--space-4) !important;
    padding-left: var(--space-5) !important;
  }
  
  .faq-question {
    padding: var(--space-4) var(--space-5);
    font-size: 13px;
  }
  
  .faq-answer {
    padding: var(--space-3) var(--space-5) var(--space-6) var(--space-5);
  }
  
  /* Appointment CTA */
  .appointment-cta-section {
    padding: var(--space-8) 0;
    min-height: 300px;
  }
  
  .appointment-cta-content {
    max-width: 500px;
  }
  
  .appointment-cta-content h2 {
    font-size: 24px;
  }
  
  .appointment-cta-content p {
    font-size: 16px;
  }
  
  .appointment-cta-button .btn {
    width: 100%;
    max-width: 280px;
    padding: var(--space-3) var(--space-5);
  }

  .form-note {
    font-size: 11px;
    line-height: 1.3;
  }
  
  /* Footer Section */
  .footer-section {
    padding: var(--space-6) 0 !important;
    min-height: 200px !important;
  }
  
  .footer-contact {
    text-align: center !important;
  }
  
  .footer-contact .contact-info-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: var(--space-3) !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }
  
  .contact-item {
    text-align: center !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: var(--space-2) !important;
  }
  
  .footer-logo {
    width: 120px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
  
  .footer-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: var(--space-2) !important;
    text-align: center !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }
  
  .footer-links a {
    font-size: 12px !important;
  }
}

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

.footer-section {
  background: #F8FAFB;
  padding: var(--space-8) 0;
  border-top: 1px solid #E5E7EB;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-6);
  width: 100%;
  align-items: start;
}

.footer-column h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  margin-bottom: var(--space-3);
}

.footer-logo {
  margin-bottom: var(--space-3);
}

.footer-logo-link {
  display: block;
  text-decoration: none;
}

.footer-logo-image {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo-image {
  opacity: 0.8;
}

.footer-description {
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: var(--space-3);
  font-size: 12px;
}

.footer-contact {
  margin-bottom: var(--space-3);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
  color: #6B7280;
  font-size: 12px;
}

.contact-item .icon {
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #E5E7EB;
  border-radius: 6px;
  text-decoration: none;
  color: #6B7280;
  font-size: 12px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #5B8DB8;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-1);
}

.footer-links a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 12px;
}

.footer-links a:hover {
  color: #5B8DB8;
}

.opening-hours .hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-1);
  color: #6B7280;
  font-size: 12px;
}

.opening-hours .time {
  color: #CF431C;
  font-weight: 500;
  white-space: nowrap;
}
/* ================================
   FOOTER RESPONSIVE STYLES
   ================================ */
@media (max-width: 768px) {
  .footer-section {
    min-height: 200px;
    padding: var(--space-6) 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    text-align: center;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-logo-image {
    height: 100px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .opening-hours .hours-row {
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto var(--space-1) auto;
  }
}

/* Tablet Footer Adjustments */
@media (max-width: 768px) {
  .footer-section {
    min-height: 220px;
  }
  
  .footer-content {
    gap: var(--space-5);
  }
  
  .footer-column h4 {
    font-size: 15px;
  }
}

/* ================================
   REUSABLE HERO SECTION STYLES
   ================================ */

/* Page Hero Section - Reusable Component */
.page-hero,
.service-hero,
.faq-hero,
.blog-hero,
.post-hero {
  background: linear-gradient(135deg, #F8FAFB 0%, #E5E7EB 100%);
  padding: var(--space-16);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.page-hero-content,
.service-hero-content,
.faq-hero-content,
.blog-hero-content,
.post-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.page-hero-text,
.service-hero-text,
.faq-hero-text,
.blog-hero-text,
.post-hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  /* Animation Setup */
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-hero-title,
.service-title,
.faq-page-title {
  /* Blog and post titles - now use base section-title class with small variant */
  margin: var(--space-2);
  color: #f8f9fa;
}

.page-hero-subtitle,
.service-subtitle,
.faq-page-subtitle,
.blog-page-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #F8FAFB;
  margin-bottom: var(--space-6);
}

.page-hero-cta,
.service-cta,
.faq-hero-cta,
.blog-hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

.page-hero-image,
.service-hero-image,
.faq-hero-image,
.blog-hero-image,
.post-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.page-hero-img,
.service-image,
.faq-image,
.blog-image,
.post-image {
  width: 100%;
  max-width: 700px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hero-img:hover,
.service-image:hover,
.faq-image:hover,
.blog-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Desktop Medium (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .page-hero-content,
  .service-hero-content,
  .faq-hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .page-hero-text,
  .service-hero-text,
  .faq-hero-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    justify-content: center !important;
    margin: 0 auto !important;
    gap: var(--space-4) !important;
    position: relative !important;
    z-index: 2 !important;
  }
  
  .page-hero-title,
  .service-title,
  .faq-page-title {
    text-align: center;
    margin: 0 auto;
    font-size: 18px !important;
  }
  
  .page-hero-subtitle,
  .service-subtitle,
  .faq-page-subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
  }
  
  .page-hero-img,
  .service-image,
  .faq-image {
    max-width: 600px;
    height: 250px;
    margin: 0 auto;
  }
}

/* Tablet (431px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
  .page-hero,
  .service-hero,
  .faq-hero {
    min-height: 50vh;
    padding: var(--space-12) 0;
  }
  
  .page-hero-content,
  .service-hero-content,
  .faq-hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
    padding: 0 var(--space-3);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .page-hero-text,
  .service-hero-text,
  .faq-hero-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    justify-content: center !important;
    margin: 0 auto !important;
    gap: var(--space-4) !important;
    position: relative !important;
    z-index: 2 !important;
  }
  
  .page-hero-title,
  .service-title,
  .service-hero-title,
  .faq-page-title {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  
  .page-hero-subtitle,
  .service-subtitle,
  .faq-page-subtitle {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 500px !important;
    width: 100% !important;
  }
  
  .page-hero-img,
  .service-image,
  .faq-image {
    max-width: 300px;
    height: 220px;
  }
  
  .page-hero-cta,
  .service-cta,
  .faq-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }
  
  .page-hero-cta .btn,
  .service-cta .btn,
  .faq-hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Mobile Large (376px - 430px) */
@media (min-width: 376px) and (max-width: 430px) {
  .page-hero,
  .service-hero,
  .faq-hero {
    min-height: 75vh;
    padding: var(--space-10) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  /* Add overlay for better text readability */
  .page-hero::before,
  .service-hero::before,
  .faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .page-hero-content,
  .service-hero-content,
  .faq-hero-content {
    padding: 0 var(--space-2);
    gap: var(--space-5);
    grid-template-columns: 1fr;
    position: relative;
    z-index: 2;
  }
  
  .page-hero-title,
  .service-title,
  .faq-page-title {
    font-size: 18px !important;
    line-height: 1.2;
  }
  
  .page-hero-subtitle,
  .service-subtitle,
  .faq-page-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Hide the image container on mobile */
  .page-hero-image,
  .service-hero-image,
  .faq-hero-image {
    display: none;
  }
  
  .page-hero-cta .btn,
  .service-cta .btn,
  .faq-hero-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .posts-section .section-header h2 {
    font-size: 24px !important;
  }
}

/* Mobile Medium (321px - 375px) */
@media (max-width: 375px) {
  .page-hero,
  .service-hero,
  .faq-hero {
    min-height: 75vh;
    padding: var(--space-8) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  /* Add overlay for better text readability */
  .page-hero::before,
  .service-hero::before,
  .faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .page-hero-content,
  .service-hero-content,
  .faq-hero-content {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
  }
  
  .page-hero-title,
  .service-title,
  .faq-page-title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .page-hero-subtitle,
  .service-subtitle,
  .faq-page-subtitle {
    font-size: 14px !important;
    line-height: 1.4;
  }
  
  /* Hide the image container on mobile */
  .page-hero-image,
  .service-hero-image,
  .faq-hero-image {
    display: none;
  }
  
  .page-hero-cta .btn,
  .service-cta .btn,
  .faq-hero-cta .btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .btn-read-more {
    font-size: 12px;
  }
}

/* Mobile Extra Small (max 375px) - FAQ Page Optimization */
@media (max-width: 375px) {
  /* FAQ Hero Section */
  .faq-hero {
    min-height: 70vh;
    padding: var(--space-8) 0 var(--space-6);
  }
  
  .faq-hero-content {
    padding: 0 var(--space-2);
    gap: var(--space-4);
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .faq-hero-text {
    text-align: center;
  }
  
  .faq-page-title {
    font-size: 22px !important;
    line-height: 1.2;
    margin-bottom: var(--space-2);
  }
  
  .faq-page-subtitle {
    font-size: 14px !important;
    line-height: 1.4;
    margin-bottom: var(--space-4);
  }
  
  .faq-hero-image {
    display: none;
  }
  
  .faq-hero-cta {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .faq-hero-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
    margin-left: 15px;
  }
  
  /* FAQ Content */
  .faq-content {
    padding: var(--space-6) 0;
  }
  
  .faq-intro h2 {
    font-size: 20px !important;
    margin-bottom: var(--space-3);
    text-align: center;
  }
  
  .faq-intro p {
    font-size: 14px !important;
    line-height: 1.5;
    padding: 0 var(--space-2);
    text-align: center;
    margin-bottom: var(--space-5);
  }
  
  .faq-list-container {
    padding: 0 var(--space-2);
  }
  
  .faq-item-page {
    margin-bottom: var(--space-3);
  }
  
  .faq-question-page {
    padding: var(--space-3) var(--space-4) !important;
    font-size: 14px !important;
    text-align: left;
  }
  
  .question-text {
    font-size: 14px !important;
    line-height: 1.4;
  }
  
  .faq-icon-page {
    font-size: 18px !important;
  }
  
  .answer-content p {
    font-size: 13px !important;
    line-height: 1.5;
  }
  
  /* FAQ CTA Section */
  .faq-cta-section {
    padding: var(--space-6) 0;
  }
  
  .faq-cta-content {
    text-align: center;
    padding: 0 var(--space-2);
  }
  
  .faq-cta-content h2 {
    font-size: 20px !important;
    line-height: 1.3;
    margin-bottom: var(--space-3);
  }
  
  .faq-cta-content p {
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: var(--space-4);
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
  }
  
  .faq-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: var(--space-3) var(--space-4);
    font-size: 14px !important;
  }

  .section-title {
    font-size: 22px !important;
    margin-bottom: var(--space-4) !important;
  }

  .posts-section .section-header h2 {
    font-size: 22px !important;
  }
}

/* Mobile Medium (376px - 430px) - FAQ Page Optimization */
@media (min-width: 376px) and (max-width: 430px) {
  /* FAQ Hero Section */
  .faq-hero {
    min-height: 65vh;
    padding: var(--space-10) 0 var(--space-8);
  }
  
  .faq-hero-content {
    padding: 0 var(--space-3);
    gap: var(--space-5);
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .faq-hero-text {
    text-align: center;
  }
  
  .faq-page-title {
    font-size: 26px !important;
    line-height: 1.2;
    margin-bottom: var(--space-3);
  }
  
  .faq-page-subtitle {
    font-size: 16px !important;
    line-height: 1.4;
    margin-bottom: var(--space-5);
  }
  
  .faq-hero-image {
    display: none;
  }
  
  .faq-hero-cta {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .faq-hero-cta .btn {
    width: 100%;
    max-width: 320px;
    padding: var(--space-3) var(--space-5);
    font-size: 15px !important;
    margin-left: 15px;
  }
  
  /* FAQ Content */
  .faq-content {
    padding: var(--space-8) 0;
  }
  
  .faq-intro h2 {
    font-size: 24px !important;
    margin-bottom: var(--space-4);
    text-align: center;
  }
  
  .faq-intro p {
    font-size: 15px !important;
    line-height: 1.5;
    padding: 0 var(--space-3);
    text-align: center;
    margin-bottom: var(--space-6);
  }
  
  .faq-list-container {
    padding: 0 var(--space-3);
  }
  
  .faq-item-page {
    margin-bottom: var(--space-4);
  }
  
  .faq-question-page {
    padding: var(--space-4) var(--space-5) !important;
    font-size: 15px !important;
    text-align: left;
  }
  
  .question-text {
    font-size: 15px !important;
    line-height: 1.4;
  }
  
  .faq-icon-page {
    font-size: 20px !important;
  }

  
  .answer-content p {
    font-size: 14px !important;
    line-height: 1.5;
  }
  
  /* FAQ CTA Section */
  .faq-cta-section {
    padding: var(--space-8) 0;
  }
  
  .faq-cta-content {
    text-align: center;
    padding: 0 var(--space-3);
  }
  
  .faq-cta-content h2 {
    font-size: 24px !important;
    line-height: 1.3;
    margin-bottom: var(--space-4);
  }
  
  .faq-cta-content p {
    font-size: 15px !important;
    line-height: 1.5;
    margin-bottom: var(--space-5);
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }
  
  .faq-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    padding: var(--space-3) var(--space-5);
    font-size: 15px !important;
  }
}

/* Mobile Large / Tablet Small (431px - 600px) - FAQ Page Optimization */
@media (min-width: 431px) and (max-width: 600px) {
  /* FAQ Hero Section */
  .faq-hero {
    min-height: 60vh;
    padding: var(--space-12) 0 var(--space-10);
  }
  
  .faq-hero-content {
    padding: 0 var(--space-4);
    gap: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .faq-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }
  
  .faq-hero-image {
    display: block;
    order: 2;
    margin: var(--space-4) 0;
  }
  
  .faq-page-title {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }
  
  .faq-page-subtitle {
    font-size: 16px !important;
    line-height: 1.4;
    margin-bottom: var(--space-6);
  }
  
  .faq-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .faq-hero-cta {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: var(--space-4);
    order: 4;
  }
  
  .faq-hero-cta .btn {
    width: auto;
    min-width: 180px;
    padding: var(--space-3) var(--space-6);
    font-size: 14px !important;
  }
  
  /* FAQ Content */
  .faq-content {
    padding: var(--space-10) 0;
  }
  
  .faq-intro h2 {
    font-size: 26px !important;
    margin-bottom: var(--space-5);
    text-align: center;
  }
  
  .faq-intro p {
    font-size: 16px !important;
    line-height: 1.6;
    padding: 0 var(--space-4);
    text-align: center;
    margin-bottom: var(--space-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq-list-container {
    padding: 0 var(--space-4);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item-page {
    margin-bottom: var(--space-5);
  }
  
  .faq-question-page {
    padding: var(--space-4) var(--space-6) !important;
    font-size: 16px !important;
    text-align: left;
  }
  
  .question-text {
    font-size: 16px !important;
    line-height: 1.5;
  }
  
  .faq-icon-page {
    font-size: 22px !important;
  }
  
  .answer-content p {
    font-size: 15px !important;
    line-height: 1.6;
  }
  
  /* FAQ CTA Section */
  .faq-cta-section {
    padding: var(--space-10) 0;
  }
  
  .faq-cta-content {
    text-align: center;
    padding: 0 var(--space-4);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .faq-cta-content h2 {
    font-size: 26px !important;
    line-height: 1.3;
    margin-bottom: var(--space-5);
  }
  
  .faq-cta-content p {
    font-size: 16px !important;
    line-height: 1.6;
    margin-bottom: var(--space-6);
  }
  
  .faq-cta-buttons {
    flex-direction: row;
    gap: var(--space-4);
    justify-content: center;
  }
  
  .faq-cta-buttons .btn {
    width: auto;
    min-width: 180px;
    padding: var(--space-3) var(--space-5);
    font-size: 14px !important;
  }
}

/* Tablet Large (601px - 1024px) - FAQ Page Optimization */
@media (min-width: 601px) and (max-width: 1024px) {
  /* FAQ Hero Section */
  .faq-hero {
    min-height: 70vh;
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .faq-hero-content {
    padding: 0 var(--space-6);
    gap: var(--space-12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .faq-hero-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .faq-hero-image {
    display: block;
    order: 0;
  }
  
  .faq-page-title {
    font-size: 36px !important;
    line-height: 1.1;
    margin-bottom: var(--space-5);
  }
  
  .faq-page-subtitle {
    font-size: 20px !important;
    line-height: 1.5;
    margin-bottom: var(--space-8);
  }
  
  .faq-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  .faq-hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-5);
  }
  
  .faq-hero-cta .btn {
    width: auto;
    min-width: 200px;
    padding: var(--space-4) var(--space-8);
    font-size: 18px !important;
  }
  
  /* FAQ Content */
  .faq-content {
    padding: var(--space-12) 0;
  }
  
  .faq-intro h2 {
    font-size: 36px !important;
    margin-bottom: var(--space-6);
    text-align: center;
  }
  
  .faq-intro p {
    font-size: 18px !important;
    line-height: 1.7;
    padding: 0 var(--space-6);
    text-align: center;
    margin-bottom: var(--space-10);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq-list-container {
    padding: 0 var(--space-6);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  
  .faq-item-page {
    margin-bottom: 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .faq-question-page {
    padding: var(--space-5) var(--space-6) !important;
    font-size: 18px !important;
    text-align: left;
  }
  
  .question-text {
    font-size: 20px !important;
    line-height: 1.4;
  }
  
  .faq-icon-page {
    font-size: 24px !important;
  }
  
  .answer-content p {
    font-size: 20px !important;
    line-height: 1.6;
  }
  
  /* FAQ CTA Section */
  .faq-cta-section {
    padding: var(--space-12) 0;
  }
  
  .faq-cta-content {
    text-align: center;
    padding: 0 var(--space-6);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .faq-cta-content h2 {
    font-size: 36px !important;
    line-height: 1.2;
    margin-bottom: var(--space-6);
  }
  
  .faq-cta-content p {
    font-size: 18px !important;
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }
  
  .faq-cta-buttons {
    flex-direction: row;
    gap: var(--space-6);
    justify-content: center;
  }
  
  .faq-cta-buttons .btn {
    width: auto;
    min-width: 200px;
    padding: var(--space-4) var(--space-6);
    font-size: 18px !important;
  }

  /* FAQ Title Spacing */
  .faq-title {
    padding-bottom: var(--space-8);
    padding-top: var(--space-8);
    font-size: 36px;
    text-align: center;
  }
}

/* Mobile Extra Small (max 375px) - Services Page Optimization */
@media (max-width: 375px) {
  /* Service Hero Section */
  .service-hero {
    min-height: 70vh;
    padding: var(--space-8) 0 var(--space-6);
  }
  
  .service-hero-content {
    padding: 0 var(--space-2);
    gap: var(--space-4);
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-hero-text {
    text-align: center;
  }
  
  .service-hero-title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: var(--space-2);
    text-align: center;
  }
  
  .service-subtitle {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: var(--space-4);
  }
  
  .service-hero-image {
    display: none;
  }
  
  .service-cta {
    display: flex;
    justify-content: center;
  }
  
  .service-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
  }
  
  /* Service Description */
  .service-description {
    padding: var(--space-6) 0;
  }
  
  .description-content h2 {
    font-size: 20px;
    margin-bottom: var(--space-3);
    text-align: center;
  }
  
  .description-text {
    font-size: 14px !important;
    line-height: 1.5;
    padding: 0 var(--space-2);
  }
  
  /* Service Features */
  .service-features {
    padding: var(--space-6) 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-6);
    padding: 0 var(--space-2);
  }
  
  .features-column h3 {
    font-size: 18px !important;
    margin-bottom: var(--space-3);
    text-align: center;
  }
  
  .features-list {
    gap: var(--space-2);
  }
  
  .feature-item {
    font-size: 12px !important;
    padding: var(--space-2);
  }
  
  .feature-icon {
    font-size: 12px;
  }
  
  /* Service Process */
  .service-process {
    padding: var(--space-6) 0;
  }
  
  .service-process .section-title {
    font-size: 28px;
    margin-bottom: var(--space-4);
    text-align: center;
  }
  
  .process-steps {
    gap: var(--space-3);
    padding: 0 var(--space-2) ;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2) !important;
    gap: var(--space-0) !important;
  }
  
  .step-number {
    font-size: 18px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 auto var(--space-2);
  }
  
  .step-content {
    text-align: center;
  }
  
  .step-content p {
    font-size: 13px !important;
    line-height: 1.4;
    text-align: center;
  }
  
  /* Service CTA Section */
  .service-cta-section {
    padding: var(--space-6) 0;
  }
  
  .cta-content {
    text-align: center;
    padding: 0 var(--space-2);
  }
  
  .cta-content h2 {
    font-size: 18px !important;
    line-height: 1.3;
    margin-bottom: var(--space-3);
  }
  
  .cta-content p {
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: var(--space-4);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: var(--space-3) var(--space-4);
    font-size: 12px;
  }
}

/* Mobile Medium (376px - 430px) - Services Page Optimization */
@media (min-width: 376px) and (max-width: 430px) {
  /* Service Hero Section */
  .service-hero {
    min-height: 65vh;
    padding: var(--space-10) 0 var(--space-8);
  }
  
  .service-hero-content {
    padding: 0 var(--space-3);
    gap: var(--space-5);
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-hero-text {
    text-align: center;
  }
  
  .service-hero-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: var(--space-3);
  }
  
  .service-subtitle {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: var(--space-5);
  }
  
  .service-hero-image {
    display: none;
  }
  
  .service-cta {
    display: flex;
    justify-content: center;
  }
  
  .service-cta .btn {
    width: 100%;
    max-width: 320px;
    padding: var(--space-3) var(--space-5);
    font-size: 15px;
  }
  
  /* Service Description */
  .service-description {
    padding: var(--space-8) 0;
  }
  
  .description-content h2 {
    font-size: 24px;
    margin-bottom: var(--space-4);
    text-align: center;
  }
  
  .description-text {
    font-size: 16px !important;
    line-height: 1.5;
    padding: 0 var(--space-3);
  }
  
  /* Service Features */
  .service-features {
    padding: var(--space-8) 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8);
    padding: 0 var(--space-3);
  }
  
  .features-column h3 {
    font-size: 20px !important;
    margin-bottom: var(--space-4);
    text-align: center;
  }
  
  .features-list {
    gap: var(--space-3);
  }
  
  .feature-item {
    font-size: 14px !important;
    padding: var(--space-3);
  }
  
  .feature-icon {
    font-size: 14px;
  }
  
  /* Service Process */
  .service-process {
    padding: var(--space-8) 0;
  }
  
  .service-process .section-title {
    font-size: 24px;
    margin-bottom: var(--space-5);
    text-align: center;
  }
  
  .process-steps {
    gap: var(--space-4);
    padding: 0 var(--space-3);
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    padding: var(--space-4);
    gap: 0 !important;
  }
  
  .step-number {
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin: 0 auto var(--space-3);
  }
  
  .step-content {
    text-align: center;
  }
  
  .step-content p {
    line-height: 1.4;
    text-align: center;
  }
  
  /* Service CTA Section */
  .service-cta-section {
    padding: var(--space-8) 0;
  }
  
  .cta-content {
    text-align: center;
    padding: 0 var(--space-3);
  }
  
  .cta-content h2 {
    font-size: 22px !important;
    line-height: 1.3;
    margin-bottom: var(--space-4);
  }
  
  .cta-content p {
    font-size: 15px !important;
    line-height: 1.5;
    margin-bottom: var(--space-5);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    padding: var(--space-3) var(--space-5);
    font-size: 15px;
  }
}

/* Mobile Large / Tablet Small (431px - 600px) - Services Page Optimization */
@media (min-width: 431px) and (max-width: 600px) {
  /* Service Hero Section */
  .service-hero {
    min-height: 60vh;
    padding: var(--space-12) 0 var(--space-10);
  }
  
  .service-hero-content {
    padding: 0 var(--space-4);
    gap: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }
  
  .service-hero-image {
    display: block;
    order: 2;
    margin: var(--space-4) 0;
  }
  
  .service-hero-title {
    font-size: 24px !important;
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }
  
  .service-subtitle {
    font-size: 16px !important;
    line-height: 1.4;
    margin-bottom: var(--space-6);
  }
  
  .service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .service-cta {
    display: flex;
    justify-content: center;
  }
  
  .service-cta .btn {
    width: auto;
    min-width: 200px;
    padding: var(--space-3) var(--space-6);
    font-size: 14px;
  }
  
  /* Service Description */
  .service-description {
    padding: var(--space-10) 0;
  }
  
  .description-content h2 {
    margin-bottom: var(--space-5);
    text-align: center;
  }
  
  .description-text {
    font-size: 16px !important;
    line-height: 1.6;
    padding: 0 var(--space-4);
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Service Features */
  .service-features {
    padding: var(--space-10) 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-10);
    padding: 0 var(--space-4);
  }
  
  .features-column h3 {
    font-size: 22px !important;
    margin-bottom: var(--space-5);
    text-align: left;
  }
  
  .features-list {
    gap: var(--space-3);
  }
  
  .feature-item {
    font-size: 14px !important;
    padding: var(--space-3);
  }
  
  .feature-icon {
    font-size: 16px !important;
  }
  
  /* Service Process */
  .service-process {
    padding: var(--space-10) 0;
  }
  
  .service-process .section-title {
    font-size: 28px;
    margin-bottom: var(--space-6);
    text-align: center;
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    padding: 0 var(--space-4);
  }
  
  .process-step {
    flex-direction: row;
    text-align: left;
    padding: var(--space-4);
    gap: var(--space-4);
    align-items: flex-start;
  }
  
  .step-number {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    flex-shrink: 0;
  }
  
  .step-content {
    text-align: left;
  }
  
  .step-content p {
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
  }
  
  /* Service CTA Section */
  .service-cta-section {
    padding: var(--space-10) 0;
  }
  
  .cta-content {
    text-align: center;
    padding: 0 var(--space-4);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 22px !important;
    line-height: 1.3;
    margin-bottom: var(--space-5);
  }
  
  .cta-content p {
    font-size: 16px !important;
    line-height: 1.6;
    margin-bottom: var(--space-6);
  }
  
  .cta-buttons {
    flex-direction: row;
    gap: var(--space-4);
    justify-content: center;
  }
  
  .cta-buttons .btn {
    width: auto;
    min-width: 180px;
    padding: var(--space-3) var(--space-5);
    font-size: 14px;
  }
}

/* Tablet Large (601px - 1024px) - Services Page Optimization */
@media (min-width: 601px) and (max-width: 1024px) {
  /* Service Hero Section */
  .service-hero {
    min-height: 70vh;
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .service-hero-content {
    padding: 0 var(--space-6);
    gap: var(--space-12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .service-hero-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-hero-image {
    display: block;
    order: 0;
  }
  
  .service-hero-title {
    line-height: 1.1;
    margin-bottom: var(--space-5);
  }
  
  .service-subtitle {
    font-size: 20px !important;
    line-height: 1.5;
    margin-bottom: var(--space-8);
  }
  
  .service-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  .service-cta {
    display: flex;
    justify-content: flex-start;
  }
  
  .service-cta .btn {
    width: auto;
    min-width: 220px;
    padding: var(--space-4) var(--space-8);
    font-size: 18px !important;
  }
  
  /* Service Description */
  .service-description {
    padding: var(--space-12) 0;
  }
  
  .description-content h2 {
    font-size: 36px;
    margin-bottom: var(--space-6);
    text-align: center;
  }
  
  .description-text {
    font-size: 20px !important;
    line-height: 1.7;
    padding: 0 var(--space-6);
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Service Features */
  .service-features {
    padding: var(--space-12) 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    padding: 0 var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .features-column h3 {
    font-size: 26px;
    margin-bottom: var(--space-6);
    text-align: left;
  }
  
  .features-list {
    gap: var(--space-4);
  }
  
  .feature-item {
    font-size: 18px !important;
    padding: var(--space-4);
  }
  
  .feature-icon {
    font-size: 18px;
  }
  
  /* Service Process */
  .service-process {
    padding: var(--space-12) 0;
  }
  
  .service-process .section-title {
    font-size: 36px;
    margin-bottom: var(--space-8);
    text-align: center;
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    padding: 0 var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .process-step {
    flex-direction: row;
    text-align: left;
    padding: var(--space-6);
    gap: var(--space-5);
    align-items: flex-start;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    font-size: 28px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0;
    flex-shrink: 0;
  }
  
  .step-content {
    text-align: left;
  }
  
  .step-content p {
    font-size: 20px !important;
    line-height: 1.6;
    text-align: left;
  }
  
  /* Service CTA Section */
  .service-cta-section {
    padding: var(--space-12) 0;
  }
  
  .cta-content {
    text-align: center;
    padding: 0 var(--space-6);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 34px !important;
    line-height: 1.2;
    margin-bottom: var(--space-6);
  }
  
  .cta-content p {
    font-size: 20px !important;
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }
  
  .cta-buttons {
    flex-direction: row;
    gap: var(--space-6);
    justify-content: center;
  }
  
  .cta-buttons .btn {
    width: auto;
    min-width: 200px;
    padding: var(--space-4) var(--space-6);
    font-size: 18px;
  }
  .footer-description {
    font-size: 16px !important;
  }
}

@media (max-width: 375px) {
  .page-hero,
  .service-hero,
  .faq-hero,
  .blog-hero,
  .post-hero {
    min-height: 75vh;
    padding: var(--space-6) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  /* Add overlay for better text readability */
  .page-hero::before,
  .service-hero::before,
  .faq-hero::before,
  .blog-hero::before,
  .post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .page-hero-content,
  .service-hero-content,
  .faq-hero-content,
  .blog-hero-content,
  .post-hero-content {
    padding: 0 var(--space-1);
    gap: var(--space-4);
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
  }
  
  .page-hero-title,
  .service-title,
  .faq-page-title,
  .blog-page-title,
  .post-title {
    font-size: 20px;
    line-height: 1.1;
  }
  
  .page-hero-subtitle,
  .service-subtitle,
  .faq-page-subtitle,
  .blog-page-subtitle {
    font-size: 13px;
    line-height: 1.4;
  }
  
  /* Hide the image container on mobile */
  .page-hero-image,
  .service-hero-image,
  .faq-hero-image,
  .blog-hero-image,
  .post-hero-image {
    display: none;
  }
  
  .page-hero-cta .btn,
  .service-cta .btn,
  .faq-hero-cta .btn,
  .blog-hero-cta .btn {
    font-size: 12px;
  }
}

/* Service-specific overrides */
.service-title {
  text-align: center; 
  font-size: 14px; /* Smaller than default 28px */
  color: #6B7280;
}

.service-cta {
  /* Animation Setup */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

/* Load Animation Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Service Description Section */
.service-description {
  background: var(--neutral-white);
}

.description-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.description-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: #6B7280;
  margin-bottom: var(--space-6);
}

.description-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
  max-width: 800px;
  margin: 0 auto;
}

/* Service Features Section */
.service-features {
  background: #F8FAFB;
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.features-column h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: #6B7280;
  margin-bottom: var(--space-6);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
}

.feature-icon {
  background: #10B981;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Service Process Section */
.service-process {
  background: var(--neutral-white);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #6B7280;
  text-align: center;
  margin-bottom: var(--space-12);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: #F8FAFB;
  border-radius: 16px;
  border-left: 4px solid var(--accent-orange);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: var(--accent-orange);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

/* Reusable CTA Section */
.cta-section,
.service-cta-section,
.post-cta-section {
  background: linear-gradient(135deg, #4A7BA7 0%, #5B8DB8 100%);
  color: white;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.cta-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
}

.btn-primary:hover {
  background: #B83A17;
  border-color: #B83A17;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(207, 67, 28, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #F8FAFB;
  border-color: #F8FAFB;
  font-size: 18px;
}

.btn-secondary:hover {
  background: #6B7280;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: #4A7BA7;
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

/* ================================
   FAQ PAGE STYLES
   ================================ */

/* FAQ Content Section */
.faq-content {
  background: var(--neutral-white);
}

.faq-intro {
  max-width: 800px;
  margin: 0 auto var(--space-12);
  text-align: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.faq-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #6B7280;
  margin-bottom: var(--space-8);
}

.faq-intro p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
}

.faq-list-container {
  max-width: 800px;
  margin: 0 auto;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item-page {
  background: var(--neutral-white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item-page:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question-page {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-8) var(--space-6); /* Increased vertical padding */
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question-page:hover {
  background-color: #F8FAFB;
}

.question-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #374151;
  margin-right: var(--space-4);
}

.faq-icon-page {
  font-size: 24px;
  font-weight: 300;
  color: #6B7280;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-question-page:hover .faq-icon-page {
  color: var(--accent-orange);
}

.faq-item-page.active .faq-icon-page {
  transform: rotate(45deg);
  color: var(--accent-orange);
}

.faq-answer-page {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-page.active {
  max-height: none;
  padding: var(--space-6) var(--space-6) var(--space-10); /* Increased bottom padding for more space after answer */
}

.answer-content {
  margin-bottom: var(--space-4); /* Add margin below content for extra spacing */
}

.answer-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8; /* Increased from 1.6 for better readability */
  color: #6B7280;
  margin: 0 0 var(--space-8) 0; /* Add bottom margin to paragraph */
  padding-top: var(--space-2); /* Add some top spacing */
}

/* FAQ CTA Section - matches blog-cta-section styling */
.faq-cta-section {
  background: linear-gradient(135deg, #4A7BA7 0%, #5B8DB8 100%);
  color: white;
}

.faq-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}

.faq-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.faq-cta-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.faq-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

 
/* ================================
   APPOINTMENT CTA SECTION STYLES
   ================================ */

/* Appointment CTA Section */
.appointment-cta-section {
  background: linear-gradient(135deg, #4A7BA7 0%, #5B8DB8 100%);
  color: white;
  padding: 80px 0 !important;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.appointment-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.appointment-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.appointment-cta-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: var(--space-6);
  opacity: 0.9;
}

.appointment-cta-button {
  display: flex;
  justify-content: center;
}

/* Responsive Design for Appointment CTA */

/* Desktop Medium (1025px - 1400px) */
@media (min-width: 1025px) {
  .appointment-cta-section {
    padding: 70px 0 !important;
    min-height: 450px;
  }
  
  .appointment-cta-content {
    max-width: 750px;
    padding: 0 var(--space-4);
  }
  
  .appointment-cta-content h2 {
    font-size: 38px;
  }
  
  .appointment-cta-content p {
    font-size: 18px;
    margin-bottom: var(--space-5);
  }
}

/* Tablet Large (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .appointment-cta-section {
    padding: 60px 0 !important;
    min-height: 400px;
  }
  
  .appointment-cta-content {
    max-width: 650px;
    padding: 0 var(--space-4);
  }
  
  .appointment-cta-content h2 {
    font-size: 30px;
    margin-bottom: var(--space-3);
  }
  
  .appointment-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: var(--space-5);
  }
  
  .appointment-cta-button .btn {
    font-size: 20px;
    width: 500px
  }
}

/* Tablet (431px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
  .appointment-cta-section {
    padding: 50px 0 !important;
    min-height: 350px;
  }
  
  .appointment-cta-content {
    max-width: 500px;
    padding: 0 var(--space-3);
  }
  
  .appointment-cta-content h2 {
    font-size: 20px !important;
    margin-bottom: var(--space-2);
    line-height: 1.3;
  }
  
  .appointment-cta-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: var(--space-4);
  }
  
  .appointment-cta-button .btn {
    padding: var(--space-3) var(--space-5);
    font-size: 13px !important;
    width: 100%;
    max-width: 280px;
  }
}

/* Mobile Large (376px - 430px) */
@media (min-width: 376px) and (max-width: 430px) {
  .appointment-cta-section {
    padding: 40px 0 !important;
    min-height: 300px;
  }
  
  .appointment-cta-content {
    max-width: 350px;
    padding: 0 var(--space-2);
  }
  
  .appointment-cta-content h2 {
    font-size: 20px;
    margin-bottom: var(--space-2);
    line-height: 1.2;
  }
  
  .appointment-cta-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: var(--space-4);
  }
  
  .appointment-cta-button .btn {
    padding: var(--space-2) var(--space-4);
    font-size: 14px;
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 541px) {
  .blog-hero-image {
    display: none;
  }

  .blog-hero-content {
    grid-template-columns: 1fr;
  }
}
/* Mobile Medium (321px - 375px) */
@media (max-width: 375px) {
  .appointment-cta-section {
    padding: 35px 0 !important;
    min-height: 280px;
  }
  
  .appointment-cta-content {
    max-width: 320px;
    padding: 0 var(--space-2);
  }
  
  .appointment-cta-content h2 {
    font-size: 18px;
    margin-bottom: var(--space-2);
    line-height: 1.2;
  }
  
  .appointment-cta-content p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: var(--space-3);
  }
  
  .appointment-cta-button .btn {
    font-size: 12px;
    width: 100%;
    max-width: 280px;
  }
}

/* ================================
   BLOG PAGE STYLES
   ================================ */

/* Blog-specific overrides */
.blog-hero-cta {
  gap: var(--space-5);
  max-width: 500px;
  justify-content: center;
}

/* Featured Post Section */
.featured-post {
  background: var(--neutral-white);
}

.featured-post-header {
  text-align: center;
  margin-bottom: var(--space-12);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.featured-post-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  color: #374151;
  margin-bottom: var(--space-2);
}

.featured-post-header p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #6B7280;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  background: #F8FAFB;
  border-radius: 20px;
  padding: var(--space-8);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.featured-article-image .article-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.article-meta {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.article-category {
  background: var(--accent-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.article-date, .article-read-time {
  color: #6B7280;
  font-size: 14px;
}

.article-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: var(--space-4);
}

.article-title a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: var(--accent-orange);
}

.article-excerpt {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: var(--space-6);
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.article-author {
  color: #374151;
  font-weight: 500;
}

/* Recent Posts Section */
.recent-posts, .all-posts {
  background: #F8FAFB;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
  /* Ensure immediate visibility for blog */
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #6B7280;
  margin-bottom: var(--space-2);
}

.section-header p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;        /* Changed from 20px to 18px */
  line-height: 1.6;
  color: #6B7280;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  /* Make cards immediately visible for testing */
  opacity: 1;
  transform: translateY(0);
}

.post-card {
  background: var(--neutral-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.post-image .card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Post card content */
.post-card .post-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.post-category {
  background: var(--accent-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Blog pages date styling */
.post-date {
  color: #6B7280;
  font-size: 12px;
}

.post-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-title a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: var(--accent-orange);
}

.post-excerpt {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: var(--space-4);
  flex: 1;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
  font-size: 12px;
  color: #6B7280;
}

.btn-outline-small {
  padding: 8px 16px;
  font-size: 12px;
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline-small:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-1px);
}

/* Blog CTA Section */
.blog-cta-section {
  background: linear-gradient(135deg, #4A7BA7 0%, #5B8DB8 100%);
  color: white;
}

/* ================================
   BLOG POST PAGE STYLES
   ================================ */

/* Blog Post Hero Section */
.post-hero {
  background: linear-gradient(135deg, #F8FAFB 0%, #E5E7EB 100%);
  padding: var(--space-16);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.post-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.post-hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  /* Animation Setup */
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.post-breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #f8f9fa;
  margin-bottom: var(--space-2);
}

.post-breadcrumb a {
  color: var(--accent-orange);
  text-decoration: none;
}

.post-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: #f8f9fa;
  margin-bottom: var(--space-4);
}

.post-meta-hero {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

.post-meta-hero span {
  font-size: 10px;
  color: #F8FAFB;
}

.post-category-badge {
  background: var(--accent-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.post-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Animation Setup */
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.post-image {
  width: 100%;
  max-width: 700px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Blog show page content background */
.blog-show .post-content {
  background: var(--neutral-white);
}

.post-article {
  max-width: 800px;
  margin: 0 auto;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.article-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: var(--space-6);
}

.post-tags {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid #E5E7EB;
}

.post-tags h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #374151;
  margin-bottom: var(--space-4);
}

.tags-list {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.tag {
  background: #F3F4F6;
  color: #374151;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.tag:hover {
  background: #E5E7EB;
}

.author-bio {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: #F8FAFB;
  border-radius: 12px;
}

.author-bio h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #374151;
  margin-bottom: var(--space-4);
}

.author-info p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

/* Related Posts Section */
.related-posts {
  background: #F8FAFB;
}

.related-header {
  text-align: center;
  margin-bottom: var(--space-12);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.related-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  color: #374151;
  margin-bottom: var(--space-2);
}

.related-header p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #6B7280;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  /* Animation Setup */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.related-card {
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.related-image .card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-content {
  padding: var(--space-5);
}

.related-meta {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.related-category {
  background: var(--accent-orange);
  color: white;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.related-date {
  color: #6B7280;
  font-size: 12px;
}

.related-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.related-title a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-title a:hover {
  color: var(--accent-orange);
}

.related-excerpt {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: var(--space-4);
}

.related-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.related-service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1em 1.5em;
  transition: box-shadow 0.2s;
}
.related-service-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}
.related-service-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Post CTA Section - now uses shared CTA styles above */

/* Responsive Design for Blog Pages */

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

.about-section {
  background: linear-gradient(135deg, #FAFBFC 0%, #F1F5F9 100%);
  overflow: hidden;
  position: relative;
}

.about-content {
  gap: var(--space-16);
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.about-text-content {
  /* Animation Setup */
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.about-header {
  margin-bottom: var(--space-8);
}

/* About title - now uses base section-title class with medium size */

.about-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-description {
  margin-bottom: var(--space-8);
}

.about-lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.about-description p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #E55A2B 100%);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.feature-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--accent-orange);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-cta {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.about-cta .btn {
  padding: var(--space-4) var(--space-6);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-cta .btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #E55A2B 100%);
  color: white;
  border: 2px solid transparent;
  font-size: 18px;
}

.about-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 67, 28, 0.3);
}

.about-cta .btn-secondary {
  background: white;
  color: var(--accent-orange);
  border: 2px solid #E5E7EB;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-cta .btn-secondary:hover {
  background: #F9FAFB;
  color: var(--accent-orange);
  border-color: #D1D5DB;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.about-image-content {
  /* Animation Setup */
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: var(--space-6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--space-8) var(--space-6) var(--space-6);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.overlay-icon {
  background: var(--accent-orange);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.overlay-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: white;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FEF3E2 0%, #FED7AA 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design for About Section */

/* Desktop Medium (1025px - 1400px) */
@media (min-width: 1025px) {

  .about-cta .btn-primary {
    font-size: 18px !important;
  }

  .about-content {
    gap: var(--space-14);
    padding: 0 var(--space-6);
  }
  
  .about-lead {
    font-size: 20px;
  }
  
  .about-description p {
    font-size: 18px;
  }
  
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    padding: var(--space-5);
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .about-image {
    height: 380px;
  }

  .section-title {
    font-size: 40px !important;
  }
  .blog-hero-cta {
    justify-content: left;
  }
}

/* Tablet Large (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
    padding: 0 var(--space-4);
  }
  
  .about-image-content {
    order: -1;
  }
  
  .about-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-lead {
    font-size: 18px;
    max-width: 600px;
  }
  
  .about-description {
    max-width: 700px;
  }
  
  .about-description p {
    font-size: 22px;
  }

  .section-title {
    font-size: 36px !important;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin: var(--space-6) 0;
    padding: var(--space-4);
    width: 700px
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .about-cta {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-12);
  }
  
  .about-cta .btn {
    padding: var(--space-3) var(--space-5);
    font-size: 17px;
  }
  
  .about-image {
    height: 350px;
  }
  
  .about-features {
    gap: var(--space-3);
  }
  
  .feature-content h4 {
    font-size: 15px;
    text-align: left;
  }
  
  .feature-content p {
    font-size: 18px;
  }
}

/* Tablet (431px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
    padding: 0 var(--space-3);
  }
  
  .about-image-content {
    order: -1;
  }
  
  .about-subtitle {
    font-size: 16px;
  }
  
  .about-lead {
    font-size: 16px;
    max-width: 500px;
  }
  
  .about-description p {
    font-size: 14px;
    max-width: 550px;
    margin: 0 auto var(--space-4) auto;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin: var(--space-5) 0;
    padding: var(--space-3);
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  .about-cta .btn {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
    height: 50px
  }
  
  .about-image {
    height: 300px;
  }
  
  .about-features {
    gap: var(--space-2);
  }
  
  .feature-item {
    padding: var(--space-2);
    text-align: left;
  }
  
  .feature-content h4 {
    font-size: 14px;
  }
  
  .feature-content p {
    font-size: 11px;
  }
  
  .about-highlights {
    gap: var(--space-2);
  }
  
  .highlight-item {
    padding: var(--space-3);
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Large (376px - 430px) */
@media (min-width: 376px) and (max-width: 430px) {
  .about-content {
    gap: var(--space-8);
    padding: 0 var(--space-2);
  }
  
  .about-subtitle {
    font-size: 14px;
  }
  
  .about-lead {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .about-description p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    margin: var(--space-4) 0;
    padding: var(--space-2);
  }
  
  .stat-number {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 9px;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  .about-cta .btn {
    width: 100%;
    max-width: 380px;
    padding: var(--space-2) var(--space-3);
    font-size: 13px;
    height: 50px;
    margin-left: 15px;

  }
  
  .about-image {
    height: 250px;
  }
  
  .feature-icon {
    width: 24px;
    height: 24px;
  }
  
  .feature-content h4 {
    font-size: 13px;
  }
  
  .feature-content p {
    font-size: 12px;
  }
  
  .overlay-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }
  
  .overlay-icon {
    width: 48px;
    height: 48px;
  }
  
  .overlay-text {
    font-size: 14px;
  }

    
  .blog-cta-content h2 {
    font-size: 18px;
  }
  
}

/* Mobile Medium (321px - 375px) */
@media (max-width: 375px) {
  .about-content {
    gap: var(--space-6);
    padding: 0 var(--space-1);
  }
  
  .about-subtitle {
    font-size: 13px;
  }
  
  .about-lead {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .about-description p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-1);
    margin: var(--space-3) 0;
    padding: var(--space-1);
  }
  
  .stat-number {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 8px;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  .about-cta .btn {
    width: 100%;
    max-width: 335px;
    padding: var(--space-1) var(--space-2);
    font-size: 12px;
    height: 50px;
    margin-left: 15px;
  }
  
  .about-image {
    height: 220px;
  }
  
  
  .feature-icon {
    width: 20px;
    height: 20px;
  }
  
  .feature-content h4 {
    font-size: 12px;
  }
  
  .feature-content p {
    font-size: 10px;
  }
  
  .highlight-item {
    padding: var(--space-2);
  }
  
  .highlight-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .highlight-text {
    font-size: 12px;
  }
}

/* Mobile Small (320px and below) */
@media (max-width: 320px) {
  .about-content {
    gap: var(--space-4);
    padding: 0 var(--space-1);
  }
  
  .about-subtitle {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  
  .about-lead {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .about-description p {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-1);
    margin: var(--space-2) 0;
    padding: var(--space-1);
  }
  
  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: var(--space-2);
    border-bottom: 1px solid #E5E7EB;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-number {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .stat-label {
    font-size: 8px;
    margin: 0;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
  }
  
  .about-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: var(--space-1) var(--space-2);
    font-size: 11px;
    height: 40px
  }
  
  .about-image {
    height: 200px;
  }
  
  .feature-item {
    padding: var(--space-2);
    gap: var(--space-2);
  }
  
  .feature-icon {
    width: 16px;
    height: 16px;
  }
  
  .feature-content h4 {
    font-size: 11px;
  }
  
  .feature-content p {
    font-size: 8px;
  }
  
  .highlight-item {
    padding: var(--space-1);
    gap: var(--space-2);
  }
  
  .highlight-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .highlight-text {
    font-size: 11px;
  }
  
  .overlay-content {
    padding: var(--space-2);
  }
  
  .overlay-icon {
    width: 40px;
    height: 40px;
  }
  
  .overlay-text {
    font-size: 12px;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: 20px
  }
  
  .footer-description {
    text-align: left;
  }
}
