/* =====================================================
   Oak Point Plumbing - Custom Stylesheet
   Brand Colors:
   - Primary Accent Red: #A7243B
   - Secondary Accent Blue: #4A85B8
   - Neutral Background: #F8F8F8
   - Text Dark Grey: #333333
   - Tertiary Accent/Hover Blue: #2A679F
   
   Color Distribution: ~6:3:1 (Background:Accents:Text)
   ===================================================== */

/* =====================================================
   CSS Custom Properties (Variables)
   ===================================================== */
:root {
  --color-primary-red: #A7243B;
  --color-secondary-blue: #4A85B8;
  --color-tertiary-blue: #2A679F;
  --color-background: #F8F8F8;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-footer-bg: #424242;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-out;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

/* =====================================================
   Base Reset & Typography
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

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

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

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

/* =====================================================
   Utility Classes
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background-color: var(--color-white);
}

.text-center { text-align: center; }
.text-red { color: var(--color-primary-red); }
.text-blue { color: var(--color-secondary-blue); }

/* =====================================================
   Buttons - Primary CTA Styling
   Micro-interaction: Hover color change, slight lift
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

/* Primary CTA - Blue background */
.btn--primary {
  background-color: var(--color-secondary-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

/* Micro-interaction: Hover state with darker blue and lift */
.btn--primary:hover {
  background-color: var(--color-tertiary-blue);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Secondary CTA - Outline style */
.btn--secondary {
  background-color: transparent;
  color: var(--color-secondary-blue);
  border: 2px solid var(--color-secondary-blue);
}

.btn--secondary:hover {
  background-color: var(--color-secondary-blue);
  color: var(--color-white);
}

/* Micro-interaction: Subtle pulse animation on load for hero CTA */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.btn--pulse {
  animation: pulse 2s ease-in-out 3;
}

/* =====================================================
   Navigation - Sticky Header
   ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.header__logo img {
  height: 50px;
  width: auto;
}

/* Desktop Navigation */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

/* Micro-interaction: Underline animation on hover (from center out) */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-red);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav__link:hover {
  color: var(--color-primary-red);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:focus {
  outline: 2px solid var(--color-secondary-blue);
  outline-offset: 4px;
}

/* Header CTA */
.header__cta {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle__bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-normal);
}

/* Micro-interaction: Hamburger to X animation */
.mobile-toggle.active .mobile-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .mobile-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: 5rem 2rem 2rem;
  transition: right var(--transition-normal);
  z-index: 999;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav__link:hover {
  color: var(--color-primary-red);
}

.mobile-nav__cta {
  margin-top: 2rem;
}

/* Overlay backdrop */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 998;
}

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

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 2rem;
  color: var(--color-white);
}

.hero__badge {
  display: inline-block;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Micro-interaction: Fade-in and scale-up animation on load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero__subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero__cta {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

/* =====================================================
   Services Section
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
  text-align: center;
}

/* Micro-interaction: Lift and shadow increase on hover */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 133, 184, 0.1);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

/* Micro-interaction: Icon bounce on card hover */
.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__icon svg,
.service-card__icon img {
  width: 32px;
  height: 32px;
  color: var(--color-secondary-blue);
}

.service-card__title {
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.service-card__description {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* =====================================================
   About Section
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__content h2 {
  margin-bottom: 1rem;
}

.about__content p {
  margin-bottom: 1.5rem;
}

/* =====================================================
   Process Section
   ===================================================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

/* Micro-interaction: Staggered fade-in on scroll */
.process-step.visible {
  animation: fadeInUp 0.5s ease-out forwards;
}

.process-step:nth-child(1).visible { animation-delay: 0s; }
.process-step:nth-child(2).visible { animation-delay: 0.1s; }
.process-step:nth-child(3).visible { animation-delay: 0.2s; }
.process-step:nth-child(4).visible { animation-delay: 0.3s; }

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-secondary-blue);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step__title {
  margin-bottom: 0.5rem;
}

.process-step__description {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial {
  flex: 0 0 100%;
  padding: 2rem;
  text-align: center;
}

.testimonial__quote {
  position: relative;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Micro-interaction: Decorative quotation marks with handcrafted feel */
.testimonial__quote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--color-secondary-blue);
  opacity: 0.2;
  line-height: 1;
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial__date {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary-blue);
  background-color: transparent;
  color: var(--color-secondary-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

/* Micro-interaction: Slider button hover */
.slider-btn:hover {
  background-color: var(--color-secondary-blue);
  color: var(--color-white);
}

.slider-btn:focus {
  outline: 2px solid var(--color-tertiary-blue);
  outline-offset: 2px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-text-light);
  opacity: 0.3;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  opacity: 1;
  background-color: var(--color-secondary-blue);
}

/* =====================================================
   Contact Form
   ===================================================== */
.contact-section {
  background-color: var(--color-white);
}

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

.contact-form {
  background-color: var(--color-background);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 2px solid #ddd;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

/* Micro-interaction: Input focus glow */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary-blue);
  box-shadow: 0 0 0 3px rgba(74, 133, 184, 0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.contact-info {
  padding: 2rem;
}

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

.contact-info__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(74, 133, 184, 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(--color-secondary-blue);
}

.contact-info__content h4 {
  margin-bottom: 0.25rem;
}

.contact-info__content p {
  margin: 0;
  color: var(--color-text-light);
}

.contact-info__content a {
  color: var(--color-secondary-blue);
  font-weight: 500;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer__about {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

/* Micro-interaction: Social icon hover scale */
.social-icon:hover {
  background-color: var(--color-secondary-blue);
  transform: scale(1.1);
}

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

.footer__license {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   Section Headers
   ===================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-header__subtitle {
  display: inline-block;
  color: var(--color-primary-red);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-header__title {
  margin-bottom: 1rem;
}

.section-header__description {
  color: var(--color-text-light);
  font-size: 1.0625rem;
}

/* Micro-detail: Separator line with hand-drawn quality */
.section-separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-red), var(--color-secondary-blue));
  margin: 1rem auto;
  border-radius: 2px;
}

/* =====================================================
   Featured/Highlight Box
   ===================================================== */
.highlight-box {
  background: linear-gradient(135deg, var(--color-secondary-blue), var(--color-tertiary-blue));
  color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

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

.highlight-box .btn--primary:hover {
  background-color: var(--color-background);
}

/* =====================================================
   Service Areas Map Section
   ===================================================== */
.map-section {
  background-color: var(--color-white);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.map-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-content {
  padding: 1rem;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-area-tag {
  background-color: rgba(74, 133, 184, 0.1);
  color: var(--color-secondary-blue);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* =====================================================
   Accessibility
   ===================================================== */
/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  padding: 1rem;
  z-index: 9999;
  text-decoration: none;
}

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

/* Focus visible styles */
*:focus-visible {
  outline: 2px solid var(--color-secondary-blue);
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   Reduced Motion Preference
   Micro-interaction fallback for accessibility
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero__title,
  .hero__subtitle,
  .hero__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .process-step {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   Responsive Breakpoints - Mobile First
   ===================================================== */

/* Tablet (768px and up) */
@media screen and (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  /* Navigation */
  .nav {
    display: block;
  }
  
  .header__cta {
    display: inline-flex;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .mobile-nav,
  .overlay {
    display: none;
  }
  
  /* Hero */
  .hero {
    min-height: 80vh;
  }
  
  .hero__content {
    padding: 3rem;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Process Steps */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Footer Grid */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  /* Map Container */
  .map-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Process Steps */
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Hero */
  .hero__content {
    max-width: 650px;
    padding: 4rem;
  }
}

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
  .header,
  .footer,
  .btn,
  .mobile-toggle,
  .slider-nav {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .hero {
    min-height: auto;
    background: none !important;
  }
  
  .hero::before {
    display: none;
  }
  
  .hero__content {
    color: #000;
  }
}
