/* ===== BASE & RESETS ===== */
:root {
    --primary: #2a7a3a;
    --primary-dark: #1e5c2a;
    --secondary: #f5a623;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text: #333333;
    --text-light: #777777;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* ===== TYPOGRAPHY ===== */
  h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  /* ===== UTILITY CLASSES ===== */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-intro {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .section-title {
    position: relative;
    display: inline-block;
  }
  
  .section-divider {
    height: 3px;
    width: 60px;
    background: var(--primary);
    margin: 1rem auto;
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background: var(--primary);
    color: var(--light);
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
  }
  
  .btn-secondary {
    background: var(--secondary);
    color: var(--dark);
  }
  
  .btn-secondary:hover {
    background: #e6951a;
    transform: translateY(-3px);
  }
  
  .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
  }
  
  .btn-outline:hover {
    background: var(--primary);
    color: var(--light);
  }
  
  .btn-light {
    background: var(--light);
    color: var(--primary);
  }
  
  .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
  }
  
  /* ===== NAVIGATION ===== */
  .main-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .main-nav.is-sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
  }
  
  .logo-text {
    color: var(--dark);
  }
  
  .logo-highlight {
    color: var(--primary);
    margin-left: 0.3rem;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-link:not(.cta-nav):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 1rem;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover:after,
  .nav-link.active:after {
    width: calc(100% - 2rem);
  }
  
  .cta-nav {
    background: var(--primary);
    color: var(--light);
    border-radius: 4px;
    margin-left: 1rem;
    padding: 0.5rem 1.5rem;
  }
  
  .cta-nav:hover {
    background: var(--primary-dark);
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
  }
  
  .hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  
  .hamburger-inner {
    width: 100%;
    height: 2px;
    background: var(--dark);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
  }
  
  .hamburger-inner:before,
  .hamburger-inner:after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--dark);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
  }
  
  .hamburger-inner:before {
    top: -8px;
  }
  
  .hamburger-inner:after {
    top: 8px;
  }
  
  .hamburger.is-active .hamburger-inner {
    background: transparent;
  }
  
  .hamburger.is-active .hamburger-inner:before {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.is-active .hamburger-inner:after {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* ===== HERO SECTION ===== */
  .hero-banner {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px; /* Offset for fixed nav */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  /* ===== SERVICES SECTION ===== */
  .services-section {
    background: var(--gray);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .service-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }
  
  .section-link:hover {
    color: var(--primary-dark);
    gap: 1rem;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .about-content {
    padding-right: 2rem;
  }
  
  .features-list {
    list-style: none;
    margin: 2rem 0;
  }
  
  .features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }
  
  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 0.8rem;
  }
  
  .about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
  }
  
  .image-frame {
    height: 100%;
    background: url('../images/about-image.jpg') no-repeat center center/cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .experience-badge {
    /* ... existing styles ... */
    animation: pulse 2s infinite; /* Adds subtle pulsing effect */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
  .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
  }
  
  /* ===== TESTIMONIALS SECTION ===== */
  .testimonials-section {
    background: var(--gray);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .client-info {
    display: flex;
    flex-direction: column;
  }
  
  .client-info strong {
    color: var(--primary);
  }
  
  .client-info span {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  /* ===== CTA SECTION ===== */
  .cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--light);
    text-align: center;
    padding: 5rem 1.5rem;
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  /* ===== FOOTER ===== */
  .main-footer {
    background: var(--dark);
    color: var(--light);
    padding-top: 4rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
  }
  
  .footer-brand {
    max-width: 300px;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo .logo-highlight {
    color: var(--secondary);
  }
  
  .footer-brand p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }
  
  .footer-nav h3,
  .footer-contact h3,
  .footer-hours h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-nav h3:after,
  .footer-contact h3:after,
  .footer-hours h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
  }
  
  .footer-nav ul {
    list-style: none;
  }
  
  .footer-nav li {
    margin-bottom: 0.8rem;
  }
  
  .footer-nav a {
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .footer-nav a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
  }
  
  .footer-contact address p {
    margin-bottom: 0.8rem;
    opacity: 0.8;
  }
  
  .footer-contact a {
    transition: all 0.3s ease;
  }
  
  .footer-contact a:hover {
    color: var(--secondary);
  }
  
  .footer-hours ul {
    list-style: none;
  }
  
  .footer-hours li {
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    max-width: 250px;
  }
  
  .footer-hours span:first-child {
    margin-right: 1rem;
    opacity: 0.8;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }
  
  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 992px) {
    .hamburger {
      display: block;
    }
  
    .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: var(--light);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.5s ease;
      padding: 2rem 0;
    }
  
    .nav-menu.is-active {
      left: 0;
    }
  
    .nav-link {
      padding: 1rem;
      font-size: 1.1rem;
    }
  
    .cta-nav {
      margin: 1rem 0 0;
    }
  
    .about-section {
      grid-template-columns: 1fr;
    }
  
    .about-content {
      padding-right: 0;
      order: 2;
    }
  
    .about-image {
      order: 1;
      min-height: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-cta {
      flex-direction: column;
      align-items: center;
    }
  
    .btn {
      width: 100%;
      max-width: 250px;
    }
  
    .section {
      padding: 3rem 0;
    }
  
    .hero-banner {
      min-height: 500px;
    }
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .fade-in {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }

  /* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-section {
    background: var(--gray);
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-form {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    min-height: 150px;
}

.contact-info {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-list {
    list-style: none;
    margin: 1.5rem 0;
}

.hours-list li {
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.hours-list span:first-child {
    font-weight: 600;
}

.map-section {
    height: 450px;
}

/* ===== TESTIMONIALS PAGE SPECIFIC STYLES ===== */
.testimonials-main {
    background: var(--gray);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card.featured {
    grid-column: span 2;
    background: var(--primary);
    color: white;
}

.testimonial-card.featured .rating {
    color: var(--secondary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.client-meta {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 1rem;
    border: 3px solid var(--primary);
}

.client-info h4 {
    margin-bottom: 0.3rem;
}

.project-type {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.3rem;
}

.testimonial-card.featured .project-type {
    color: var(--secondary);
}

.cta-testimonials {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1.5rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}







