/*==============================
  BASE STYLES
==============================*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    box-sizing: border-box !important;
}

body > * {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/*==============================
  HEADER STYLES
==============================*/
header {
  background-color: #fffdf5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #002c1b;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a:not(.nav-cta) {
  text-decoration: none;
  color: #002c1b;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  transition: color 0.3s;
}

.main-nav a:not(.nav-cta):hover {
  color: #007f5f;
}

.nav-cta {
    background: #116B21;
    border: 2px solid #116B21;
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-cta:hover {
    background: #0C4D17;
    border-color: #0C4D17;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(17, 107, 33, 0.3);
}

/*==============================
  MOBILE NAVIGATION STYLES
==============================*/
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-toggle:hover {
    background-color: rgba(0, 44, 27, 0.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #002c1b;
    margin-bottom: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    border-radius: 2px;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/*==============================
  SERVICE PAGE STYLES
==============================*/
.service-hero {
    background: linear-gradient(135deg, #f8f6e8 0%, #e8f5e8 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    color: #002c1b;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
}

.service-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.price-tag {
    background: #116B21;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.cta-button {
    background: #116B21;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-button:hover {
    background: #0C4D17;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 107, 33, 0.3);
}

/*==============================
  FEATURES SECTION STYLES
==============================*/
.features-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #116B21;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
}

.feature-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.feature-content h3 {
    color: #002c1b;
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/*==============================
  WHY CHOOSE SECTION STYLES
==============================*/
.why-choose-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

.why-choose-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    color: #002c1b;
    margin-bottom: 30px;
    font-weight: 700;
}

.why-choose-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/*==============================
  TESTIMONIALS SECTION STYLES
==============================*/
.testimonials-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #002c1b;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #116B21;
}

.testimonial-quote {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #116B21;
}

/*==============================
  FINAL CTA SECTION STYLES
==============================*/
.final-cta-section {
    background: linear-gradient(135deg, #116B21 0%, #0C4D17 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button-white {
    background: white;
    color: #116B21;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/*==============================
  FOOTER STYLES (IMPROVED)
==============================*/
.footer-redesigned {
    background: linear-gradient(135deg, #f8f6e8 0%, #f0f0e8 100%);
    color: #333;
    padding: 60px 0 20px;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-section {
    width: 100%;
}

.footer-section h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 0;
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.company-logo img {
    height: 35px;
    width: auto;
    margin-right: 10px;
}

.company-logo h3 {
    margin: 0;
    color: #116B21;
    font-size: 1.2rem;
}

.company-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-book-now {
    background: #2c5530;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-book-now:hover {
    background: #1e3a22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.hours-list {
    margin-bottom: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.9rem;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.hour-item span:last-child {
    color: #666;
}

.contact-header {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.contact-details {
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #2c3e50;
}

.contact-item a {
    color: #116B21;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0C4D17;
    text-decoration: underline;
}

.contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    opacity: 0.8;
}

.follow-us p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #116B21;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #0C4D17;
    transform: translateY(-2px);
}

.reviews-section {
    background: rgba(17, 107, 33, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(17, 107, 33, 0.1);
    width: 100%;
}

.reviews-section p {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 0.9rem;
}

.review-btn {
    background: #116B21;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.review-btn:hover {
    background: #0C4D17;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 107, 33, 0.3);
}

.review-btn i {
    color: #ffd700;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom a {
    color: #116B21;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/*==============================
  MOBILE RESPONSIVE STYLES
==============================*/
@media (max-width: 950px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .company-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Keep the review box full width on mobile */
    .reviews-section {
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 430px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-redesigned {
        padding: 40px 0 20px;
    }
    
    /* Ensure review box takes full width on small screens */
    .reviews-section {
        width: 100%;
        max-width: none;
        padding: 15px 10px;
    }
    
    .review-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/*==============================
  BACK TO TOP BUTTON STYLES
==============================*/
#back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  background-color: #16a34a;
  color: white;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
  transition: all 0.3s ease;
  font-size: 18px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
}

#back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#back-top:hover {
  background-color: #15803d;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

/*==============================
  MOBILE RESPONSIVE STYLES
==============================*/
@media (max-width: 950px) {
    .header-container {
        padding: 10px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 253, 245, 0.98);
        backdrop-filter: blur(15px);
        z-index: 400;
        
        transform: translateX(100%);
        transition: transform 0.3s ease;
        
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
        padding: 2rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .main-nav.nav-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .main-nav a {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        padding: 1rem 2rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        min-width: 200px !important;
        display: block !important;
        color: #002c1b !important;
        text-decoration: none !important;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-hero p {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .why-choose-section h2,
    .testimonials-section h2,
    .final-cta-section h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .company-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }

    .service-hero {
        padding: 60px 15px 40px;
    }

    .features-section,
    .testimonials-section {
        padding: 60px 15px;
    }

    .why-choose-section,
    .final-cta-section {
        padding: 60px 15px;
    }
}