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

:root {
  --primary: #2B7A78;
  --primary-dark: #1a5a58;
  --primary-light: #3aafab;
  --accent: #FCA311;
  --accent-dark: #e09000;
  --teal: #2B7A78;
  --orange: #FCA311;
  --text: #1a1a1a;
  --text-secondary: #666;
  --background: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

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

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

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

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

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.nav-logo:hover { color: var(--primary); }

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  color: var(--text);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(43, 122, 120, 0.08);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
  padding: 80px 20px;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--background);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.commercial { border-top: 4px solid var(--teal); }
.service-card.residential { border-top: 4px solid var(--orange); }

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.commercial .service-icon {
  background: rgba(43, 122, 120, 0.1);
  color: var(--teal);
}

.residential .service-icon {
  background: rgba(252, 163, 17, 0.1);
  color: var(--orange);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.service-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Why Us Section */
.why-us {
  padding: 80px 20px;
  background: var(--background);
  text-align: center;
}

.why-us h2 {
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature {
  padding: 24px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(43, 122, 120, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature h4 {
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Testimonials */
.testimonials {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--background);
  padding: 32px;
  border-radius: 16px;
  text-align: left;
  position: relative;
}

.quote-icon {
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Services Detail */
.services-detail {
  padding: 80px 20px;
  background: var(--background);
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 32px;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-detail-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  text-align: left;
  box-shadow: var(--shadow);
}

.service-detail-card h4 {
  color: var(--primary);
  margin-bottom: 12px;
}

.service-detail-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* About Section */
.about {
  padding: 80px 20px;
  background: var(--white);
}

.about-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 16px;
}

.about-badge {
  display: inline-block;
  background: rgba(252, 163, 17, 0.15);
  color: var(--accent-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto 48px;
}

.about-text h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 64px;
  background: var(--primary);
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
}

.stat-label {
  opacity: 0.85;
}

.trusted-by {
  text-align: center;
  margin-bottom: 48px;
}

.trusted-by h3 {
  margin-bottom: 16px;
}

.trusted-by > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.client-tag {
  background: rgba(43, 122, 120, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--background);
  padding: 28px;
  border-radius: 12px;
  text-align: center;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(43, 122, 120, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Quote Section */
.quote-section {
  padding: 80px 20px;
  background: var(--background);
}

.quote-section h2, .quote-section .section-subtitle {
  text-align: center;
}

.quote-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quote-type-toggle {
  display: flex;
  gap: 12px;
}

.quote-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.quote-type-btn.active {
  border-color: var(--primary);
  background: rgba(43, 122, 120, 0.08);
  color: var(--primary);
}

.quote-type-btn[data-type="residential"].active {
  border-color: var(--orange);
  background: rgba(252, 163, 17, 0.08);
  color: var(--orange);
}

.quote-form .btn {
  width: 100%;
  margin-top: 10px;
}

.success-message {
  text-align: center;
  padding: 40px;
}

.success-message svg {
  color: var(--primary);
  margin-bottom: 20px;
}

.success-message h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.success-message p {
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: var(--white);
}

.contact h2, .contact .section-subtitle {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--background);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--text);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.contact-card.hours {
  cursor: default;
}

.contact-card.hours:hover {
  transform: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(43, 122, 120, 0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-value {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.contact-form-wrapper {
  background: var(--background);
  padding: 32px;
  border-radius: 16px;
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
}

.contact-form .btn {
  width: 100%;
}

/* CTA Section */
.cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta h2 {
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Hero with Background Image */
.hero[style*="background-image"] {
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service Card with Image */
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: -32px -32px 24px -32px;
  width: calc(100% + 64px);
}

.service-card-content {
  padding: 0;
}

/* Page Header */
.page-header {
  padding: 140px 20px 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

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

/* Services Detail Section */
.services-detail-section {
  padding: 80px 20px;
  background: var(--background);
}

.services-hero-image {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.services-section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.services-section-desc {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  background: rgba(43, 122, 120, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.residential-card .service-detail-icon {
  background: rgba(252, 163, 17, 0.1);
  color: var(--orange);
}

.residential-card h4 {
  color: var(--orange);
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  position: relative;
}

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

.process-step h4 {
  margin-bottom: 12px;
}

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

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* About Story Section */
.about-story {
  padding: 80px 20px;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-story-content .about-badge {
  margin-bottom: 16px;
}

.about-story-content h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.about-story-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-story-image {
  text-align: center;
}

.about-main-image {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* About Team Section */
.about-team {
  padding: 80px 20px;
  background: var(--background);
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-team-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.about-team-content h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.about-team-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.team-stats {
  display: flex;
  gap: 32px;
}

.team-stats .stat {
  text-align: center;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.team-stats .stat-number {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.team-stats .stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Values Section */
.values-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

/* Trusted By Section */
.trusted-by-section {
  padding: 80px 20px;
  background: var(--background);
  text-align: center;
}

/* Certifications Section */
.certifications-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.certification-card {
  padding: 32px 24px;
  background: var(--background);
  border-radius: 12px;
}

.certification-icon {
  width: 64px;
  height: 64px;
  background: rgba(43, 122, 120, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.certification-card h4 {
  margin-bottom: 8px;
}

.certification-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Quote Page Grid */
.quote-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.quote-form-container .quote-form {
  max-width: none;
}

.quote-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-info-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.quote-info-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.quote-benefits {
  list-style: none;
}

.quote-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
}

.quote-benefits svg {
  color: var(--primary);
  flex-shrink: 0;
}

.quote-info-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hours-card .hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

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

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: var(--background);
}

.contact-info-section h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info-section > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-section {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-form-section h2 {
  margin-bottom: 24px;
  color: var(--primary);
}

.contact-value.secondary {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}

/* Mobile Styles */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 120px 20px 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .quote-form {
    padding: 24px;
  }
  
  .quote-type-toggle {
    flex-direction: column;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image {
    order: -1;
  }

  .team-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-info {
    order: -1;
  }

  .services-hero-image img {
    height: 250px;
  }
}
