:root {
  /* Colors based on the provided images */
  --primary-dark: #1b4d24;
  --primary-light: #4caf50;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Typography */
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Layout */
  --container-padding: 1.5rem;
  --container-max: 1200px;
  --border-radius: 8px;
  --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
  /* Make room for mobile sticky bar */
  padding-bottom: 60px;
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography styles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 800;
}
.section-title span {
  color: var(--primary-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.875rem;
}

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

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

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

/* Header */
.site-header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.logo {
  flex: 0 0 auto;
  max-width: 300px;
}

.logo img {
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.main-nav {
  display: none; 
}

.d-none-mobile {
  display: none !important;
}

.btn-header {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 2.5rem;
  padding: 0.25rem 0.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background-color: var(--bg-white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: var(--primary-light);
  display: block;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-whatsapp {
  background-color: #25D366; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (min-width: 992px) {
  .hero-img {
    aspect-ratio: 1 / 1;
  }
}

.badge-24h {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--bg-white);
  border: 4px solid var(--primary-dark);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: rotate(10deg);
}

.badge-24h .hours {
  font-size: 1.75rem;
  line-height: 1;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.feature-item svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

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

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

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

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

.center-action {
  text-align: center;
  margin-top: 2rem;
}

/* Why Us Section */
.why-us {
  padding: 4rem 0;
  background-color: var(--bg-white);
}

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

.why-card {
  text-align: center;
}

.why-card .icon {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.why-card h4 {
  margin-bottom: 0.5rem;
}

/* Recent Work */
.recent-work {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

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

.work-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.ba-container {
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 2;
}

.ba-image {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ba-image:first-child {
  border-right: 2px solid white;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-dark);
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.work-images {
  display: flex;
  position: relative;
}

.work-images > div {
  width: 50%;
  position: relative;
}

.work-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  font-weight: bold;
}

.work-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.work-info {
  padding: 1.5rem;
  text-align: center;
}

/* Form Styles */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Footer */
.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 90px;
  margin-bottom: 1rem;
}

.footer-widget h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    display: flex;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-dark);
}

.sticky-btn span {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sticky-wa {
    background-color: #25D366;
    color: white;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up {
    transform: translateY(30px);
}

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

/* Utility to add delays easily based on inline var */
.fade-in[style*="--delay"] {
    transition-delay: calc(var(--delay) * 0.1s);
}

/* Media Queries */
@media (min-width: 768px) {
  html {
    scroll-padding-top: 140px;
  }
  
  .logo img {
    max-height: 100px;
  }
  
  .mobile-sticky-bar {
      display: none;
  }
  
  .d-none-mobile {
      display: inline-flex !important;
  }

  .main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .main-nav a {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: color var(--transition);
  }
  
  .main-nav a:hover {
    color: var(--primary-light);
  }

  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-image-wrapper {
    flex: 1;
  }
  
  .hero-ctas {
    flex-direction: row;
  }
  
  .hero-features {
    flex-direction: row;
    justify-content: space-between;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
      grid-template-columns: 1fr 1fr !important;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
