/* ==========================================================================
   Eco Ray Consulting - Core Design System & Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --primary-green: #0B3C2C;
  --primary-green-light: #18503C;
  --primary-green-pale: #F0F7F4;
  --secondary-gold: #F2A900;
  --secondary-gold-hover: #D79600;
  --text-dark: #1E293B;
  --text-medium: #475569;
  --text-light: #64748B;
  --bg-white: #FFFFFF;
  --bg-cream: #F8FAFC;
  --border-light: #E2E8F0;
  --border-focus: #F2A900;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 12px rgba(11,60,44,0.06);
  --shadow-lg: 0 10px 25px -5px rgba(11,60,44,0.1);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --container-width: 1200px;
}

/* Base Styles & Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Accessibility */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--secondary-gold);
  color: var(--primary-green);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-to-content:focus {
  top: 20px;
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-green);
}
h1 { font-size: 2.5rem; margin-bottom: 1.25rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; position: relative; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--secondary-gold);
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.section {
  padding: 80px 0;
}
.section-light {
  background-color: var(--bg-white);
}
.section-pale {
  background-color: var(--primary-green-pale);
}

.text-center { text-align: center; }
.max-width-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-width-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* Grid / Flex Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 30px;
  transition: all var(--transition-fast);
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary {
  background-color: var(--secondary-gold);
  color: var(--primary-green);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--secondary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242,169,0,0.3);
  outline: none;
}
.btn-outline {
  background-color: transparent;
  border-color: var(--primary-green);
  color: var(--primary-green);
}
.btn-outline:hover, .btn-outline:focus {
  background-color: var(--primary-green);
  color: var(--bg-white);
  transform: translateY(-2px);
  outline: none;
}
.btn-secondary {
  background-color: var(--primary-green);
  color: var(--bg-white);
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--primary-green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(11,60,44,0.2);
  outline: none;
}
.btn-header {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Top Bar Styling */
.top-bar {
  background-color: var(--primary-green);
  color: var(--primary-green-pale);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(240,247,244,0.1);
}
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar-left .tagline {
  font-weight: 500;
}
.top-bar-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-right a {
  color: var(--primary-green-pale);
}
.top-bar-right a:hover {
  color: var(--secondary-gold);
}
.top-info .icon {
  color: var(--secondary-gold);
  margin-right: 4px;
}

/* Sticky Header Styling */
.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo brand styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 4px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-gold);
  transition: width var(--transition-fast);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--primary-green);
  font-weight: 600;
}

/* Dropdown Services Menu */
.nav-item.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-toggle .arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-md);
  list-style: none;
  min-width: 250px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
}
.dropdown-menu li {
  margin-bottom: 4px;
}
.dropdown-menu li:last-child {
  margin-bottom: 0;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--text-dark);
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
}
.dropdown-menu a:hover {
  background-color: var(--primary-green-pale);
  color: var(--primary-green);
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item.dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-green);
  position: relative;
  transition: background-color var(--transition-fast);
}
.hamburger::before, .hamburger::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--primary-green);
  position: absolute;
  left: 0;
  transition: transform var(--transition-fast);
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Mobile navigation active states */
.menu-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section Styles */
.hero {
  padding: 100px 0 120px 0;
  background: linear-gradient(135deg, #F0F7F4 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.hero-content {
  flex: 1;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-image svg, .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}
.trust-line {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  color: var(--text-medium);
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Cards System */
.card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242,169,0,0.4);
}
.card-icon {
  background-color: var(--primary-green-pale);
  color: var(--primary-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card-title {
  margin-bottom: 12px;
}
.card-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  flex-grow: 1;
}
.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.card-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}
.card:hover .card-link::after {
  transform: translateX(4px);
}

/* Process / How It Works */
.process-grid {
  margin-top: 50px;
}
.process-step {
  position: relative;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-green-pale);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 1;
}
.process-step-content {
  position: relative;
  z-index: 2;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid var(--border-light);
  height: 100%;
}

/* Split Columns (Residential vs Commercial) */
.split-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}
.split-col {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-col-left {
  background-color: var(--primary-green-pale);
}
.split-col-right {
  background-color: var(--primary-green);
  color: var(--bg-white);
}
.split-col-right h2, .split-col-right p {
  color: var(--bg-white);
}
.split-list {
  list-style: none;
  margin-bottom: 30px;
}
.split-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.split-list li::before {
  content: '✓';
  color: var(--secondary-gold);
  font-weight: 700;
}

/* General Lists */
.check-list {
  list-style: none;
  margin-bottom: 25px;
}
.check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.check-list li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
}

/* Call To Action (CTA) Section */
.cta-section {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
}
.cta-section h2 {
  color: var(--bg-white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--primary-green-pale);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Accordion FAQs */
.faq-accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--primary-green);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-green);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.faq-toggle-icon {
  font-size: 0.85rem;
  transition: transform var(--transition-normal);
  color: var(--secondary-gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 25px;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 500px; /* high value that expands fully */
  transition: max-height var(--transition-normal) ease-in, padding var(--transition-normal) ease-in;
}

/* Form Styles */
.form-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--primary-green);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background-color: var(--bg-cream);
}
.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(11,60,44,0.1);
  outline: none;
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Custom Select, Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}
.checkbox-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* Form success and error handling */
.form-alert {
  padding: 15px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-alert-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
  display: block;
}
.form-alert-error {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
  display: block;
}

/* Footer Section Styling */
.site-footer {
  background-color: var(--primary-green);
  color: var(--primary-green-pale);
  padding: 70px 0 0 0;
  border-top: 3px solid var(--secondary-gold);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 2fr;
  gap: 40px;
}
.footer-col-about .footer-desc {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(240,247,244,0.7);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.white-text {
  color: var(--bg-white) !important;
}
.footer-heading {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 8px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-gold);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(240,247,244,0.75);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--secondary-gold);
  padding-left: 4px;
}
.footer-address {
  font-style: normal;
  font-size: 0.9rem;
}
.footer-address .address-line {
  margin-bottom: 8px;
  color: rgba(240,247,244,0.8);
}
.footer-address .email-line {
  margin-top: 15px;
}
.footer-address a {
  color: var(--secondary-gold);
}
.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(240,247,244,0.1);
  text-align: center;
}
.footer-bottom .copyright {
  font-size: 0.9rem;
  color: var(--bg-white);
  margin-bottom: 10px;
}
.footer-bottom .footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(240,247,244,0.55);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
  border-top: 3px solid var(--primary-green);
  z-index: 9999;
  padding: 20px 0;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  bottom: 0;
}
.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cookie-text-container {
  flex-grow: 1;
}
.cookie-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-green);
  margin-bottom: 4px;
}
.cookie-desc {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0;
}
.cookie-btn-group {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-cookie-reject {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Internal Banner / Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 3px solid var(--secondary-gold);
}
.page-header h1 {
  color: var(--bg-white);
  margin-bottom: 10px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(240,247,244,0.7);
}
.breadcrumbs a {
  color: var(--secondary-gold);
}
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  font-size: 1rem;
  color: rgba(240,247,244,0.5);
}

/* Blog / Resources Styling */
.blog-grid {
  margin-top: 40px;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-green);
}

/* City List on Service Areas page */
.city-grid {
  margin-top: 30px;
}
.city-card {
  padding: 25px;
  text-align: center;
}
.city-card h3 {
  color: var(--primary-green);
  margin-bottom: 8px;
}

/* Glossary styling */
.glossary-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.glossary-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 25px;
  border: 1px solid var(--border-light);
}
.glossary-term {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-bottom: 8px;
}

/* Visual Illustration Elements for fallback (Solar Panel/Meeting Drawings) */
.visual-illustration {
  background-color: var(--primary-green-pale);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(11,60,44,0.2);
  min-height: 300px;
}
.visual-illustration svg {
  margin-bottom: 20px;
}
.illustration-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-green);
  font-size: 1.1rem;
}

/* Simple animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-up {
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col-about {
    grid-column: span 2;
  }
  .footer-col-contact {
    grid-column: span 2;
  }
  .hero-title { font-size: 2.75rem; }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-col {
    padding: 40px 20px;
  }
  
  /* Mobile Menu navigation overrides */
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-white);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-normal);
    overflow-y: auto;
    border-top: 1px solid var(--border-light);
  }
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-link::after {
    display: none;
  }
  .btn-header {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    font-size: 1rem;
  }
  
  /* Dropdown Services Menu on Mobile */
  .nav-item.dropdown:hover .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    margin-top: 5px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--primary-green-pale);
    margin-top: 5px;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }
  .cookie-btn-group {
    flex-direction: column;
  }
}
