/* ===================================
   Ecogloo Cleaning Theme - Pages CSS
   =================================== */

/* ===================================
   Privacy Policy Page
   =================================== */

.privacy-policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.privacy-policy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.privacy-policy-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.privacy-policy-last-updated {
  font-size: 0.875rem;
  color: #6B7280;
}

.privacy-policy-content {
  padding: 4rem 0;
  background: var(--white);
}

.privacy-policy-container {
  max-width: 64rem;
  margin: 0 auto;
}

.privacy-policy-section {
  margin-bottom: 3rem;
}

.privacy-policy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.privacy-policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.privacy-policy-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-policy-section ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.privacy-policy-section li {
  margin-bottom: 0.5rem;
}

.privacy-policy-contact-box {
  background: #F9FAFB;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #E5E7EB;
  color: var(--text-light);
}

.privacy-policy-contact-box p {
  margin-bottom: 0.5rem;
}

.privacy-policy-cta {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.privacy-policy-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.privacy-policy-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.privacy-policy-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.privacy-policy-cta-button:hover {
  background: #F3F4F6;
}

.privacy-policy-cta-button svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* ===================================
   Terms of Service Page
   =================================== */

.terms-content {
  padding: 4rem 0;
  background: var(--white);
}

.terms-container {
  max-width: 64rem;
  margin: 0 auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.terms-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.terms-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.terms-last-updated {
  font-size: 0.875rem;
  color: #6B7280;
}

.terms-section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.terms-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.terms-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.terms-section ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
}

.terms-contact-box {
  background: #F9FAFB;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #E5E7EB;
  color: var(--text-light);
}

.terms-contact-box p {
  margin-bottom: 0.5rem;
}

.terms-cta {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.terms-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.terms-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.terms-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.terms-cta-button:hover {
  background: #F3F4F6;
}

.terms-cta-button svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* ===================================
   Cookie Policy Page
   =================================== */

.cookie-policy-content {
  padding: 4rem 0;
  background: var(--white);
}

.cookie-policy-container {
  max-width: 64rem;
  margin: 0 auto;
}

.cookie-policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.cookie-policy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cookie-policy-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.cookie-policy-last-updated {
  font-size: 0.875rem;
  color: #6B7280;
}

.cookie-policy-section {
  margin-bottom: 3rem;
}

.cookie-policy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cookie-policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.cookie-policy-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-policy-section ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-policy-section li {
  margin-bottom: 0.5rem;
}

.cookie-policy-section ol {
  list-style: decimal;
  list-style-position: inside;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-policy-section ol li {
  margin-bottom: 0.5rem;
}

.cookie-policy-contact-box {
  background: #F9FAFB;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #E5E7EB;
  color: var(--text-light);
}

.cookie-policy-contact-box p {
  margin-bottom: 0.5rem;
}

.cookie-policy-cta {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.cookie-policy-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.cookie-policy-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cookie-policy-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.cookie-policy-cta-button:hover {
  background: #F3F4F6;
}

.cookie-policy-cta-button svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* ===================================
   Refund Policy Page
   =================================== */

.refund-policy-content {
  padding: 4rem 0;
  background: var(--white);
}

.refund-policy-container {
  max-width: 64rem;
  margin: 0 auto;
}

.refund-policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.refund-policy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.refund-policy-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.refund-policy-last-updated {
  font-size: 0.875rem;
  color: #6B7280;
}

.refund-policy-section {
  margin-bottom: 3rem;
}

.refund-policy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.refund-policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.refund-policy-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.refund-policy-section ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.refund-policy-section li {
  margin-bottom: 0.5rem;
}

.refund-policy-section ol {
  list-style: decimal;
  list-style-position: inside;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.refund-policy-section ol li {
  margin-bottom: 0.5rem;
}

.refund-policy-contact-box {
  background: #F9FAFB;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #E5E7EB;
  color: var(--text-light);
}

.refund-policy-contact-box p {
  margin-bottom: 0.5rem;
}

.refund-policy-cta {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.refund-policy-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.refund-policy-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.refund-policy-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.refund-policy-cta-button:hover {
  background: #F3F4F6;
}

.refund-policy-cta-button svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* Sitemap Page Template */
.sitemap-page {
  padding: 3rem 0 5rem;
  background: var(--light-bg);
}

.sitemap-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.sitemap-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.sitemap-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.sitemap-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.sitemap-section {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

.sitemap-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-sky);
}

.sitemap-section-title i {
  color: var(--brand-sky);
  font-size: 1.125rem;
}

.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sitemap-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

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

.sitemap-link-item:hover {
  background: var(--light-bg);
  margin: 0 -0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
}

.sitemap-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  flex: 1;
}

.sitemap-link:hover {
  color: var(--brand-sky);
}

.sitemap-post-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.sitemap-post-date {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.sitemap-view-all {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-light);
}

.sitemap-view-all-link {
  color: var(--brand-sky);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sitemap-view-all-link:hover {
  color: var(--brand-blue);
}

.sitemap-view-all-link i {
  transition: transform 0.3s ease;
}

.sitemap-view-all-link:hover i {
  transform: translateX(4px);
}

.sitemap-xml-link {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

.sitemap-xml-text {
  margin: 0;
  color: var(--text-light);
  font-size: 0.875rem;
}

.sitemap-xml-text i {
  color: var(--brand-sky);
  margin-right: 0.5rem;
}

.sitemap-xml-url {
  color: var(--brand-sky);
  text-decoration: none;
  font-weight: 600;
}

.sitemap-xml-url:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sitemap-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sitemap-section {
    padding: 1.5rem;
  }
  
  .sitemap-title {
    font-size: 2rem;
  }
  
  .sitemap-section-title {
    font-size: 1.125rem;
  }
  
  .sitemap-link-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .sitemap-post-date {
    align-self: flex-start;
  }
}

/* Service Page Template */
.service-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(30, 54, 112, 0.85), 
    rgba(0, 157, 255, 0.8)
  );
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: left;
}

.service-hero-text {
  color: var(--white);
}

.service-hero-kicker {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--white);
}

.service-hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.service-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.service-hero-btn {
  background: var(--brand-lime);
  color: var(--text-dark);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-hero-btn:hover {
  background: #10B981;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Service hero image is now background - no separate image element needed */

/* Service Includes Section */
.service-includes {
  padding: 5rem 0;
  background: var(--bg-light);
}

.service-includes-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-includes-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-includes-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-includes-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.service-includes-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-includes-icon {
  font-size: 2.5rem;
  color: var(--brand-sky);
  margin-bottom: 1rem;
}

.service-includes-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-includes-item-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service Value Props Section */
.service-value-props {
  padding: 5rem 0;
  background: var(--white);
}

.service-value-props-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-value-props-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-value-props-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-value-props-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-value-props-item {
  text-align: center;
  padding: 2rem;
}

.service-value-props-icon {
  font-size: 3rem;
  color: var(--brand-lime);
  margin-bottom: 1.5rem;
}

.service-value-props-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-value-props-item-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service Process Section */
.service-process {
  padding: 5rem 0;
  background: var(--bg-light);
}

.service-process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-process-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-process-step-number {
  width: 80px;
  height: 80px;
  background: var(--brand-sky);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-process-step-content {
  flex: 1;
}

.service-process-step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-process-step-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service Pricing Section */
.service-pricing {
  padding: 5rem 0;
  background: var(--white);
}

.service-pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-pricing-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-pricing-tier {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.service-pricing-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-sky);
}

.service-pricing-tier-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-pricing-tier-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-sky);
}

.price-note {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.service-pricing-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-pricing-tier-feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.service-pricing-tier-feature:last-child {
  border-bottom: none;
}

.service-pricing-tier-cta {
  margin-top: auto;
}

.service-pricing-tier-btn {
  background: var(--brand-sky);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-pricing-tier-btn:hover {
  background: #0088cc;
  transform: translateY(-2px);
}

.service-pricing-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 1rem;
  color: var(--text-light);
  font-style: italic;
}

/* Service Before/After Section */
.service-before-after {
  padding: 5rem 0;
  background: var(--bg-light);
}

.service-before-after-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-before-after-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-before-after-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-before-after-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-before-after-before,
.service-before-after-after {
  position: relative;
}

.service-before-after-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.service-before-after-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-before-after-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-before-after-item-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service FAQ Section */
.service-faq {
  padding: 5rem 0;
  background: var(--white);
}

.service-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-faq-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  overflow: hidden;
}

.service-faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

.service-faq-question-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service-faq-question-icon {
  color: var(--brand-sky);
  transition: transform 0.3s ease;
}

.service-faq-question[aria-expanded="true"] .service-faq-question-icon {
  transform: rotate(180deg);
}

.service-faq-answer {
  background: var(--bg-light);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-faq-answer[aria-hidden="false"] {
  padding: 1.5rem;
  max-height: 500px;
}

.service-faq-answer-content {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service CTA Section */
.service-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  color: var(--white);
}

.service-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.service-cta-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.service-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.service-cta-btn {
  background: var(--brand-lime);
  color: var(--text-dark);
  font-weight: 600;
  padding: 1.25rem 2.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.service-cta-btn:hover {
  background: #7ab33a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 197, 63, 0.3);
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
  .service-value-props-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .service-process-steps {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 40vh;
  }
  
  .service-hero-content {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 2rem 1rem;
    max-width: 100%;
  }
  
  .service-hero-title {
    font-size: 2.25rem;
  }
  
  .service-includes-grid,
  .service-value-props-grid,
  .service-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .service-process-step {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .service-process-step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-before-after-images {
    grid-template-columns: 1fr;
  }
  
  .service-cta-title {
    font-size: 2rem;
  }
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(30, 54, 112, 0.8), 
    rgba(0, 157, 255, 0.7)
  );
  z-index: 2;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-text {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-kicker {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-lime);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--white);
}

.hero-copy {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: var(--white);
  color: var(--brand-blue);
  border: none;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: var(--bg-light);
  color: var(--brand-blue);
}

.btn-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-image:hover .hero-img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-copy {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  
  .hero-text {
    padding: 1.25rem;
    margin: 0 0.5rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .hero-kicker {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    padding: 1.5rem 0;
  }
  
  .hero-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-copy {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text {
    padding: 1rem;
    margin: 0 0.25rem;
  }
  
  .hero-kicker {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-btn {
    max-width: 260px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}

/* Value Props Section */
.value-props {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.value-props-header {
  text-align: center;
  margin-bottom: 3rem;
}

.value-props-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-props-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-prop-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.value-prop-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.value-prop-icon-svg {
  font-size: 1.5rem;
}

.value-prop-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-prop-desc {
  color: var(--text-light);
  line-height: 1.6;
}



/* Contact Page */
.contact-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-intro-text {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 0.75rem;
}

.contact-info h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  color: var(--brand-blue);
}

.contact-details h4 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Single Post */
.single-post {
  width: 100%;
  margin: 0;
  padding: 0;
}

.single-post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.single-post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.single-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.single-post-category {
  color: var(--brand-blue);
  font-weight: 500;
}

.single-post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.single-post-content {
  line-height: 1.8;
  color: var(--text-dark);
}

.single-post-content h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--text-dark);
}

.single-post-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--text-dark);
}

.single-post-content p {
  margin-bottom: 1.5rem;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.single-post-content li {
  margin-bottom: 0.5rem;
}


.archive-header {
  text-align: center;
  margin-bottom: 3rem;
}

.archive-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.archive-description {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.archive-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .archive-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.archive-post {
  background-color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

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

.archive-post-content {
  padding: 1.5rem;
}

.archive-post-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.archive-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.archive-post-title a:hover {
  color: var(--brand-blue);
}

.archive-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.archive-post-category {
  color: var(--brand-blue);
  font-weight: 500;
}

.archive-post-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.archive-post-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.archive-post-link:hover {
  color: var(--brand-sky);
}

.index-post {
  margin-bottom: 3rem;
}

.index-post-header {
  margin-bottom: 1.5rem;
}

.index-post-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.index-post-link {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-post-link:hover {
  color: var(--brand-blue);
}

.index-post-meta {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-light);
  gap: 1rem;
}

.index-post-category {
  color: var(--brand-blue);
}

.index-post-excerpt {
  line-height: 1.625;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.index-post-cta {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.index-post-cta:hover {
  color: var(--brand-sky);
}

.index-post-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

.index-pagination {
  margin-top: 3rem;
}

.index-pagination-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}


.index-empty-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.index-empty-text {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Search Form */
.search-form-container {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 2px rgba(30, 54, 112, 0.1);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.search-button:hover {
  color: var(--brand-blue);
}

.search-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Blog Page Styles */
.blog-hero {
    background: var(--brand-blue);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.blog-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

.blog-layout {
    display: block;
    padding: 3rem 0;
}

.blog-main {
    min-width: 0;
}

/* Featured Posts */
.blog-featured {
    margin-bottom: 4rem;
}

.blog-featured-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-featured-post {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
}

.blog-featured-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-featured-post:hover .blog-featured-img {
    transform: scale(1.05);
}

.blog-featured-content {
    padding: 1.5rem;
}

.blog-featured-header {
    margin-bottom: 1rem;
}

.blog-featured-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-featured-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-featured-link:hover {
    color: var(--brand-blue);
}

.blog-featured-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-featured-category a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
}

.blog-featured-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.blog-featured-cta:hover {
    gap: 0.75rem;
}

.blog-featured-arrow {
    width: 16px;
    height: 16px;
}

/* Regular Posts */
.blog-posts {
    margin-bottom: 3rem;
}

.blog-posts-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.blog-posts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-posts-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .blog-posts-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.blog-post {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-img {
    transform: scale(1.05);
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    flex-grow: 1;
}

.blog-post-header {
    margin-bottom: 1rem;
}

.blog-post-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-post-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-link:hover {
    color: var(--brand-blue);
}

.blog-post-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-post-category a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
}

.blog-post-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
    align-self: flex-start;
}

.blog-post-cta:hover {
    gap: 0.75rem;
}

.blog-post-arrow {
    width: 16px;
    height: 16px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.blog-pagination-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.blog-pagination-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-pagination-links .page-numbers:hover,
.blog-pagination-links .page-numbers.current {
    background: var(--brand-blue);
    color: var(--white);
    border-color: var(--brand-blue);
}

.blog-pagination-links .prev,
.blog-pagination-links .next {
    width: auto;
    padding: 0 1rem;
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 4rem 0;
}

.blog-empty-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-empty-text {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Blog Sidebar */
.blog-sidebar {
    min-width: 0;
}

/* Single Post Styles */
.single-post-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-bottom: 3rem;
    padding: 4rem 0;
}

.single-post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.single-post-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.single-post-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem 0;
}

.single-post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.single-post-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.single-post-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

.single-post-date,
.single-post-categories,
.single-post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.single-post-categories a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
}

.single-post-layout {
    display: block;
    margin-bottom: 4rem;
}

.single-post-main {
    width: 100%;
}

/* Social Sharing */
.single-post-sharing {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.single-post-sharing-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.single-post-sharing-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.single-post-sharing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.single-post-sharing-btn:hover {
    transform: translateY(-2px);
}

.single-post-sharing-btn i {
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-post-sharing-facebook {
    background: #1877f2;
}

.single-post-sharing-twitter {
    background: #1da1f2;
}

.single-post-sharing-linkedin {
    background: #0077b5;
}

.single-post-sharing-pinterest {
    background: #e60023;
}

.single-post-sharing-copy {
    background: #6b7280;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.single-post-sharing-copy:hover {
    background: #4b5563;
}

/* Post Content */
.single-post-content {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-post-content h2 {
    font-size: 1.75rem;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

.single-post-content h4 {
    font-size: 1.25rem;
}

.single-post-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.single-post-content blockquote {
    border-left: 4px solid var(--brand-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Post Key Points */
.single-post-key-points {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.single-post-key-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.single-post-key-point::before {
    content: '✓';
    color: var(--brand-green);
    margin-right: 0.5rem;
}

/* Post CTA */
.post-cta {
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.post-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.post-cta-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.post-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Post Tags */
.single-post-tags {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.single-post-tags-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.single-post-tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.single-post-tags-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.single-post-tags-list a:hover {
    background: var(--brand-green);
}

/* Author Bio */
.single-post-author-bio {
    display: flex;
    gap: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.single-post-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.single-post-author-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.single-post-author-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}



/* Related Posts */
.single-post-related {
    background: var(--light-bg);
    padding: 3rem 0;
    margin-top: 4rem;
}

.single-post-related-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.single-post-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.single-post-related-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-post-related-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.single-post-related-image {
    overflow: hidden;
}

.single-post-related-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-post-related-item:hover .single-post-related-img {
    transform: scale(1.05);
}

.single-post-related-content {
    padding: 1.5rem;
}

.single-post-related-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.single-post-related-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-related-link:hover {
    color: var(--brand-blue);
}

.single-post-related-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Service Area Pages */
.service-area-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.service-area-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-area-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 54, 112, 0.8), rgba(0, 157, 255, 0.7));
}

.service-area-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-area-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.service-area-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-area-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (min-width: 1024px) {
    .service-area-layout {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.service-area-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-area-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.service-area-content {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.125rem;
}

.service-area-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-area-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-area-service-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-area-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-area-service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-area-service-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-area-price-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.service-area-price-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-lime);
}

.service-area-coverage-content {
    background: var(--light-bg);
    border-radius: 0.75rem;
    padding: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-area-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-area-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-area-testimonial-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.service-area-testimonial-quote {
    position: relative;
    margin-bottom: 1rem;
}

.service-area-quote-icon {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    width: 2rem;
    height: 2rem;
    color: var(--brand-sky);
    opacity: 0.2;
}

.service-area-testimonial-quote p {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding-left: 1.5rem;
}

.service-area-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-area-testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

.service-area-testimonial-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.service-area-cta {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.service-area-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-area-cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-area-cta-button {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-area-cta-button:hover {
    background: #7ab33a;
    color: white;
}

/* Sidebar */
.service-area-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-area-contact-card,
.service-area-benefits-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.service-area-contact-title,
.service-area-benefits-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-area-contact-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-area-contact-phone,
.service-area-contact-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-area-contact-phone:hover,
.service-area-contact-email:hover {
    color: var(--brand-sky);
}

.service-area-contact-phone svg,
.service-area-contact-email svg {
    width: 1.25rem;
    height: 1.25rem;
}

.service-area-contact-button {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.service-area-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-area-benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-area-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-lime);
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-area-hero {
        min-height: 40vh;
    }
    
    .service-area-hero-title {
        font-size: 2rem;
    }
    
    .service-area-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-area-layout {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .service-area-main {
        gap: 2rem;
    }
    
    .service-area-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-area-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-cta {
        padding: 1.5rem;
    }
    
    .service-area-cta-title {
        font-size: 1.25rem;
    }
    
    .service-area-cta-text {
        font-size: 1rem;
    }
}

/* 404 Page */
.not-found {
    padding: 4rem 0;
}

.not-found-header {
    text-align: center;
    margin-bottom: 2rem;
}

.not-found-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.not-found-subtitle {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.not-found-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.not-found-sitemap {
    max-width: 800px;
    margin: 0 auto;
}

.not-found-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.not-found-links {
    columns: 2;
    gap: 2rem;
}

.not-found-links a {
    color: var(--brand-blue);
    text-decoration: none;
}

.not-found-links a:hover {
    text-decoration: underline;
}

/* Reading Time */
.single-post-reading-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.single-post-reading-time::before {
    content: "⏱";
    font-size: 0.75rem;
}

/* Table of Contents */
.table-of-contents {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.toc-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-title::before {
    content: "📋";
    font-size: 1rem;
}

.toc-nav {
    margin: 0;
}

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

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.toc-link:hover {
    color: var(--brand-blue);
    background: rgba(30, 54, 112, 0.05);
}

.toc-level-2 {
    font-weight: 500;
}

.toc-level-3 {
    padding-left: 1rem;
    font-size: 0.875rem;
}

.toc-level-4 {
    padding-left: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Sticky TOC on desktop */
@media (min-width: 1024px) {
    .table-of-contents {
        position: sticky;
        top: 2rem;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }
}

/* Blog Post Summary and Quick Tips */
.single-post-summary {
    background: linear-gradient(135deg, var(--brand-sky), #009dff);
    color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 157, 255, 0.3);
}

.single-post-summary-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.single-post-quick-tips {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.single-post-quick-tips-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post-quick-tips-title::before {
    content: "💡";
    font-size: 1.5rem;
}

.single-post-quick-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post-quick-tip {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.single-post-quick-tip:last-child {
    border-bottom: none;
}

.single-post-quick-tip::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--brand-lime);
    font-weight: bold;
    font-size: 1.1rem;
}

.post-intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--brand-green);
    border-radius: 0 0.5rem 0.5rem 0;
}

.checklist-section {
    margin: 3rem 0;
}

.checklist-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-green);
}

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

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: var(--brand-green);
    box-shadow: 0 2px 8px rgba(139, 197, 63, 0.15);
}

.checklist-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-green);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checklist-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

.post-rich-text {
    margin: 2rem 0;
}

.post-rich-text h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.post-rich-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.post-rich-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.post-rich-text ul,
.post-rich-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-rich-text li {
    margin-bottom: 0.5rem;
}

.pull-quote-block {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
    color: white;
    border-radius: 0.75rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(30, 54, 112, 0.2);
}

.pull-quote-block::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
}

.pull-quote-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: white;
}

.pull-quote-cite {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-layout {
        padding: 2rem 0;
    }
    
    .blog-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .blog-post-image {
        order: -1;
    }
    
    .blog-post-img {
        height: 200px;
    }
    
    .single-post-hero {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .single-post-layout {
        margin-bottom: 2rem;
    }
    
    .single-post-content {
        padding: 1.5rem;
    }
    
    .single-post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    

    
    .single-post-related-grid {
        grid-template-columns: 1fr;
    }
    
    .single-post-sharing-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 2rem 0;
    }
    
    .blog-featured-content,
    .blog-post-content,
    .single-post-content {
        padding: 1rem;
    }
    
    .single-post-title {
        font-size: 1.5rem;
    }
    
    .single-post-related {
        padding: 2rem 0;
    }
}

/* ===================================
   Thank You Pages - Enhanced Design
   =================================== */

.thank-you-page {
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.thank-you-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.thank-you-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, var(--brand-green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 10px 15px -3px rgba(34, 197, 94, 0.4),
        0 4px 6px -2px rgba(34, 197, 94, 0.1);
    position: relative;
    animation: thankYouIconPulse 2s ease-in-out infinite;
}

.thank-you-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--brand-green) 0%, #059669 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: thankYouIconGlow 2s ease-in-out infinite;
}

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

@keyframes thankYouIconGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.thank-you-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.thank-you-message {
    margin-bottom: 3rem;
}

.thank-you-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.thank-you-next-steps {
    text-align: left;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.thank-you-next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-blue) 100%);
}

.thank-you-next-steps h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thank-you-next-steps h3::before {
    content: '📋';
    font-size: 1.2rem;
}

.thank-you-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thank-you-next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.thank-you-next-steps li:hover {
    transform: translateX(5px);
    color: var(--brand-green);
}

.thank-you-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.2rem;
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thank-you-actions .btn::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 ease;
}

.thank-you-actions .btn:hover::before {
    left: 100%;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, var(--brand-green) 0%, #059669 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.thank-you-actions .btn-secondary {
    background: white;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.thank-you-actions .btn-secondary:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.thank-you-contact-info {
    border-top: 2px solid #e2e8f0;
    padding-top: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: 0 -3rem -4rem;
    padding: 2.5rem 3rem 4rem;
    border-radius: 0 0 20px 20px;
}

.thank-you-contact-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.thank-you-contact-info h3::before {
    content: '📞';
    font-size: 1.2rem;
}

.thank-you-contact-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thank-you-phone {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
    margin-bottom: 1.5rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thank-you-phone:hover {
    color: var(--brand-sky);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: var(--brand-blue);
}

.thank-you-business-hours {
    margin-top: 2rem;
    text-align: left;
    display: inline-block;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.thank-you-business-hours h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thank-you-business-hours h4::before {
    content: '🕒';
    font-size: 1rem;
}

.thank-you-business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thank-you-business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid #f1f5f9;
}

.thank-you-business-hours li:last-child {
    border-bottom: none;
}

.thank-you-business-hours .day {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   Enhanced Thank You Pages - New Design
   =================================== */

/* Hero Section */
.thank-you-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-sky) 100%);
    overflow: hidden;
}

.thank-you-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.thank-you-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 40%;
    right: 10%;
    animation-delay: 3s;
}

.particle-5 {
    width: 18px;
    height: 18px;
    bottom: 20%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.thank-you-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.thank-you-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Success Animation */
.thank-you-success-animation {
    margin-bottom: 3rem;
}

.success-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.success-checkmark {
    width: 100%;
    height: 100%;
}

.success-checkmark svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.success-circle-bg {
    stroke: rgba(255, 255, 255, 0.3);
}

.success-circle-fill {
    stroke: var(--brand-green);
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: successCircleFill 1.5s ease-in-out 0.5s forwards;
}

.success-check {
    stroke: var(--brand-green);
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: successCheckDraw 0.8s ease-in-out 2s forwards;
}

@keyframes successCircleFill {
    to { stroke-dashoffset: 0; }
}

@keyframes successCheckDraw {
    to { stroke-dashoffset: 0; }
}

/* Hero Text */
.thank-you-hero-title {
    margin-bottom: 2rem;
}

.thank-you-hero-greeting {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.thank-you-hero-message {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.thank-you-hero-subtitle {
    margin-bottom: 3rem;
}

.thank-you-hero-subtitle p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Response Promise */
.thank-you-response-promise {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.response-promise-icon {
    width: 40px;
    height: 40px;
    color: var(--brand-green);
}

.response-promise-icon svg {
    width: 100%;
    height: 100%;
}

.response-promise-text {
    text-align: left;
}

.response-promise-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.response-promise-text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Main Content */
.thank-you-main-content {
    padding: 5rem 0;
    background: #f8fafc;
}

.thank-you-content-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.thank-you-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Timeline Steps */
.next-steps-timeline {
    position: relative;
}

.next-steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-green), var(--brand-sky));
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-lime));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Support Options */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.support-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-sky);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon svg {
    width: 24px;
    height: 24px;
}

.support-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.support-phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-sky);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.support-phone-number:hover {
    color: var(--brand-blue);
}

.support-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.business-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.business-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.business-hour-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.business-hour-item .hours {
    color: var(--text-light);
}

/* Enhanced Action Buttons */
.thank-you-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.thank-you-actions .btn svg {
    width: 20px;
    height: 20px;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-lime));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.thank-you-actions .btn-secondary {
    background: white;
    color: var(--brand-sky);
    border: 2px solid var(--brand-sky);
    box-shadow: 0 4px 15px rgba(0, 157, 255, 0.1);
}

.thank-you-actions .btn-secondary:hover {
    background: var(--brand-sky);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 157, 255, 0.3);
}

/* Mobile styles for enhanced thank you pages */
@media (max-width: 768px) {
    .thank-you-hero {
        min-height: 50vh;
    }
    
    .thank-you-hero-content {
        padding: 3rem 1rem;
    }
    
    .thank-you-hero-greeting {
        font-size: 2.5rem;
    }
    
    .thank-you-hero-message {
        font-size: 1.4rem;
    }
    
    .thank-you-hero-subtitle p {
        font-size: 1.1rem;
    }
    
    .thank-you-response-promise {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .thank-you-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thank-you-section {
        padding: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .timeline-step {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .next-steps-timeline::before {
        left: 22.5px;
    }
    
    .support-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}



/* Mobile styles for thank you pages */
@media (max-width: 768px) {
    .thank-you-page {
        padding: 3rem 0;
        min-height: 70vh;
    }
    
    .thank-you-content {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .thank-you-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .thank-you-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .thank-you-title {
        font-size: 2.2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.2rem;
    }
    
    .thank-you-message p {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .thank-you-phone {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
    
    .thank-you-contact-info {
        margin: 0 -1.5rem -2.5rem;
        padding: 2rem 1.5rem 2.5rem;
        border-radius: 0 0 16px 16px;
    }
    
    .thank-you-next-steps {
        padding: 1.5rem;
    }
    
    .thank-you-next-steps li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}

/* Service Areas Section - Copied from main sections */
.service-areas {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.service-areas-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-areas-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-areas-subheader {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.service-areas-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .service-areas-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Map Section */
.service-areas-map {
  position: relative;
}

.service-areas-map-container {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-areas-map-container {
    height: 500px;
  }
}

/* Google Maps Info Window Styling */
.gm-style .gm-style-iw-c {
  border-radius: 0.75rem !important;
  padding: 0 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  border-radius: 0.75rem !important;
}

.gm-style .gm-style-iw-t::after {
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue)) !important;
}

.service-area-info-window {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  min-width: 120px;
}

/* Service Areas List */
.service-areas-list-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-areas-groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-area-group {
  border: 1px solid rgba(0, 157, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 157, 255, 0.05);
  transition: box-shadow 0.3s ease;
}

.service-area-group:hover {
  box-shadow: 0 4px 15px rgba(0, 157, 255, 0.1);
}

.service-area-group-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-family: inherit;
}

.service-area-group-toggle:hover {
  background: rgba(0, 157, 255, 0.02);
}

.service-area-group-toggle:focus {
  outline: none;
  background: rgba(0, 157, 255, 0.05);
  box-shadow: inset 0 0 0 2px rgba(0, 157, 255, 0.2);
}

.service-area-group-toggle[aria-expanded="true"] {
  background: rgba(0, 157, 255, 0.05);
}

.service-area-group-toggle[aria-expanded="true"] .service-area-group-icon {
  transform: rotate(180deg);
}

.service-area-group-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.service-area-group-icon {
  color: var(--brand-sky);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.service-area-group-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.service-area-group-content.expanded {
  max-height: 1000px;
  padding: 1.25rem;
}

.service-areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 480px) {
  .service-areas-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .service-areas-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .service-areas-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Ensure consistent grid item heights */
.service-area-item {
  position: relative;
  display: flex;
  min-height: 3rem;
}

.service-area-pill {
  width: 100%;
  background: var(--white);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 157, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 157, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 3rem;
}

.service-area-pill::before {
  content: '📍';
  margin-right: 0.75rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.service-area-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.15);
  border-color: rgba(0, 157, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.05), rgba(0, 157, 255, 0.02));
}

.service-area-pill:hover::before {
  transform: scale(1.2);
}

.service-area-pill:focus {
  outline: none;
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.2);
}

.service-area-pill.active {
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  border-color: var(--brand-sky);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.3);
}

.service-area-pill.active::before {
  transform: scale(1.2);
}

.service-area-name {
  font-weight: 600;
  color: inherit;
  font-size: 0.95rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex: 1;
}

/* List CTA Section */
.service-areas-list-cta {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.05), rgba(0, 157, 255, 0.02));
  border-radius: 1rem;
  border: 1px solid rgba(0, 157, 255, 0.1);
}

.service-areas-list-cta-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-areas-list-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: var(--white);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-areas-list-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.3);
  color: var(--white);
  text-decoration: none;
}

/* CTA Section */
.service-areas-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-areas-cta-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-areas-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: var(--white);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-areas-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 157, 255, 0.3);
  color: var(--white);
  text-decoration: none;
}

/* Service Areas Overview Page Styles */

.service-areas-overview-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hero Section */
.service-areas-overview-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-areas-overview-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.service-areas-overview-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-areas-overview-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-areas-overview-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta-button {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.hero-cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Overview Section */
.service-areas-overview-intro {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.service-areas-overview-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2c5aa0;
}

.service-areas-overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-areas-overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.service-areas-overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
}

.service-areas-overview-text p {
    margin-bottom: 1.5rem;
}

/* Service Areas by Region */
.service-areas-regions-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.service-areas-regions-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23cbd5e1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.service-areas-regions-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.service-areas-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-region-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2c5aa0;
}

.service-region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.service-region-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.service-region-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-region-header p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-region-areas {
    display: grid;
    gap: 1rem;
}

.service-area-item {
    transition: all 0.2s ease;
}

.service-area-link {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.service-area-link:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #3b82f6;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.service-area-link h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.service-area-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Services Overview Section */
.service-areas-services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    position: relative;
}

.service-areas-services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #10b981;
}

.service-areas-services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-areas-services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-overview-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #2c5aa0 transparent transparent;
    opacity: 0.3;
}

.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #10b981;
}

.service-overview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-overview-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-overview-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-overview-card li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.service-overview-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(16, 185, 129, 0.3);
}

/* CTA Section */
.service-areas-overview-cta {
    padding: 60px 0 120px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.service-areas-overview-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="10" r="0.3" fill="white" opacity="0.1"/><circle cx="40" cy="40" r="0.4" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.service-areas-overview-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-areas-overview-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-areas-overview-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.service-areas-overview-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-areas-overview-cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-areas-overview-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    border: none;
}

.service-areas-overview-cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    color: white;
}

.service-areas-overview-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.service-areas-overview-cta-buttons .btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-areas-overview-hero-title {
        font-size: 2.5rem;
    }
    
    .service-areas-overview-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-areas-overview-content h2,
    .service-areas-regions-overview h2,
    .service-areas-services-overview h2,
    .service-areas-overview-cta h2 {
        font-size: 2rem;
    }
    
    .service-areas-regions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-areas-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-areas-overview-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-areas-overview-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-areas-overview-hero {
        padding: 60px 0;
    }
    
    .service-areas-overview-hero-title {
        font-size: 2rem;
    }
    
    .service-areas-overview-intro {
        padding: 100px 0 60px 0;
    }
    
    .service-areas-regions-overview,
    .service-areas-services-overview {
        padding: 60px 0;
    }
    
    .service-areas-overview-cta {
        padding: 60px 0 100px 0;
    }
    
    .service-region-card {
        padding: 1.5rem;
    }
    
    .service-overview-card {
        padding: 1.5rem;
    }
}
