:root {
  --primary-blue: #2A9D8F;
  --primary-blue-dark: #1E7268;
  --primary-blue-light: #3DB8A9;
  --accent-orange: #E76F51;
  --accent-orange-dark: #D5583A;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --text-muted: #6D6875;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --success-green: #27ae60;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

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

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

a:hover {
  color: var(--primary-blue-light);
}

ul, ol {
  list-style-position: inside;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--accent-orange-dark);
  color: var(--text-light);
}

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

.btn-secondary:hover {
  background: var(--primary-blue-dark);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-blue);
}

.section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

.header-top {
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top a {
  color: var(--text-light);
}

.header-top a:hover {
  color: var(--accent-orange);
}

.header-main {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
}

.main-nav {
  display: none;
}

.main-nav.active {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-blue);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 100;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--text-dark);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Mega Menu Styles */
.nav-arrow {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-arrow {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 700px;
  padding: 1.5rem;
}

.mega-menu-areas {
  min-width: 500px;
}

.nav-dropdown.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mega-menu-areas .mega-menu-inner {
  grid-template-columns: repeat(3, 1fr);
}

.mega-menu-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-blue-light);
}

.mega-menu-column h4 a {
  color: var(--primary-blue);
  font-weight: 700;
}

.mega-menu-column h4 a:hover {
  color: var(--accent-orange);
}

.mega-menu-column h4 a::after {
  display: none;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li {
  margin-bottom: 0.375rem;
}

.mega-menu-column ul a {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.25rem 0;
  display: block;
  transition: color 0.2s ease;
}

.mega-menu-column ul a:hover {
  color: var(--accent-orange);
}

.mega-menu-column ul a::after {
  display: none;
}

.mega-menu-cta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.mega-menu-cta .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.column-toggle {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-close {
  display: none;
}

.header-cta {
  display: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-orange);
  color: var(--text-light);
}

.footer-logo-img {
  height: 45px;
  width: auto;
  max-width: 200px;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--text-light);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
  background-size: 100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-service .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.hero-service .breadcrumb a {
  color: #ffffff;
}

.hero-service .breadcrumb a:hover {
  color: var(--accent-orange);
}

.hero-service .hero-content {
  max-width: 800px;
}

.hero-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .hero-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-height: 300px;
    object-fit: cover;
  }
}

/* Services Grid */
.services-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.service-card h3 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-link {
  color: var(--accent-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card:hover .service-link {
  gap: 0.75rem;
}

/* Why Choose Us */
.why-us {
  padding: 4rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.why-us-item {
  text-align: center;
  padding: 1.5rem;
}

.why-us-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: var(--text-light);
}

.why-us-item h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.why-us-item p {
  color: var(--text-muted);
}

/* Service Areas */
.service-areas {
  padding: 4rem 0;
  background: var(--primary-blue);
  color: var(--text-light);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
}

.areas-list li {
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.areas-list li:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.areas-list li a {
  color: var(--text-light);
  text-decoration: none;
}

.areas-list li a::after {
  display: none;
}

.service-areas .section-title {
  color: var(--text-light);
}

.service-areas .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}

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

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: var(--text-light);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

/* Footer */
.site-footer {
  background: var(--primary-blue-dark);
  color: var(--text-light);
  padding: 4rem 0 0;
}

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

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255,255,255,0.7);
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--primary-blue);
}

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

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

.content-section.alt-bg {
  background: var(--bg-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.content-text h2 {
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.content-text h3 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.content-text p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-text ul, .content-text ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

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

/* Service List */
.service-list {
  list-style: none;
  margin: 1.5rem 0;
}

.service-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-list li::before {
  content: '✓';
  color: var(--success-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Semantic Definition List for Service Areas */
.service-definition-list {
  margin: 1.5rem 0;
}

.service-definition-list dt {
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-definition-list dt::before {
  content: '✓';
  color: var(--success-green);
  font-weight: 700;
}

.service-definition-list dd {
  margin-left: 1.5rem;
  padding: 0.5rem 0 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  line-height: 1.7;
}

/* Sub-services Grid */
.subservices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.subservice-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-blue);
}

.subservice-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.subservice-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.subservice-card a {
  color: var(--accent-orange);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 3rem 0;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Contact Form */
.contact-section {
  padding: 4rem 0;
}

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

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info-box {
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info-box h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--text-light);
}

.contact-info-item a:hover {
  color: var(--accent-orange);
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service Areas Page */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.area-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Financing Page */
.financing-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .financing-content {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

.financing-text h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.financing-text h3 {
  color: var(--primary-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.financing-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.financing-benefits {
  list-style: none;
  padding: 0;
}

.financing-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.financing-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.financing-partner {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.financing-logo-box {
  background: #1a1a2e;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.financing-logo {
  max-width: 200px;
  height: auto;
}

.financing-partner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.financing-qr {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.qr-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.qr-code-img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.qr-code-img:hover {
  transform: scale(1.05);
}

.financing-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .financing-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .financing-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.financing-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.financing-step h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.financing-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Financing Promo Section (Homepage) */
.financing-promo {
  background: var(--accent-orange);
  padding: 4rem 0;
  color: white;
}

.financing-promo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .financing-promo-content {
    grid-template-columns: 1fr auto;
  }
}

.financing-promo h2 {
  color: white;
  margin-bottom: 0.5rem;
}

.financing-promo p {
  opacity: 0.9;
  margin-bottom: 0;
}

.financing-promo .btn {
  white-space: nowrap;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 4rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Utility Classes */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive Styles */
@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .header-top-content {
    flex-wrap: nowrap;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .subservices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
  
  .header-cta {
    display: block;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 4rem 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  
  .nav-list > li {
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-list a {
    display: block;
    padding: 1rem 0;
  }
  
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    display: none;
  }
  
  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }
  
  /* Mobile Mega Menu */
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    padding: 0;
    display: none;
    border-radius: 0;
    background: var(--bg-light);
  }
  
  .nav-dropdown.has-mega-menu.active .mega-menu {
    display: block;
  }
  
  .nav-dropdown.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .mega-menu-inner {
    display: block;
    padding: 0.5rem 0;
  }
  
  .mega-menu-column {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mega-menu-column:last-child {
    border-bottom: none;
  }
  
  .mega-menu-column h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  
  .mega-menu-column h4 .column-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  
  .mega-menu-column h4 .column-toggle:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
  }
  
  .mega-menu-column h4 .column-toggle::after {
    content: '+';
  }
  
  .mega-menu-column.expanded h4 .column-toggle::after {
    content: '−';
  }
  
  .mega-menu-column ul {
    display: none;
    padding-left: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .mega-menu-column.expanded ul {
    display: block;
  }
  
  .mega-menu-column ul a {
    padding: 0.5rem 0;
    font-size: 0.8rem;
  }
  
  .mega-menu-cta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
  
  .mega-menu-cta .btn-sm {
    width: 100%;
    text-align: center;
  }
  
  .nav-arrow {
    font-size: 0.65rem;
  }
  
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .menu-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Our Work Gallery */
.our-work {
  padding: 4rem 0;
  background: var(--bg-light);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.work-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(42, 157, 143, 0.95));
  padding: 3rem 1rem 1rem;
  color: var(--text-light);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.work-item:hover .work-item-overlay {
  transform: translateY(0);
}

.work-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.work-item-link {
  font-size: 0.85rem;
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.work-item-link:hover {
  color: #F4A261;
}

/* Mobile caption always visible */
.work-item-caption-mobile {
  display: none;
  padding: 0.75rem;
  background: var(--bg-white);
  text-align: center;
}

.work-item-caption-mobile .work-item-title {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.work-item-caption-mobile .work-item-link {
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .work-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .work-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .work-item {
    aspect-ratio: 16/10;
  }
  
  .work-item-overlay {
    display: none;
  }
  
  .work-item-caption-mobile {
    display: block;
  }
}

/* Chat Widget */
#pm-chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pm-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
}

.pm-chat-toggle:hover {
  transform: scale(1.05);
  background: var(--accent-orange-dark);
}

.pm-chat-toggle svg {
  width: 28px;
  height: 28px;
  color: white;
}

.pm-chat-close-icon {
  display: none;
}

.pm-chat-open .pm-chat-icon {
  display: none;
}

.pm-chat-open .pm-chat-close-icon {
  display: block;
}

.pm-chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.pm-chat-open .pm-chat-panel {
  display: flex;
}

.pm-chat-header {
  background: var(--primary-blue);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pm-chat-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.pm-chat-title {
  font-weight: 600;
  font-size: 1rem;
}

.pm-chat-status {
  font-size: 0.75rem;
  opacity: 0.85;
}

.pm-chat-header-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.8;
}

.pm-chat-header-close:hover {
  opacity: 1;
}

.pm-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 300px;
  min-height: 200px;
}

.pm-chat-message {
  display: flex;
  max-width: 85%;
}

.pm-chat-user {
  align-self: flex-end;
}

.pm-chat-bot {
  align-self: flex-start;
}

.pm-chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.pm-chat-user .pm-chat-bubble {
  background: var(--primary-blue);
  color: white;
  border-bottom-right-radius: 4px;
}

.pm-chat-bot .pm-chat-bubble {
  background: #f1f3f4;
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}

.pm-chat-suggestions {
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid #eee;
}

.pm-chat-suggestion {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 16px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--primary-blue);
  transition: background 0.2s;
}

.pm-chat-suggestion:hover {
  background: #e9ecef;
}

.pm-chat-input-form {
  display: flex;
  padding: 0.75rem;
  border-top: 1px solid #eee;
  gap: 0.5rem;
}

.pm-chat-input {
  flex: 1;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  outline: none;
}

.pm-chat-input:focus {
  border-color: var(--primary-blue);
}

.pm-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.pm-chat-send:hover {
  background: var(--accent-orange-dark);
}

.pm-chat-send svg {
  width: 18px;
  height: 18px;
  color: white;
}

.pm-chat-dots {
  display: flex;
  gap: 4px;
}

.pm-chat-dots span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: pm-bounce 1.4s infinite ease-in-out both;
}

.pm-chat-dots span:nth-child(1) { animation-delay: -0.32s; }
.pm-chat-dots span:nth-child(2) { animation-delay: -0.16s; }
.pm-chat-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes pm-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@media (max-width: 480px) {
  #pm-chat-widget {
    bottom: 1rem;
    right: 1rem;
  }
  
  .pm-chat-toggle {
    width: 54px;
    height: 54px;
  }
  
  .pm-chat-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }
  
  .pm-chat-messages {
    max-height: calc(85vh - 180px);
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .menu-toggle,
  #pm-chat-widget {
    display: none;
  }
  
  .hero {
    background: none;
    color: var(--text-dark);
    padding: 1rem 0;
  }
  
  body {
    font-size: 12pt;
  }
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.blog-card-featured .blog-card-image {
  height: 100%;
  min-height: 300px;
}

.blog-card-featured .blog-card-image img {
  height: 100%;
  object-fit: cover;
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

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

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.blog-card-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--text-dark);
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--primary-blue);
}

.blog-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.blog-read-more {
  font-weight: 600;
  color: var(--primary-blue);
}

.blog-read-more:hover {
  color: var(--accent-orange);
}

/* Blog Post Single */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

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

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

/* Blog post hero section - white text on teal background */
.hero .blog-post-header h1,
.hero-service .blog-post-header h1,
.hero .blog-post h1,
.hero-service .blog-post h1 {
  color: white;
}

.hero .blog-post-meta,
.hero-service .blog-post-meta {
  color: rgba(255, 255, 255, 0.85);
}

.hero .blog-post-meta span,
.hero-service .blog-post-meta span {
  color: rgba(255, 255, 255, 0.85);
}

.hero .blog-post-excerpt,
.hero-service .blog-post-excerpt {
  color: rgba(255, 255, 255, 0.9);
}

.hero .breadcrumb a,
.hero-service .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.hero .breadcrumb a:hover,
.hero-service .breadcrumb a:hover {
  color: white;
}

.hero .breadcrumb span,
.hero-service .breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.blog-post-category {
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-post h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.blog-post-excerpt {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-post-featured-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-post-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-dark);
}

.blog-post-content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--text-dark);
}

.blog-post-content h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-dark);
}

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

.blog-post-content ul,
.blog-post-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary-blue);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-light);
  font-style: italic;
  color: var(--text-muted);
}

.blog-post-content strong {
  color: var(--text-dark);
}

/* Author Bio Box */
.author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin: 3rem 0;
  border-left: 4px solid var(--primary-blue);
}

.author-bio-image {
  flex-shrink: 0;
}

.author-bio-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}

.author-initial {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2A9D8F 0%, #1E7268 100%);
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.author-bio-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.author-bio-content .author-title {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.author-bio-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.author-social-links {
  display: flex;
  gap: 0.75rem;
}

.author-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.author-social-links a:hover {
  background: var(--primary-blue-dark);
}

/* Related Posts */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.related-posts h3 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-post-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.related-post-card:hover {
  box-shadow: var(--shadow-lg);
}

.related-post-card h4 {
  padding: 1rem;
  font-size: 1rem;
}

.related-post-card h4 a {
  color: var(--text-dark);
}

.related-post-card h4 a:hover {
  color: var(--primary-blue);
}

/* Blog Callout Boxes */
.blog-callout {
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-callout-info {
  background: #e8f4f3;
  border-left: 4px solid var(--primary-blue);
}

.blog-callout-warning {
  background: #fef3e8;
  border-left: 4px solid var(--accent-orange);
}

.blog-callout-emergency {
  background: #fee;
  border-left: 4px solid #dc3545;
}

.blog-callout h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.blog-callout p {
  margin-bottom: 0;
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.blog-cta-box h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.blog-cta-box p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.blog-cta-box .btn {
  background: white;
  color: var(--primary-blue);
}

.blog-cta-box .btn:hover {
  background: var(--bg-light);
}

/* Blog Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-card-featured {
    grid-template-columns: 1fr;
  }
  
  .blog-card-featured .blog-card-image {
    min-height: 250px;
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post h1 {
    font-size: 2rem;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-bio-image {
    margin: 0 auto;
  }
  
  .author-social-links {
    justify-content: center;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Articles Section */
.featured-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.featured-article-card h3 a:hover {
  color: var(--primary-blue);
}

@media (max-width: 992px) {
  .featured-articles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .featured-articles-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Blog FAQ Accordion */
.blog-faq {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.blog-faq h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: white;
  overflow: hidden;
}

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

.blog-faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.blog-faq-item summary::-webkit-details-marker {
  display: none;
}

.blog-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary-blue);
  transition: transform 0.2s ease;
}

.blog-faq-item[open] summary::after {
  content: '−';
}

.blog-faq-item summary:hover {
  background: var(--bg-light);
}

.blog-faq-item .faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.blog-faq-item .faq-answer a {
  color: var(--primary-blue);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .instant-quote-grid { grid-template-columns: 1fr !important; }
}
