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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    max-width: 100%;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo {
    height: 80px;
    width: auto;
}

.nav-brand {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-logo-harold {
    height: 70px;
    width: auto;
    border-radius: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d5016;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a7c2a;
}

.btn-quote {
    background: #4a7c2a;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-quote:hover {
    background: #2d5016;
}

/* Hero Section */
.hero {
    height: 600px;
    background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(45, 80, 22, 0.7)), 
                url('images/gallery/photo1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #4a7c2a;
    color: white;
}

.btn-primary:hover {
    background: #2d5016;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #2d5016;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background: white;
}

.intro-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.intro-logo {
    max-width: 300px;
    height: auto;
}

.intro h2 {
    text-align: center;
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #2d5016;
    margin-bottom: 10px;
}

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

/* Equipment Section */
.equipment {
    padding: 80px 0;
    background: white;
}

.equipment h2 {
    text-align: center;
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.equipment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.equipment-text h3 {
    color: #2d5016;
    margin-bottom: 20px;
}

.equipment-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.equipment-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #4a7c2a;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #4a7c2a;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.social-link {
    display: inline-block;
    color: white;
    transition: color 0.3s;
}

.social-link:hover {
    color: #4a7c2a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    color: #2d5016;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
}

.service-price {
    background: #4a7c2a;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
}

/* Gallery */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h3 {
    color: #2d5016;
    margin-bottom: 10px;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.about-logos img {
    max-width: 300px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-section h2 {
    color: #2d5016;
    margin-bottom: 20px;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.equipment-grid, .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.equipment-card, .why-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.equipment-card h3, .why-item h3 {
    color: #2d5016;
    margin-bottom: 15px;
}

.why-icon {
    font-size: 2.5rem;
    color: #4a7c2a;
    margin-bottom: 15px;
}

.service-area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 20px 0;
    padding-left: 20px;
}

.team-section {
    background: linear-gradient(135deg, #f0f8ed 0%, #e8f5e0 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.team-member h3 {
    color: #2d5016;
    margin-bottom: 10px;
}

.team-phone {
    font-size: 1.3rem;
    margin: 15px 0;
}

.team-phone a {
    color: #4a7c2a;
    text-decoration: none;
    font-weight: 600;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #2d5016;
    margin-bottom: 15px;
}

.contact-link {
    color: #4a7c2a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item ul {
    list-style: none;
    padding-left: 0;
}

.contact-item li {
    margin-bottom: 5px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877f2;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.social-button:hover {
    background: #145dbf;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a7c2a;
}

/* Quote Page */
.quote-section {
    padding: 80px 0;
}

.calculator-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.calculator-intro h2 {
    color: #2d5016;
    margin-bottom: 20px;
}

.calculator-embed {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quote-note {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 20px;
    background: #fff5e6;
    border-left: 4px solid #ff9800;
    border-radius: 5px;
}

.quote-note a {
    color: #4a7c2a;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-logos, .about-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-logo {
        max-width: 250px;
    }
    
    .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-content, .service-detail-item, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item.reverse {
        direction: ltr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* ===== MODERN DESIGN UPDATES ===== */

/* Enhanced Hero with Animation */
.hero {
    position: relative;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content h1 {
    animation: slideDown 0.8s ease-out;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Bigger, More Prominent Buttons */
.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4a7c2a 0%, #2d5016 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a8c3a 0%, #3d6026 100%);
}

.btn-quote {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Testimonials Page Styles */
.testimonials-hero {
    height: 400px;
    background: linear-gradient(rgba(45, 80, 22, 0.75), rgba(45, 80, 22, 0.75)), 
                url('images/gallery/photo1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.testimonials-content {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #4a7c2a;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffa500;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 5px;
}

.testimonial-service {
    font-size: 0.9rem;
    color: #666;
}

/* Enhanced Service Cards with Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 42, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Modern Section Headers */
section h2 {
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4a7c2a, #2d5016);
    border-radius: 2px;
}

/* Transparent Background Sections - Different per page, more visible */
.intro {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
                url('images/gallery/photo9.jpg') center/cover fixed;
}

.services-preview {
    background: linear-gradient(rgba(245,245,245,0.80), rgba(245,245,245,0.80)),
                url('images/gallery/photo5.jpg') center/cover fixed;
}

.equipment {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
                url('images/gallery/photo8.jpg') center/cover fixed;
}

/* Services page backgrounds */
.services-detail {
    background: linear-gradient(rgba(250,250,250,0.82), rgba(250,250,250,0.82)),
                url('images/gallery/photo10.jpg') center/cover fixed;
}

/* Gallery page background */
.gallery-section {
    background: linear-gradient(rgba(245,245,245,0.88), rgba(245,245,245,0.88)),
                url('images/gallery/photo3.jpg') center/cover fixed;
}

/* About page backgrounds */
.about-content {
    background: linear-gradient(rgba(250,250,250,0.85), rgba(250,250,250,0.85)),
                url('images/gallery/photo2.jpg') center/cover fixed;
}

/* Contact page background */
.contact-content {
    background: linear-gradient(rgba(250,250,250,0.87), rgba(250,250,250,0.87)),
                url('images/gallery/photo1.jpg') center/cover fixed;
}

/* Testimonials page background */
.testimonials-content {
    background: linear-gradient(rgba(245,245,245,0.83), rgba(245,245,245,0.83)),
                url('images/gallery/photo6.jpg') center/cover fixed;
}

/* Enhanced CTA Section - more dramatic */
.cta {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.88) 0%, rgba(74, 124, 42, 0.88) 100%),
                url('images/gallery/photo11.jpg') center/cover fixed;
    position: relative;
    overflow: hidden;
}

/* Enhanced CTA Section */
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta > .container {
    position: relative;
    z-index: 1;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Modern Gallery Grid */
.gallery-grid {
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45,80,22,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: relative;
    z-index: 1;
}

/* Enhanced Contact Form */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #4a7c2a;
    box-shadow: 0 0 0 3px rgba(74, 124, 42, 0.1);
}

/* Loading Animation for Images */
.gallery-img,
.service-detail-image img,
.equipment-image img {
    animation: imageLoad 0.5s ease-in;
}

@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 14px 30px;
    }
    
    .btn-large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

/* Enhanced Navbar with Dual Logos */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-brand {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-logo {
  height: 80px !important;
  width: auto;
}

.nav-logo-harold {
  height: 70px;
  width: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 60px !important;
  }
  
  .nav-logo-harold {
    height: 55px;
  }
  
  .nav-brand {
    flex-direction: column;
    gap: 10px;
  }
}

/* Leave a Review Section */
.leave-review-section {
    padding: 80px 0;
    background: white;
}

.review-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-form-container h2 {
    color: #2d5016;
    margin-bottom: 15px;
    text-align: center;
}

.review-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.review-form .form-group {
    margin-bottom: 25px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #4a7c2a;
    box-shadow: 0 0 0 3px rgba(74, 124, 42, 0.1);
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    font-size: 2rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffa500;
}

.review-success {
    text-align: center;
    padding: 40px;
    background: #e8f5e0;
    border-radius: 10px;
    border: 2px solid #4a7c2a;
}

.review-success h3 {
    color: #2d5016;
    margin-bottom: 15px;
}

.review-success p {
    color: #333;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .review-form-container {
        padding: 30px 20px;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Blog Styles */
.page-header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.blog-content {
    padding: 80px 0;
    background: #f9f9f9;
}

.blog-post {
    background: white;
    padding: 50px;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.blog-post-header h2 {
    color: #2d5016;
    margin-bottom: 10px;
    font-size: 2rem;
}

.blog-meta {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.blog-post-content h3 {
    color: #2d5016;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-post-content h4 {
    color: #4a7c2a;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blog-post-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.blog-post-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-post-content strong {
    color: #2d5016;
}

.blog-post-content em {
    background: #f0f7ed;
    padding: 20px;
    display: block;
    border-left: 4px solid #4a7c2a;
    margin-top: 30px;
    font-style: normal;
}

/* Payment Methods Section */
.payment-methods {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.payment-methods h3 {
    color: #2d5016;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
}

.payment-icon svg {
    width: 24px;
    height: 24px;
}

/* Service Area Map */
.service-area-map {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.service-area-map h3 {
    color: #2d5016;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #ddd;
}

.service-area-list {
    margin-top: 20px;
    columns: 2;
    gap: 20px;
}

.service-area-list li {
    margin-bottom: 8px;
    color: #333;
}

/* Google Reviews Widget */
.google-reviews {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.google-reviews h3 {
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.google-reviews iframe {
    width: 100%;
    border: none;
    min-height: 500px;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 30px 20px;
    }
    
    .blog-post-header h2 {
        font-size: 1.5rem;
    }
    
    .service-area-list {
        columns: 1;
    }
    
    .payment-icons {
        flex-direction: column;
        align-items: flex-start;
    }
}
