@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
  --brand-primary: #5D6D41;
  --brand-secondary: #768D4C;
  --brand-accent: #C64E3E;
  --brand-accent-dark: #A33F32;
  --bg-light: #F5F5F5;
  --text-dark: #333333;
  --text-white: #FFFFFF;
  --text-black: #000000;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.2s ease-out;
  --transition-medium: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.bg-white { background-color: var(--text-white); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--brand-primary); }

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-primary);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.3s;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--text-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 2rem;
}

.nav-desktop a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  position: relative;
  padding: 0.25rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--brand-secondary);
  font-size: 1rem;
}

.phone-link:hover {
  color: var(--brand-primary);
}

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-fast);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--brand-secondary);
}

.mobile-call-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.95);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-close svg {
  width: 30px;
  height: 30px;
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav a:hover {
  color: var(--brand-secondary);
}

.mobile-menu-contact {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-white);
}

.mobile-menu-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.mobile-menu-contact a {
  color: var(--brand-secondary);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 78, 62, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-accent);
  border-color: var(--brand-accent);
}

.btn-secondary:hover {
  background: var(--brand-accent);
  color: var(--text-white);
}

.btn-dark {
  background: var(--brand-primary);
  color: var(--text-white);
  border-color: var(--brand-primary);
}

.btn-dark:hover {
  background: #4A5734;
  border-color: #4A5734;
  transform: translateY(-2px);
}

.btn-text {
  color: var(--brand-primary);
  font-weight: 500;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.btn-text:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-text:hover {
  color: var(--brand-secondary);
}

.btn-text-accent {
  color: var(--brand-accent);
}

.btn-text-accent::after {
  background: var(--brand-accent);
}

.btn-text-accent:hover {
  color: var(--brand-accent-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Section Titles */
.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Why Choose Us Section */
.why-choose {
  background: var(--bg-light);
  position: relative;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235D6D41' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.why-choose .container {
  position: relative;
}

.why-choose-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
}

/* Services Grid */
.services-section {
  background: var(--text-white);
}

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

.service-card {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-secondary);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 109, 65, 0.1);
  border-radius: 50%;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--brand-primary);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  background: var(--bg-light);
}

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

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-image {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.process-image img {
  width: 100%;
  height: auto;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--brand-primary);
}

.process-step p {
  font-size: 0.95rem;
  color: #666;
  max-width: 280px;
}

.process-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Trust Section */
.trust-section {
  background: var(--text-white);
  padding: 4rem 0;
}

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

.trust-badge-image {
  max-width: 200px;
  margin: 0 auto 1.5rem;
}

.trust-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.license-number {
  font-size: 1rem;
  color: #666;
}

/* CTA Section */
.cta-section {
  background: var(--brand-primary);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  margin-bottom: 1.5rem;
}

.cta-call {
  color: var(--text-white);
  font-size: 1.125rem;
}

.cta-call a {
  color: var(--brand-secondary);
  font-weight: 600;
}

.cta-call a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--brand-secondary);
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: var(--brand-secondary);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--brand-secondary);
  padding-left: 5px;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-trust {
  margin-top: 1.5rem;
}

.footer-trust p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-secondary);
}

/* About Page Styles */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  padding: 4rem 0;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
}

.page-hero-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.page-hero-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
}

/* About Content */
.about-section {
  background: var(--text-white);
}

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

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: var(--text-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(93, 109, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--brand-primary);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Services Page */
.services-hero {
  min-height: 50vh;
}

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

.service-large-card {
  background: var(--text-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.service-large-card-image {
  height: 220px;
  overflow: hidden;
}

.service-large-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-large-card-content {
  padding: 2rem;
}

.service-large-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-large-card-content p {
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Service Detail Page */
.service-detail-section {
  background: var(--text-white);
}

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

.service-detail-content h2 {
  margin-bottom: 1.25rem;
}

.service-detail-content p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-detail-content ul {
  margin: 1.5rem 0;
}

.service-detail-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #555;
}

.service-detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--brand-secondary);
  border-radius: 50%;
}

.service-detail-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: auto;
}

/* Process Steps Detail */
.process-detail {
  background: var(--bg-light);
}

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

.process-step-item {
  display: flex;
  gap: 1.5rem;
  background: var(--text-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.process-step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  min-width: 40px;
}

.process-step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step-content p {
  color: #666;
  font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
  background: var(--text-white);
}

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

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.contact-form-wrapper h2 {
  margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: var(--text-white);
  transition: border-color 0.2s ease;
}

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

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

.contact-info h2 {
  margin-bottom: 1.5rem;
}

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

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(93, 109, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-primary);
}

.contact-info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  color: #666;
  font-size: 0.95rem;
}

.contact-info-content a {
  color: var(--brand-secondary);
}

.contact-info-content a:hover {
  text-decoration: underline;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: #e5e5e5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  margin-top: 2rem;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Responsive Styles */
@media (min-width: 640px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid.reverse .about-content {
    order: 2;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
  }
  
  .nav-desktop ul {
    display: flex;
    gap: 1.5rem;
  }
  
  .phone-link {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .mobile-call-btn {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2.75rem; }
  
  .hero-content h1 {
    font-size: 4.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile only */
@media (max-width: 767px) {
  .header-actions .btn-primary {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .hero-bg {
    background-attachment: scroll !important;
  }
  
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
