@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --color-primary: #125642;
  /* Dark Green from Card */
  --color-primary-dark: #0c4030;
  --color-secondary: #f26522;
  /* Orange from Card */
  --color-secondary-dark: #d9561a;
  --color-bg: #ffffff;
  --color-bg-alt: #f0f0f0;
  /* More solid gray */
  --color-text: #222222;
  --color-text-light: #555555;
  --color-white: #ffffff;

  --font-main: 'Open Sans', 'Arial', sans-serif;
  --font-heading: 'Anton', 'Arial Black', sans-serif;

  --transition: all 0.3s ease;
  /* Softened shadows instead of harsh solid blocks */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-text: 1px 1px 3px rgba(0, 0, 0, 0.5);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: normal;
  /* Anton is naturally heavy */
  color: var(--color-text);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
  border-top: 5px solid var(--color-primary);
  border-bottom: 5px solid var(--color-secondary);
}

.text-center {
  text-align: center;
}

.heavy-shadow {
  text-shadow: var(--shadow-text);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  /* Reduced from 4px */
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  /* Softer shadow */
}

.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  /* Thinner border */
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* Typography styles */
.subtitle {
  color: var(--color-secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  position: relative;
  color: var(--color-primary);
  text-shadow: 2px 2px 0px white, 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 8px;
  background-color: var(--color-secondary);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Scroll Animations */
.fade-in,
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.appear,
.scroll-reveal.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Top Bar */
.top-bar {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.2rem 0;
  /* Thinner top bar */
  font-weight: 700;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-contact {
  display: flex;
  gap: 2rem;
}

.top-bar-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-contact a {
  color: var(--color-white);
}

.top-bar-contact a:hover {
  text-decoration: underline;
}

.hablamos-espanol {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  background-color: var(--color-white);
  color: var(--color-secondary);
  padding: 0.2rem 1rem;
  border-radius: var(--radius-sm);
  /* Softer rounded edges */
  transform: skew(-5deg);
  /* Less extreme skew */
  display: inline-block;
  box-shadow: var(--shadow-sm);
  /* Softer shadow */
}

.hablamos-espanol span {
  display: inline-block;
  transform: skew(10deg);
  /* Counter skew for text */
}

/* Navbar */
.navbar {
  background-color: var(--color-primary);
  padding: 1rem 0;
  border-bottom: 5px solid var(--color-secondary);
  z-index: 1000;
  position: sticky;
  top: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.logo-main span {
  color: var(--color-secondary);
}

.logo-sub {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-sub span {
  color: var(--color-secondary);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  font-weight: 600;
  /* Lighter weight */
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-secondary);
  text-shadow: 1px 1px 0px #000;
}

.nav-links .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Mobile Nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 30px;
  height: 4px;
  background-color: var(--color-white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: inherit;
  left: 0;
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hero Section */
.hero {
  height: calc(100vh - 120px);
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-text);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/gallery/20230529_114059.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 86, 66, 0.6);
  /* Green tint over image */
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/palm_trees.svg');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 3;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .subtitle {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 0;
  text-shadow: var(--shadow-text);
}

.hero-title {
  color: var(--color-white);
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-title-secondary {
  color: var(--color-secondary);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 2rem;
  text-shadow: var(--shadow-text);
  font-family: var(--font-heading);
}

.hero-text {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  background-color: var(--color-primary);
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 2px solid var(--color-secondary);
  /* Thinner border */
  border-radius: var(--radius-sm);
  /* Rounded corners */
  box-shadow: var(--shadow-sm);
  /* Softer shadow */
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Features Strip (Updated to Info Strip) */
.features-strip {
  background-color: var(--color-white);
  padding: 0 0 4rem 0;
  position: relative;
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  /* Changed from -3rem overlap to 3rem padding */
}

.feature-item {
  background-color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  /* Thinner border */
  border-radius: var(--radius-md);
  /* Rounded corners */
  padding: 2.5rem;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  /* Softer shadow */
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  /* Make icons circular again */
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.feature-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 0px #000;
  color: var(--color-white);
}

.feature-item p {
  font-weight: 600;
  color: var(--color-white);
}

/* Services Carousel Section */
.services-carousel-section {
  background-color: var(--color-bg);
  /* Use default light theme */
  padding: 6rem 0;
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.carousel-title-area .section-title {
  color: var(--color-text);
  /* Standard dark text */
  margin-bottom: 0;
}

.carousel-nav {
  display: flex;
  gap: 1rem;
}

.carousel-btn {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-sm);
  /* Softer square */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  /* Softer shadow */
}

.carousel-btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-viewport {
  width: 100%;
  overflow: visible;
  /* Allow slight overflow if needed for shadows */
  padding-bottom: 2rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  /* Smaller gap to allow larger cards */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 -0.5rem;
  /* Offset gap to allow full width */
  padding: 0 0.5rem;
}

.carousel-card {
  flex: 0 0 calc(25% - 1rem);
  /* 4 cards, larger flex basis due to smaller gap */
  background-color: var(--color-bg);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(1.02);
  /* Slight scale up to make them physically larger */
  transition: transform 0.3s ease;
}

.carousel-card:hover {
  transform: scale(1.05);
  /* Enhance the scale on hover */
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.card-img-container {
  position: relative;
  height: 240px;
  /* Taller image area to make card larger */
  border-bottom: 2px solid var(--color-primary);
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-icon {
  position: absolute;
  bottom: -32px;
  right: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  /* Make circular again */
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card-content {
  padding: 2.5rem 1.5rem 1.5rem;
  flex: 1;
}

.card-content h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  /* Use Anton for headers in cards */
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.card-content p {
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 500;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.about-img-main {
  border: 6px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
  border-top: 2px solid var(--color-secondary);
  background-image: repeating-linear-gradient(45deg,
      var(--color-primary-dark),
      var(--color-primary-dark) 10px,
      var(--color-primary) 10px,
      var(--color-primary) 20px);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 3rem;
  text-shadow: var(--shadow-text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  padding: 1.2rem 3rem;
}

/* Footer */
.footer {
  background-color: #111111;
  color: var(--color-white);
  padding: 4rem 0 2rem;
  border-top: 5px solid var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about .logo-main {
  margin-bottom: 1rem;
}

.footer-about p {
  color: #aaaaaa;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-contact-item svg {
  fill: var(--color-secondary);
}

.footer-widget h4 {
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-links a {
  color: #aaaaaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #777;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--color-bg);
  /* Use light background */
  color: var(--color-text);
  /* Dark text */
  padding: 5rem 0;
  border-top: 2px solid var(--color-primary);
  text-align: center;
  /* Center content for the button */
}

.testimonials-section .section-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #000000;
  /* Explicitly black as requested */
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h5 {
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.stars {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Service Area Section */
.service-area-section {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-area-content h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-area-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.service-area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-area-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.service-area-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.service-area-map {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-secondary);
}

@media (max-width: 768px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-detail-item {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-detail-item a {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.2rem;
}

.contact-form-container {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-secondary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.contact-form .btn {
  width: 100%;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  /* 2 cards on tablet */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hide close button on desktop */
.mobile-close-item {
  display: none;
}

@media (max-width: 768px) {

  /* Thinner top bar on mobile */
  .top-bar {
    padding: 0.1rem 0;
    font-size: 0.75rem;
  }

  .top-bar-contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    width: 100%;
  }

  .top-bar-content {
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
  }

  /* Restore Fixed Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--color-primary);
    border-left: 5px solid var(--color-secondary);
    flex-direction: column;
    padding: 3rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .mobile-menu-btn.active .hamburger {
    background-color: transparent;
  }

  .mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Close button inside mobile nav */
  .mobile-close-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    display: block;
    width: 100%;
    text-align: right;
    padding: 0;
    margin-bottom: 0.5rem;
  }

  .mobile-close-item {
    display: block;
    width: 100%;
    list-style: none;
  }

  /* Downscale Hero Headings */
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-title-secondary {
    font-size: 1.5rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  /* Fix Info Strip Overflow */
  .features-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .features-strip {
    padding-top: 1rem;
  }

  /* Fix About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Fix Testimonials Section */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Fix Gallery Grid */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Fix Service Map Grid & Contact Grid */
  .service-area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Mobile: services carousel shows as vertical stack */
  .carousel-viewport {
    overflow: visible;
  }

  .carousel-track {
    flex-direction: column;
    transform: none !important;
    gap: 1.5rem;
  }

  .carousel-card {
    flex: 0 0 auto;
    width: 100%;
    transform: none !important;
  }

  .carousel-nav {
    display: none;
    /* Hide prev/next arrows on mobile */
  }

  /* Footer Alignment Fixes */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }
}