* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-color: #77d33f;
  --blue-color: #2b3990;
  --dark-blue: #1a237e;
  --light-bg: #f8f9fa;
  --topbar-blue: #4ac8ed;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


/* ============================================================
   HEADER — Matches your screenshot design
   ============================================================ */
/* ===== HEADER STYLES ===== */
/* ===== HEADER STYLES ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}











/* Top Bar Green Design */
.top-bar-green {
    background-color: #962D91; /* Bright green background */
    padding: 5px 0;
}

.container-green {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-wrapper-green {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Side */
.top-bar-left-green {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item-green {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
        font-weight: 600;
}

.info-item-green strong {.btn-estimate-green
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: -14px; /* REDUCED space */
}

.info-item-green a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-item-green a:hover {
    opacity: 0.7;
}

/* Separator - Shorter height */
.separator-green {
    color: #1a1a1a;
    opacity: 0.4;
    font-size: 16px;
    align-self: center;
    height: 55px !important;
    display: flex;
    align-items: center;
}

/* Right Side - CTA Button */
.top-bar-right-green {
    display: flex;
    align-items: center;
}

.btn-estimate-green {
    background-color: #65e031; /* Green button */
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 3px;
}

.btn-estimate-green:hover {
    background-color: #54c72a; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Tablet View */
@media (max-width: 992px) {
    .top-bar-wrapper-green {
        justify-content: space-between;
    }
    
  
    .info-item-green:nth-child(5),
   
    .separator-green:nth-child(4) {
        display: none;
    }
    
    .top-bar-left-green {
        gap: 15px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .top-bar-green {
        padding: 15px 0;
        display: none;
    }
    
    .container-green {
        padding: 0 15px;
    }
    
    .top-bar-wrapper-green {
              display: none;

    }
    
    
    .info-item-green:nth-child(5),
    
    .separator-green:nth-child(4) {
        display: none;
    }
    
    .top-bar-left-green {
        flex-direction: row;
        gap: 15px;
    }
    
    .info-item-green {
        font-size: 13px;
    }
    
    .info-item-green strong {
        margin-bottom: 3px;
        font-size: 12px;
    }
    
    .btn-estimate-green {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .top-bar-wrapper-green {
        gap: 10px;
    }
    
    .info-item-green {
        font-size: 14px;
    }
    
    .info-item-green strong {
        font-size: 15px;
    }
    
    .btn-estimate-green {
        padding: 8px 15px;
        font-size: 12px;
    }
}




















/* ===== MAIN NAVIGATION ===== */
.main-navigation {
    background: #fff;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.desktop-nav > li {
    position: relative;
}

.desktop-nav > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.desktop-nav > li > a:hover,
.desktop-nav > li.active > a {
    color: #962D91;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    margin: 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown li a:hover {
    background: #f1f5f9;
    color: #65e031;
    padding-left: 25px;
}

/* Call Us Button */
.call-us-wrapper {
    flex-shrink: 0;
}

.call-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7EBA2F;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(126, 194, 66, 0.3);
}

.call-us-btn:hover {
    background: #1D75BC;
    transform: translateY(-2px);
    
}

.call-arrow {
    transition: transform 0.3s;
    transform: rotate(0deg);
}

.call-us-btn:hover .call-arrow {
    transform: rotate(-15deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #1e293b;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    background: #fff;
    min-height: 60vh;
    max-width: 400px;
    margin-left: auto;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-close {
    background: transparent;
    border: 2px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Mobile Navigation */
.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu > li {
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-menu > li > a {
    display: block;
    padding: 15px 0;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.mobile-nav-menu > li > a:hover,
.mobile-nav-menu > li.active > a {
    color: #64E923;
}

/* Mobile Dropdown */
.mobile-has-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
}

.mobile-dropdown-toggle > span {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1e293b;
}

.mobile-dropdown-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.mobile-dropdown-btn .plus-icon,
.mobile-dropdown-btn .minus-icon {
    position: absolute;
    transition: all 0.3s;
}

.mobile-dropdown-btn .minus-icon {
    display: none;
}

.mobile-has-dropdown.open .mobile-dropdown-btn .plus-icon {
    display: none;
}

.mobile-has-dropdown.open .mobile-dropdown-btn .minus-icon {
    display: block;
}

.mobile-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mobile-dropdown.show {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.mobile-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-dropdown li:last-child a {
    border-bottom: none;
}

.mobile-dropdown li a:hover {
    background: #e0f2fe;
    color: #64E923;
    padding-left: 25px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .top-bar__wrapper {
      
        gap: 0px;
    }
    
    .top-bar__offer,
    .top-bar__center,
    .top-bar__right {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
    
    .top-bar__offer {
        order: 1;
        width: 100%;
    }
    
    .top-bar__center {
        order: 2;
    }
    
    .top-bar__right {
        order: 3;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .call-us-wrapper {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .top-bar__offer span {
        font-size: 13px;
    }
    
    .top-bar__phone {
        font-size: 15px;
    }
    
    .top-bar__location {
        font-size: 13px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .main-navigation {
        padding: 12px 0;
    }
    
    .mobile-menu-container {
        max-width: 47%;
    }
}

@media (max-width: 480px) {
    .top-bar__right {
        display: none;
    }
    
    .logo-image {
        height: 45px;
    }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================================
   FOOTER — Matches your screenshot design
   ============================================================ */

/* ===== FOOTER MAIN ===== */
.site-footer {
    background-color: #9b3d9b;
    color: #ffffff;
    margin-top: 30px;
}

.footer-main {
    padding: 50px 0 30px;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FOOTER GRID ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.8fr 1.5fr 2fr;
    gap: 40px;
    align-items: start;
}

/* ===== FOOTER COLUMN ===== */
.footer-col {
    color: #ffffff;
}

/* ===== FOOTER ABOUT (Column 1) ===== */
.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    max-width: 220px;
    height: auto;
    display: block;
        margin: 10px -40px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    background-color: #64E923;
    color: #000000;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* ===== FOOTER HEADINGS ===== */
.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 10px;
  
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color:#64E923;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #64E923;
    transform: translateX(5px);
}

/* ===== FOOTER CONTACT ===== */
.contact-block {
    margin-bottom: 16px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    opacity: 0.95;
}

.contact-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.contact-value a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #64E923;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid #65E923;
    padding: 20px 0;
    margin-top: 30px;
    
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-credit {
    color: #64E923;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #64E923;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1;
        text-align: center;
    }

    .footer-about .footer-logo img {
        max-width: 200px;
        margin: 0 auto;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }

.footer-heading {
        font-size: 15px;
        margin-bottom: 18px;
          text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-about .footer-logo img {
        max-width: 180px;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 18px;
          text-align: center;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .copyright-text,
    .footer-legal a {
        font-size: 12px;
    }
}

/* Breadcrumb Section */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap-2 {
  min-height: 300px;
  display: flex;
  align-items: center;
  /* padding: 60px 0 40px; */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  width: 100%;
}

.hero-content {
  width: 100%;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
  text-align: center;
}

.breadcrumbs a:hover {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--green-color);
}

.breadcrumbs .separator {
  font-size: 14px;
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs span {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-right: 8px;
}

.page-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}
