/*
Theme Name: Donasha
Theme URI: http://donasha.local
Author: AI Assistant
Description: A premium, dynamic WordPress theme for Donasha Healthcare Services. Includes customizable sections for Hero, Services, and Contacts.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: donasha
*/

@font-face {
  font-family: 'GT Super Display';
  src: url('./fonts/GT-Super-Display-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GT Super Display';
  src: url('./fonts/GT-Super-Display-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

/* ---------------------------------------------------------
   CSS Variables for Design System
--------------------------------------------------------- */
:root {
  --primary-color: #1AA2DF; /* Brand Blue */
  --secondary-color: #98CF5A; /* Brand Green */
  --accent-color: #98CF5A; /* Brand Green for accents/buttons */
  --text-dark: #333333;
  --text-light: #777777;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --font-main: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-headings: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --border-radius: 8px;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: #d65411;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: #fff;
}

.btn-secondary {
  background: var(--primary-color);
}

.btn-secondary:hover {
  background: #004275;
}

/* ---------------------------------------------------------
   Top Bar
--------------------------------------------------------- */
.top-bar {
  background-color: #F8F9FA;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px solid #EAEAEA;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar i {
  color: var(--secondary-color);
  margin-right: 5px;
}

.top-bar .divider {
  color: #ccc;
  margin: 0 5px;
}

.top-bar-links a {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 5px;
}

.top-bar-links a:hover {
  color: var(--secondary-color);
}

.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  color: var(--text-dark);
  margin-left: 8px;
  transition: var(--transition);
}

.top-bar-social a i {
  margin: 0;
  color: inherit;
  font-size: 0.8rem;
}

.top-bar-social a:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: #fff;
}

/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.site-branding {
  flex: 1;
}

.site-branding h1 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.site-branding .custom-logo {
  max-height: 65px;
  width: auto;
  max-width: 100%;
}

.site-branding h1 a {
  color: var(--primary-color);
}

.site-branding h1 span {
  color: var(--secondary-color);
}

.main-navigation {
  flex: 0 0 auto;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-navigation a {
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.main-navigation a:hover {
  color: var(--secondary-color);
}

/* Dropdown Menu (Flyout) */
.main-navigation ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 250px;
  flex-direction: column;
  gap: 0;
  padding: 10px 0;
  border-radius: 8px;
  border-top: 3px solid var(--secondary-color);
  z-index: 1000;
}

.main-navigation li:hover > ul.sub-menu {
  display: flex;
}

.main-navigation ul.sub-menu li {
  width: 100%;
}

.main-navigation ul.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

.main-navigation ul.sub-menu li:last-child a {
  border-bottom: none;
}

.main-navigation ul.sub-menu a:hover {
  background-color: #f9f9f9;
  color: var(--primary-color);
  padding-left: 25px; /* slight indent on hover */
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.header-icon {
  color: var(--text-dark);
  font-size: 1.2rem;
}

.header-icon:hover {
  color: var(--secondary-color);
}

.btn-appointment {
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}

.btn-appointment:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-appointment i {
  margin-left: 5px;
}

/* ---------------------------------------------------------
   Hero Section
--------------------------------------------------------- */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #E6F2ED; /* Soft background */
  padding: 80px 0 0 0;
  overflow: hidden;
}

.hero-deco-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 250px;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shapes .shape-blue {
  position: absolute;
  top: 130px;
  right: 0;
  width: 60px;
  height: 100px;
  background-color: var(--primary-color);
  border-bottom-left-radius: 60px;
  z-index: 1;
}

.hero-deco-shapes .shape-green {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 180px;
  background-color: var(--secondary-color);
  border-bottom-left-radius: 90px;
  z-index: 2;
}

.hero-bg-text {
  position: absolute;
  top: 10%;
  left: 45%;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  z-index: 1;
  font-family: var(--font-headings);
  line-height: 1;
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 50%;
  padding-right: 50px;
  padding-bottom: 80px;
}

.hero-subheading {
  color: #008779;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.hero-subheading .dot {
  width: 8px;
  height: 8px;
  background-color: #008779;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.hero-left h1 {
  font-size: 4rem;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.1;
  font-family: 'GT Super Display', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
}

.hero-left p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 90%;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-actions .btn {
  background-color: var(--primary-color);
  padding: 15px 30px;
}

.hero-actions .btn:hover {
  background-color: #1480b0; /* Darker blue */
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  width: 50px;
  height: 50px;
  background-color: #F8CB9C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
}

.phone-text {
  display: flex;
  flex-direction: column;
}

.phone-text .need-help {
  font-size: 0.9rem;
  color: var(--text-light);
}

.phone-text .number {
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
}

.hero-right {
  flex: 1;
  min-width: 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-main-img {
  max-height: 750px;
  object-fit: contain;
  margin-bottom: -5px;
}

.hero-stats-box {
  position: absolute;
  top: 30%;
  right: 0;
  background: transparent;
  padding: 20px;
  width: 250px;
}

.avatars {
  display: flex;
  margin-bottom: 10px;
}

.avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -15px;
  object-fit: cover;
  background: #ccc;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-stats-box h4 {
  font-size: 1.3rem;
  color: #000;
  margin: 0 0 5px 0;
}

.hero-stats-box p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

/* ---------------------------------------------------------
   How We Work Section
--------------------------------------------------------- */
.how-we-work-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.hww-container {
  display: flex;
  gap: 80px;
}

.hww-left {
  flex: 1;
  max-width: 32%;
}

.hww-subheading {
  color: #008779;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.hww-subheading .dot {
  width: 8px;
  height: 8px;
  background-color: #008779;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.hww-blue-box {
  background-color: #DEEFFB;
  border-top-right-radius: 120px;
  padding: 60px 40px;
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
}

.hww-box-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  font-family: Georgia, serif;
  margin-bottom: 50px;
}

.hww-mask-image {
  width: 280px;
  height: 280px;
  margin: auto auto 0 auto;
  background-size: cover;
  background-position: center;
  /* SVG Heart Mask */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.hww-mask-image.placeholder-mask {
  background-color: #A9D1F9;
}

.hww-right {
  flex: 1;
  max-width: 68%;
  padding-top: 30px;
}

.hww-main-heading {
  font-size: 3rem;
  font-family: 'GT Super Display', Georgia, serif;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 60px;
}

.hww-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 30px;
}

.hww-service-item {
  display: flex;
  flex-direction: column;
}

.hww-service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hww-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid #eee;
  padding: 12px;
}

.hww-icon.placeholder-icon {
  background-color: #f9f9f9;
}

.hww-service-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--font-headings);
}

.hww-service-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .hww-container {
    flex-direction: column;
  }
  .hww-left, .hww-right {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hww-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Services Section
--------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #E6F2ED 0%, #D4E9E2 100%);
}

.services-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* Left Column: Cards */
.services-col-left {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-subheading {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.services-subheading .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.service-list-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-list-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.service-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26,162,223,0.2); /* RGBA of brand blue */
  color: #fff;
}

.service-list-card:hover::before {
  transform: scaleX(1);
}

.service-list-card:hover .service-card-title,
.service-list-card:hover .service-card-icon {
  color: #fff;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background-color: #F8CBA6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #000;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  font-family: 'GT Super Display', Georgia, serif;
  color: #000;
  transition: color 0.3s ease;
}

/* Middle Column: Image */
.services-col-middle {
  flex: 0 0 35%;
}

.services-mid-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 20px;
  border-bottom-left-radius: 250px;
}

.services-mid-img.placeholder-img {
  background-color: #ccc;
}

/* Right Column: Text Content */
.services-col-right {
  flex: 0 0 35%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-main-heading {
  font-size: 2.2rem;
  font-family: 'GT Super Display', Georgia, serif;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

.services-right-heading {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}

.services-right-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.services-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services-check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #000;
}

.services-check-list li i {
  color: #F8CBA6;
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-services {
  align-self: flex-start;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  padding: 12px 25px;
}

.btn-services:hover {
  background-color: #1480b0;
  color: #fff;
}

/* ---------------------------------------------------------
   CTA Section
--------------------------------------------------------- */
.cta-section {
  padding: 40px 0;
  background-color: #E6F2ED;
  background-image: radial-gradient(#d3e8dc 15%, transparent 15%);
  background-size: 40px 40px; /* Dot pattern like screenshot */
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon-box {
  width: 70px;
  height: 70px;
  background-color: #008779;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
}

.cta-heading {
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.cta-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cta-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-phone i {
  color: #008779;
}

.btn-cta {
  background-color: #F8CBA6;
  color: #000;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: #e5b48e;
  color: #000;
}

@media (max-width: 991px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-left {
    flex-direction: column;
  }
  .cta-right {
    flex-direction: column;
  }
}

/* ---------------------------------------------------------
   Testimonials Section
--------------------------------------------------------- */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #E6F2ED 0%, #d5e9e0 100%);
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.testi-col-left {
  flex: 0 0 35%;
}

.testi-main-heading {
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.testi-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testi-col-right {
  flex: 1;
}

.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

.testi-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.testi-card-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.testi-stars {
  color: #FF9800; /* Orange stars */
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testi-stars .testi-card-title {
  color: #000;
  font-weight: 700;
  margin-left: 10px;
  font-size: 1.1rem;
}

.testi-quote {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  position: relative;
}

.testi-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E6F2ED;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-right: 15px;
}

.testi-author-name {
  margin: 0;
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
}

.testi-author-role {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testi-pagination {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  gap: 8px;
}

.testi-pagination .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #ccc;
  cursor: pointer;
}

.testi-pagination .dot.active {
  background-color: #F8CBA6;
  border-color: #F8CBA6;
}

.testi-card-image {
  flex: 0 0 35%;
  position: relative;
}

.testi-card-image img,
.testi-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-placeholder-img {
  background-color: #ddd;
}

.quote-icon {
  position: absolute;
  bottom: -15px;
  left: -20px;
  font-size: 5rem;
  color: #fff;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

@media (max-width: 991px) {
  .testimonials-container {
    flex-direction: column;
  }
  .testi-card {
    flex-direction: column;
  }
  .testi-card-image {
    height: 300px;
  }
}

/* ---------------------------------------------------------
   Blog Section
--------------------------------------------------------- */
.blog-section {
  padding: 80px 0;
  background-color: #fff;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-main-heading {
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-main-heading .underline-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.blog-main-heading .underline-text::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #F8CBA6; /* The orange accent */
  z-index: -1;
  border-radius: 4px;
}

.blog-grid {
  display: flex;
  gap: 40px;
}

.blog-col-left {
  flex: 0 0 55%;
}

.blog-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Large Card */
.blog-card-large {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-large-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  height: 400px;
}

.blog-card-large-image img,
.blog-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-large-image:hover img {
  transform: scale(1.05);
}

.blog-placeholder {
  background-color: #eee;
}

.blog-card-meta {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.blog-card-meta i {
  margin-right: 5px;
}

.blog-card-title {
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-card-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--primary-color);
}

.blog-card-excerpt {
  color: var(--text-light);
  line-height: 1.6;
}

/* Small Cards */
.blog-card-small {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.blog-card-small:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-card-small-image {
  flex: 0 0 160px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-card-small-image img,
.blog-placeholder-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-small-image:hover img {
  transform: scale(1.05);
}

.blog-placeholder-small {
  background-color: #eee;
}

.blog-card-small-content {
  flex: 1;
}

.blog-card-small-title {
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
}

.blog-card-small-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-small-title a:hover {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .blog-grid {
    flex-direction: column;
  }
  .blog-col-left, .blog-col-right {
    flex: 1;
  }
}

/* ---------------------------------------------------------
   About & Contact Info (Footer)
--------------------------------------------------------- */
.site-footer {
  background: var(--primary-color); /* Blue background */
  color: #fff;
  padding: 80px 0 0;
  font-family: 'Inter', sans-serif;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-widget {
  flex: 1;
  min-width: 200px;
}

.footer-col-1 { flex: 1.5; }
.footer-col-4 { flex: 1.5; }

.footer-logo-text {
  color: #fff;
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.footer-logo-link img {
  max-width: 250px;
  margin-top: -20px;
  margin-bottom: 30px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.footer-contact-list i {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-contact-list strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.footer-contact-list span {
  color: #fff;
  font-size: 0.9rem;
}

.footer-contact-list span a {
  color: #fff;
  text-decoration: none;
}

.footer-contact-list span a:hover {
  color: #e0e0e0;
}

.footer-widget-title {
  color: #fff;
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #008779;
}

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

.footer-menu li {
  margin-bottom: 15px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #F8CBA6;
}

.footer-newsletter-text {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input-group {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-input-group input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input-group button {
  background: #008779;
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 8px;
  margin: 4px;
}

.newsletter-input-group button:hover {
  background: #006b60;
}

.newsletter-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.newsletter-terms input {
  margin-top: 3px;
}

.newsletter-terms u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  background: #E6F2ED;
  color: #000;
  padding: 20px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: #008779;
  border-color: #008779;
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-bottom-links a {
  color: #000;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #008779;
}

.footer-bottom-links .separator {
  color: #008779;
}

@media (max-width: 991px) {
  .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
    flex: 1 1 100%;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------------------------------------------------------
   Side Drawer
--------------------------------------------------------- */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 400px;
  height: 100%;
  background: var(--bg-light);
  z-index: 10001;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 40px;
}

.side-drawer.open {
  right: 0;
}

.close-drawer {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.close-drawer:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.drawer-logo h2 {
  color: var(--primary-color);
}

.drawer-desc {
  margin: 20px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.drawer-contact {
  list-style: none;
  margin-bottom: 30px;
}

.drawer-contact li {
  display: flex;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.drawer-contact i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
}

.drawer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.drawer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.drawer-social a:hover {
  background: var(--secondary-color);
  color: #fff;
}

.drawer-newsletter {
  background: #f8cb9c; /* matching screenshot orange */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.drawer-newsletter h4 {
  color: #000;
  margin-bottom: 15px;
}

.drawer-newsletter form {
  display: flex;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.drawer-newsletter input {
  border: none;
  padding: 12px;
  flex: 1;
  outline: none;
}

.drawer-newsletter button {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-newsletter button:hover {
  background: var(--primary-color);
}

.drawer-navigation {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

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

.drawer-menu-list li {
  margin-bottom: 15px;
}

.drawer-menu-list a {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.drawer-menu-list a:hover {
  color: var(--secondary-color);
}

.drawer-menu-list .sub-menu {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
}

.drawer-menu-list .sub-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ---------------------------------------------------------
   Responsive Core (Header, Hero, Top Bar)
--------------------------------------------------------- */
@media (max-width: 991px) {
  /* Top Bar */
  .top-bar {
    height: auto;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .top-bar-left, .top-bar-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 5px;
  }
  
  /* Header */
  .main-navigation {
    display: none !important; /* Hide desktop menu entirely */
  }
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-branding {
    flex: 1 1 auto;
    max-width: 60%;
  }
  .header-right {
    flex: 0 0 auto;
    gap: 15px;
  }
  
  /* Hero */
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .hero-left h1 {
    font-size: 3rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-bg-text {
    font-size: 6rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 2.2rem;
  }
  .btn-appointment {
    display: none !important; /* Hide to prevent overlapping on tiny screens */
  }
  .header-right .header-icon {
    font-size: 1.5rem;
  }
}

/* ---------------------------------------------------------
   About Page Styles
--------------------------------------------------------- */
.page-banner {
  background-color: #0b1a2a; /* Dark fallback */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden; /* Hide overflowing shapes */
}

/* =========================================
   Page Banner Decorative Shapes (Variants)
========================================= */
.page-banner-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.page-banner-shapes > div {
  position: absolute;
  opacity: 0.85; /* Slightly muted for dark background */
}

/* Variant 1: Classic Top-Right */
.variant-1 .shape-green {
  top: 0;
  right: 0;
  width: 90px;
  height: 180px;
  background-color: var(--secondary-color);
  border-bottom-left-radius: 90px;
}
.variant-1 .shape-blue {
  top: 130px;
  right: 0;
  width: 60px;
  height: 100px;
  background-color: var(--primary-color);
  border-bottom-left-radius: 60px;
}

/* Variant 2: Bottom-Left Swoosh */
.variant-2 .shape-green {
  bottom: 0;
  left: 0;
  width: 120px;
  height: 150px;
  background-color: var(--secondary-color);
  border-top-right-radius: 120px;
}
.variant-2 .shape-blue {
  bottom: 0;
  left: 120px;
  width: 80px;
  height: 90px;
  background-color: var(--primary-color);
  border-top-right-radius: 80px;
}

/* Variant 3: Split Corners */
.variant-3 .shape-green {
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: var(--secondary-color);
  border-bottom-right-radius: 100px;
}
.variant-3 .shape-blue {
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  border-top-left-radius: 120px;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 51, 102, 0.8); /* Stronger blue tone overlay */
  z-index: -1;
}

.page-banner-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  color: #fff;
  font-size: 1rem;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb .sep {
  margin: 0 10px;
  color: #aaa;
}

.breadcrumb .current {
  color: #f38f45; /* Orange highlight */
}

/* About Section */
.about-us-section {
  padding: 80px 0;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-image-col {
  flex: 1 1 45%;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 40px 250px 10px 40px;
  box-shadow: var(--shadow-md);
  display: block;
}

.about-content-col {
  flex: 1 1 50%;
}

.section-subtitle-wrap {
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.about-content-col .section-title {
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.highlight-circle {
  position: relative;
  z-index: 1;
}

.highlight-circle::after {
  content: '';
  position: absolute;
  left: -5%;
  bottom: 5px;
  width: 110%;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #f38f45;
  z-index: -1;
  transform: rotate(-2deg);
}

.about-page-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-page-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.about-page-content ul li {
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-page-content ul li::before {
  content: '\f058'; /* Font Awesome check-circle */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f38f45;
  font-size: 1.1rem;
}

.about-bottom-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-end;
  justify-content: space-between;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.btn-services {
  padding: 15px 30px;
}

.mail-us {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mail-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f8cb9c;
  color: #d87627;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mail-text {
  display: flex;
  flex-direction: column;
}

.mail-text .label {
  font-size: 0.85rem;
  color: #666;
}

.mail-text .email a {
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

.experience-badge {
  background: #e6f0fa; /* Light blue */
  border-radius: 15px;
  padding: 20px;
  width: 220px;
}

.badge-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.badge-top .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.badge-top .plus {
  font-size: 1.5rem;
  font-weight: 400;
}

.badge-top .text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.badge-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

@media (max-width: 991px) {
  .about-row {
    flex-direction: column;
  }
  .about-image-col, .about-content-col {
    flex: 1 1 100%;
  }
  .about-image-wrapper img {
    border-radius: 20px;
  }
  .about-bottom-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------
   Vision Section
--------------------------------------------------------- */
.vision-section {
  background: linear-gradient(135deg, #e4f3ed 0%, #dcf0e8 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.vision-section .container {
  position: relative;
  z-index: 1;
}

.vision-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 30px;
}

.vision-subtitle-col {
  flex: 0 0 250px;
  padding-top: 15px;
}

.vision-title-col {
  flex: 1;
}

.vision-title-col .section-title {
  margin: 0;
  color: var(--text-dark);
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.vision-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
}

.vision-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.vision-card:first-child .vision-card-image img {
  border-radius: 10px 180px 10px 10px;
}

.vision-card:last-child .vision-card-image img {
  border-radius: 180px 10px 10px 10px;
}

.vision-card-body {
  padding: 0 10px 10px;
}

.vision-card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.vision-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.vision-card-heading h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.vision-card-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 80px 0;
  background-color: transparent; /* Assuming light background of the page */
}

.wcu-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.wcu-image-col {
  flex: 1 1 45%;
}

.wcu-image-wrapper img {
  width: 100%;
  border-radius: 10px 10px 10px 150px;
  box-shadow: var(--shadow-md);
  display: block;
  margin-top: 20px;
}

.wcu-content-col {
  flex: 1 1 50%;
}

.wcu-content-col .section-title {
  color: var(--text-dark);
  font-family: 'GT Super Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.wcu-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.wcu-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.wcu-feature {
  flex: 1;
}

.wcu-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.wcu-feature-text h4 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.wcu-feature-text p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.wcu-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.wcu-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wcu-rating .rating-text strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.wcu-rating .rating-text span {
  display: block;
  color: #666;
  font-size: 0.85rem;
}

/* Services Listing Page */
.services-listing-section {
  padding: 80px 0;
  background-color: transparent;
}

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

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #eeb57f; /* The tan/orange color */
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.service-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-excerpt p {
  margin: 0;
}

.service-read-more {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-read-more i {
  font-size: 0.85rem;
}

/* Service Card Hover State */
.service-card:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card:hover .service-title,
.service-card:hover .service-excerpt,
.service-card:hover .service-excerpt p,
.service-card:hover .service-read-more {
  color: #fff;
}

/* =========================================
   Single Service Page
========================================= */
.single-service-main {
  padding: 80px 0;
}

.service-single-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

/* Sidebar Widgets */
.service-sidebar-widget {
  background-color: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.service-sidebar-widget .widget-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

/* Sidebar Nav */
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 10px;
}

.sidebar-nav li:last-child {
  margin-bottom: 0;
}

.sidebar-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: var(--primary-color);
  color: #fff;
}

/* Working Hours */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
  color: #666;
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list li span:last-child {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  white-space: nowrap;
}

/* Sidebar Form */
.sidebar-form .form-group {
  margin-bottom: 15px;
}

.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
  border-color: var(--primary-color);
}

.sidebar-form button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Main Content */
.service-featured-image {
  margin-bottom: 30px;
}

.service-featured-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-main-title {
  font-family: 'GT Super Display', serif;
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-text-content {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Checklist */
.service-checklist-section {
  margin-bottom: 50px;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-weight: 500;
}

.service-checklist li i {
  color: #eeb57f; /* The tan/orange color */
  font-size: 1.1rem;
}

/* Accordion FAQ */
.service-accordion {
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
}

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

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #fff;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.accordion-header.active {
  background-color: #fcfcfc;
}

.accordion-icon {
  background-color: #eeb57f;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
}

.accordion-content {
  padding: 0 25px 25px 25px;
  color: #666;
  line-height: 1.7;
}

/* =========================================
   Blog Page Layout
========================================= */
.blog-main {
  padding: 80px 0;
  background-color: #fafafa;
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

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

/* Post Card */
.post-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card-image {
  position: relative;
  width: 100%;
  padding-top: 65%; /* aspect ratio */
  overflow: hidden;
}

.post-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.date-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #eeb57f;
  color: var(--bg-white);
  padding: 10px 15px;
  border-top-left-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-headings);
}

.date-badge .day {
  font-size: 1.4rem;
  font-weight: 700;
}

.date-badge .month {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 500;
}

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

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #169e9d; /* Teal matching the author/comment icon */
}

.post-meta i {
  margin-right: 5px;
}

.post-title {
  font-size: 1.4rem;
  font-family: var(--font-headings);
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.post-excerpt {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-read-more i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.post-read-more:hover {
  color: var(--secondary-color);
}

/* Sidebar Widgets */
.blog-sidebar-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.sidebar-widget .widget-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

/* Search */
.widget-search .search-form {
  position: relative;
  display: flex;
}

.widget-search .search-field {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  outline: none;
  background-color: #fcfcfc;
  font-family: var(--font-main);
}

.widget-search .search-submit {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background-color: #169e9d; /* Teal */
  color: #fff;
  border: none;
  width: 40px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.widget-search .search-submit:hover {
  background-color: var(--text-dark);
}

/* Popular Posts */
.popular-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.popular-post-thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.popular-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-thumb .no-thumb {
  width: 100%;
  height: 100%;
  background-color: #eee;
}

.popular-post-info .post-date {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-bottom: 5px;
}

.popular-post-info .post-title {
  font-size: 0.95rem;
  font-family: var(--font-main);
  margin: 0;
  line-height: 1.4;
}

.popular-post-info .post-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.popular-post-info .post-title a:hover {
  color: var(--secondary-color);
}

/* Categories */
.widget-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-categories ul li {
  margin-bottom: 10px;
}

.widget-categories ul li:last-child {
  margin-bottom: 0;
}

.widget-categories ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.widget-categories ul li a i {
  color: #999;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.widget-categories ul li a:hover {
  border-color: #eeb57f;
  color: #eeb57f;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.widget-categories ul li a:hover i {
  color: #eeb57f;
  transform: translateX(3px);
}

/* =========================================
   Contact Page
========================================= */
.contact-main {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* Contact Form Box */
.contact-form-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.contact-form-box .form-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-form-box .form-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.custom-contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.custom-contact-form .form-row input,
.custom-contact-form .form-row textarea {
  width: 100%;
  padding: 15px 20px;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: all 0.3s;
}

.custom-contact-form .form-row input:focus,
.custom-contact-form .form-row textarea:focus {
  border-color: #169e9d; /* Teal focus */
  background-color: #fff;
}

.custom-contact-form .submit-btn {
  background-color: var(--secondary-color); /* Green */
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
}

.custom-contact-form .submit-btn i {
  margin-left: 10px;
}

.custom-contact-form .submit-btn:hover {
  background-color: var(--text-dark);
}

/* Contact Info Column */
.contact-info-col {
  padding: 20px 0;
}

.contact-subtitle-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-subtitle-wrap .dot {
  width: 8px;
  height: 8px;
  background-color: #169e9d;
  border-radius: 50%;
}

.contact-subtitle-wrap .contact-subtitle {
  font-size: 0.9rem;
  color: #169e9d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}

.contact-main-title {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 25px;
}

.swoosh-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.swoosh-text::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: -5%;
  width: 110%;
  height: 15px;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  box-shadow: 0 4px 0 0 #eeb57f; /* Orange swoosh approximation */
  z-index: -1;
  transform: rotate(-2deg);
}

.contact-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-hours-social {
  position: relative;
}

.hours-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  color: #666;
}

.hours-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.social-media-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-label {
  color: #666;
  font-weight: 500;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  color: var(--text-dark);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #169e9d;
  color: #fff;
  transform: translateY(-3px);
}

.contact-watermark {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  font-size: 8rem;
  color: var(--text-dark);
  z-index: -1;
  pointer-events: none;
}

/* Contact Map */
.contact-map-section {
  width: 100%;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  line-height: 0; /* removes bottom gap below iframe */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =========================================
   Testimonials Page
========================================= */
.testimonials-main {
  padding: 80px 0 0 0;
  background-color: var(--bg-white);
}

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

.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: #FFAA00; /* Orange stars */
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.testimonial-headline {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.testimonial-body {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  color: #ccc;
  font-size: 1.5rem;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0 0 2px 0;
}

.author-role {
  font-size: 0.85rem;
  color: #999;
}

.testimonial-quote-icon {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-size: 3rem;
  color: #f5f5f5; /* Light grey quotation mark */
  line-height: 1;
  pointer-events: none;
}

/* =========================================
   Comment Form Styling
========================================= */
.comment-respond {
  margin-top: 50px;
  background: #f4f6f5;
  padding: 40px;
  border-radius: 12px;
}

.comment-reply-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.comment-form p {
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.comment-form .form-submit {
  margin-top: 30px;
  margin-bottom: 0;
}

.comment-form .submit {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.comment-form .submit:hover {
  background-color: var(--primary-hover);
}

.logged-in-as, .comment-notes {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* =========================================
   FAQ Page
========================================= */
.faq-main {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  align-items: start;
}

.faq-accordion-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: box-shadow 0.3s;
}

.faq-accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
}

.faq-question-text {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  padding-right: 15px;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background-color: #fcefe3; /* Light orange bg */
  color: #d87627; /* Orange icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.faq-accordion-item.active .faq-toggle-icon {
  background-color: #d87627;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.faq-accordion-item.active .faq-answer {
  max-height: 1000px; /* Arbitrary large number for CSS transition */
}

.faq-answer-inner {
  padding: 0 25px 25px 25px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}
/* =========================================
   Search Overlay
========================================= */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* Dark semi-transparent */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #19b2b0; /* Cyan matching screenshot */
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.close-search:hover {
  background: #148f8d;
}

.search-overlay-content {
  width: 100%;
  max-width: 600px;
  padding: 20px;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-field {
  width: 100%;
  padding: 20px 70px 20px 25px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  background: #fff;
  outline: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-submit {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: #19b2b0;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.search-submit:hover {
  background: #148f8d;
}
@media (max-width: 991px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcu-image-col, .wcu-content-col {
    flex: 1 1 100%;
  }
  .blog-grid-layout {
    grid-template-columns: 1fr;
  }
  .contact-page-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-single-layout {
    grid-template-columns: 1fr;
  }
  .service-checklist {
    grid-template-columns: 1fr;
  }
  .vision-header {
    flex-direction: column;
    gap: 15px;
  }
  .vision-subtitle-col {
    padding-top: 0;
    flex: auto;
  }
  .wcu-features {
    flex-direction: column;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .custom-contact-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
