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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    padding-top: 100px;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    position: fixed; /* Fixed on desktop and tablets */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* On small screens (mobile), make header static to save screen space */
@media screen and (max-width: 768px) {
    .header {
        position: relative !important; /* Change from fixed to relative on small screens */
    }
}

.header-wrapper {
    padding: 8px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
}

/* Ensure hamburger button container doesn't hide it */
.header-top button.mobile-menu-toggle,
.header-top #mobileToggle {
    position: relative;
    z-index: 1002;
}

/* CRITICAL: Force visibility in header-top context for Safari/Firefox */
/* Using maximum specificity to override any conflicting rules */
@media screen and (max-width: 1024px) {
    header.header .header-top > button.mobile-menu-toggle,
    header.header .header-top > #mobileToggle,
    header.header .header-top button.mobile-menu-toggle,
    header.header .header-top #mobileToggle,
    .header-top > button.mobile-menu-toggle,
    .header-top > #mobileToggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    body header .header-top button.mobile-menu-toggle,
    body header .header-top #mobileToggle {
        display: -webkit-flex !important; /* Safari prefix */
        display: -ms-flexbox !important; /* IE prefix */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

@media screen and (max-width: 768px) {
    header.header .header-top > button.mobile-menu-toggle,
    header.header .header-top > #mobileToggle,
    header.header .header-top button.mobile-menu-toggle,
    header.header .header-top #mobileToggle,
    .header-top > button.mobile-menu-toggle,
    .header-top > #mobileToggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    body header .header-top button.mobile-menu-toggle,
    body header .header-top #mobileToggle {
        display: -webkit-flex !important; /* Safari prefix */
        display: -ms-flexbox !important; /* IE prefix */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

@media screen and (max-width: 480px) {
    header.header .header-top > button.mobile-menu-toggle,
    header.header .header-top > #mobileToggle,
    header.header .header-top button.mobile-menu-toggle,
    header.header .header-top #mobileToggle,
    .header-top > button.mobile-menu-toggle,
    .header-top > #mobileToggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    body header .header-top button.mobile-menu-toggle,
    body header .header-top #mobileToggle {
        display: -webkit-flex !important; /* Safari prefix */
        display: -ms-flexbox !important; /* IE prefix */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

.logo-img {
    max-width: 280px;
    height: auto;
    margin-top: 15px;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.contact-item {
    padding: 4px 8px;
    
    
}

.contact-item a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #72B026;
}

.contact-item i {
    color: #72B026;
    width: 16px;
}

/* Navigation Styles */
.main-navigation {
    text-align: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    position: relative;
}

/* Desktop: Position search field above menu - RIGHT ALIGNED (removed duplicate, see media query below) */

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    transition: font-weight: 0.3s ease;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #72B026;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Prevent desktop hover from affecting mobile - mobile uses .active class instead */
.mobile-nav .dropdown:hover .dropdown-menu {
    /* Don't show on hover in mobile - only show when .active class is present */
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #72B026;
    padding-left: 25px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #72B026 0%, #2db700 100%);
    color: white;
    padding: 15px 0 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="50" cy="50%" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

,display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 20px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #f8f9fa;
    color: #72B026;
    border-color: #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #f8f9fa;
    color: #72B026;
    transform: translateY(-2px);
}

/* Top Services Section */
.top-services {
    
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-header h2 {
    font-weight: 600;
    color: #333;
}

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

/* Responsive grid for all services-grid, pricing boxes, Additional Services, and Volume Discounts */
/* Base responsive grid - overrides inline styles */
.services-grid,
section#pricing .services-grid,
section.pricing .services-grid,
.vhs-packages-grid,
.cassette-packages-grid,
section.additional-services .container .additional-services .services-grid,
section.additional-services .services-grid,
section#pricing .container .additional-services .services-grid,
section.pricing .container .additional-services .services-grid,
.additional-services .services-grid,
div.additional-services .services-grid,
.container .additional-services .services-grid,
.volume-discounts .services-grid,
section#pricing .volume-discounts .services-grid,
section.pricing .volume-discounts .services-grid,
.container .volume-discounts .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

/* Medium screens - allow 2-3 columns */
@media screen and (max-width: 1024px) {
    .services-grid,
    section#pricing .services-grid,
    section.pricing .services-grid,
    .vhs-packages-grid,
    .cassette-packages-grid,
    section.additional-services .container .additional-services .services-grid,
    section.additional-services .services-grid,
    section#pricing .container .additional-services .services-grid,
    section.pricing .container .additional-services .services-grid,
    .additional-services .services-grid,
    div.additional-services .services-grid,
    .container .additional-services .services-grid,
    .volume-discounts .services-grid,
    section#pricing .volume-discounts .services-grid,
    section.pricing .volume-discounts .services-grid,
    .container .volume-discounts .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }
    
    /* Ensure containers don't overflow */
    section.additional-services .container,
    section#pricing .container,
    section.pricing .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Service cards - prevent compression, allow natural sizing */
    .service-card,
    section.additional-services .service-card,
    section#pricing .additional-services .service-card,
    section.pricing .additional-services .service-card,
    .additional-services .service-card,
    .volume-discounts .service-card,
    section#pricing .volume-discounts .service-card,
    section.pricing .volume-discounts .service-card {
        min-width: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        flex-shrink: 0 !important;
    }
}

/* Small screens - single column */
@media screen and (max-width: 768px) {
    .services-grid,
    section#pricing .services-grid,
    section.pricing .services-grid,
    .vhs-packages-grid,
    .cassette-packages-grid,
    section.additional-services .container .additional-services .services-grid,
    section.additional-services .services-grid,
    section#pricing .container .additional-services .services-grid,
    section.pricing .container .additional-services .services-grid,
    .additional-services .services-grid,
    div.additional-services .services-grid,
    .container .additional-services .services-grid,
    .volume-discounts .services-grid,
    section#pricing .volume-discounts .services-grid,
    section.pricing .volume-discounts .services-grid,
    .container .volume-discounts .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }
}

/* Very small screens - force single column */
@media screen and (max-width: 600px) {
    .services-grid,
    section#pricing .services-grid,
    section.pricing .services-grid,
    .vhs-packages-grid,
    .cassette-packages-grid,
    section.additional-services .container .additional-services .services-grid,
    section.additional-services .services-grid,
    section#pricing .container .additional-services .services-grid,
    section.pricing .container .additional-services .services-grid,
    .additional-services .services-grid,
    div.additional-services .services-grid,
    .container .additional-services .services-grid,
    .volume-discounts .services-grid,
    section#pricing .volume-discounts .services-grid,
    section.pricing .volume-discounts .services-grid,
    .container .volume-discounts .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Service cards take full width on mobile */
    .service-card,
    section.additional-services .service-card,
    section#pricing .additional-services .service-card,
    section.pricing .additional-services .service-card,
    .additional-services .service-card,
    .volume-discounts .service-card,
    section#pricing .volume-discounts .service-card,
    section.pricing .volume-discounts .service-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

.service-item {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #72B026;
    color: inherit;
}

.service-icon {
    font-size: 3rem;
    color: #72B026;
    margin-bottom: 5px;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.service-item p {
    color: #669;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-content {
    margin-top: 15px;
    position: relative;
}

/* Testimonials Carousel Styles */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    animation: fadeIn 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item {
    padding: 40px;
    border-radius: 10px;
    position: relative;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #72B026;
    font-family: serif;
}

.testimonial-item blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    margin-left: 20px;
}

.testimonial-author {
    margin-left: 20px;
}

.testimonial-author strong {
    font-size: 0.95rem;
    margin-bottom: 5px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #777;
    font-size: 0.7rem;
}

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    background: #72B026;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-nav-btn:hover {
    background: #5a8c1e;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn:focus {
    outline: 2px solid #72B026;
    outline-offset: 2px;
}

.testimonials-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #72B026;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background: rgba(114, 176, 38, 0.3);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #72B026;
    transform: scale(1.3);
}

/* Responsive adjustments for testimonials carousel */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .testimonials-navigation {
        gap: 15px;
        margin-top: 25px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}

/* About Section */
.about {
    
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.7;
}

.about-features {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    
}

.feature-item i {
    color: #72B026;
    font-size: 1.2rem;
    width: 20px;
}

.feature-item a {
    color: #333;
    text-decoration: none;
}

.feature-item a:hover {
    color: #72B026;
}

/* Footer Styles */
.footer {
    background: #212529;
    color: #ffffff;
    padding: 40px 0 0;
    position: relative;
}

.footer-ribbon {
    background: #72B026;
    color: white;
    padding: 10px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

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

.footer-section h2 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.page-header-subtitle p {
    color: #777777;
    margin-bottom: 5px;
    line-height: 1.6;
}

.page-header-subtitle a {
    color: #777777;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.page-header-subtitle a:hover {
    color: #72B026;
}

.contact-details {
    list-style: none;
    color: #777777;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.contact-details i {
    width: 20px;
    color: #72B026;
}

.contact-details a {
    color: #777777;
    text-decoration: none;
}

.contact-details a:hover {
    color: #72B026;
}

/* Social Links */
.share-links {
    display: flex;
    gap: 6px;
}

.share-links a {
    font-size: 18px !important;
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.share-facebook {
    background: #f8f9fa;
    color: #333333;
}

.share-facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.share-youtube {
    background: #f8f9fa;
    color: #333333;
}

.share-youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

.share-telegram {
    background: #f8f9fa;
    color: #333333;
}

.share-telegram:hover {
    background: #0088cc;
    color: #ffffff;
}

.share-whatsapp {
    background: #f8f9fa;
    color: #333333;
}

.share-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    background: #1c2023;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-bottom-content > * {
    flex-shrink: 0;
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-width: fit-content;
}

.footer-logo img {
    height: 40px;
    width: auto !important;
    max-width: none !important;
    min-width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-copyright p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #777777;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #72B026;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #72B026;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default, shown via JavaScript */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(114, 176, 38, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Show back-to-top button when displayed */
.back-to-top[style*="flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.back-to-top:hover {
    background-color: #5a8f1f;
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 16px rgba(114, 176, 38, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) !important;
}

.back-to-top i {
    color: #ffffff;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Mobile Menu Toggle Button - CRITICAL: Must be visible on mobile */
/* Base rule: hidden by default on desktop */
.mobile-menu-toggle,
button.mobile-menu-toggle,
#mobileToggle,
button#mobileToggle,
header .mobile-menu-toggle,
.header-top .mobile-menu-toggle,
.header-top button.mobile-menu-toggle,
.header-top #mobileToggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1002 !important;
    position: relative !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Show hamburger on tablets and mobile - CRITICAL for Safari/Firefox compatibility */
/* Use screen and for better browser support */
@media screen and (max-width: 1024px) {
    .mobile-menu-toggle,
    button.mobile-menu-toggle,
    #mobileToggle,
    button#mobileToggle,
    header .mobile-menu-toggle,
    .header-top .mobile-menu-toggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    .header-top button#mobileToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .main-navigation {
        display: none !important;
    }
}

/* CRITICAL: Hide hamburger menu on desktop (wider than 1024px) */
@media screen and (min-width: 1025px) {
    .mobile-menu-toggle,
    button.mobile-menu-toggle,
    #mobileToggle,
    button#mobileToggle,
    header .mobile-menu-toggle,
    .header-top .mobile-menu-toggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    .header-top button#mobileToggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Show desktop navigation on larger screens */
    .main-navigation {
        display: block !important;
    }
    
    /* Position search field above menu on desktop - RIGHT ALIGNED */
    .nav-menu > .nav-search {
        position: absolute !important;
        right: 0 !important; /* Right align on desktop */
        left: auto !important;
        transform: none !important;
        top: -30px !important; /* Reduced spacing - was -45px, then -35px */
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        z-index: 10 !important;
    }
    
    /* Right align the search container on desktop */
    .nav-menu > .nav-search .header-search {
        display: inline-block !important;
        margin: 0 !important;
        text-align: right !important;
    }
    
    /* Center the menu items properly without search field affecting layout */
    .nav-menu {
        justify-content: center !important;
        position: relative !important;
        padding-top: 0 !important; /* No extra padding - search is absolutely positioned */
        margin-top: 0 !important;
    }
    
    /* Create search row above navigation menu on desktop */
    .main-navigation {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    /* Show search field above menu on desktop */
    .main-navigation::before {
        content: '';
        display: block;
        order: -1;
        width: 100%;
        text-align: center;
    }
    
    /* Alternative approach: Use a pseudo-element to create search row */
    .main-navigation {
        position: relative;
    }
    
    /* Create search container above menu */
    .main-navigation::before {
        content: '';
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle,
    button.mobile-menu-toggle,
    #mobileToggle,
    button#mobileToggle,
    header .mobile-menu-toggle,
    .header-top .mobile-menu-toggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    .header-top button#mobileToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media screen and (max-width: 480px) {
    .mobile-menu-toggle,
    button.mobile-menu-toggle,
    #mobileToggle,
    button#mobileToggle,
    header .mobile-menu-toggle,
    .header-top .mobile-menu-toggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    .header-top button#mobileToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.mobile-menu-toggle span,
button.mobile-menu-toggle span,
#mobileToggle span,
button#mobileToggle span {
    width: 100% !important;
    height: 3px !important;
    min-height: 3px !important;
    background-color: #333 !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-toggle.active span:nth-child(1),
button.mobile-menu-toggle.active span:nth-child(1),
#mobileToggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) !important;
}

.mobile-menu-toggle.active span:nth-child(2),
button.mobile-menu-toggle.active span:nth-child(2),
#mobileToggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.mobile-menu-toggle.active span:nth-child(3),
button.mobile-menu-toggle.active span:nth-child(3),
#mobileToggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
}

.mobile-menu-toggle:hover span,
button.mobile-menu-toggle:hover span,
#mobileToggle:hover span {
    background-color: #72B026 !important;
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 60px 0 20px;
}

/* Mobile Nav Close Button (X icon) */
.mobile-nav-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: 2px solid #333 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1002 !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-nav-close:hover {
    background: #72B026;
    border-color: #72B026;
    transform: rotate(90deg);
}

.mobile-nav-close:active {
    transform: rotate(90deg) scale(0.95);
}

.mobile-nav-close i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.mobile-nav-close:hover i {
    color: #fff;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav .nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav .nav-menu a:hover {
    background-color: #f8f9fa;
    color: #72B026;
    padding-left: 25px;
}

.mobile-nav .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, opacity 0.3s ease !important;
}

.mobile-nav .dropdown.active .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 500px !important;
    overflow: visible !important;
}

/* Ensure dropdown menu is visible when active - maximum specificity */
.mobile-nav .dropdown.active > .dropdown-menu,
.mobile-nav li.dropdown.active .dropdown-menu,
nav.mobile-nav .dropdown.active .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 500px !important;
    overflow: visible !important;
}

.mobile-nav .dropdown-menu li {
    border-bottom: 1px solid #e9ecef;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-nav .dropdown-menu a {
    padding-left: 40px;
    font-size: 14px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-nav .dropdown-toggle {
    position: relative;
}

.mobile-nav .dropdown-toggle i {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.mobile-nav .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Below header (1000) but above page content */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* On small screens, make header static (not sticky) to save screen space */
@media screen and (max-width: 768px) {
    .header {
        position: relative !important; /* Change from fixed to relative on small screens */
        z-index: 1000;
    }
    
    body {
        padding-top: 0 !important; /* Remove padding since header is no longer fixed */
    }
    
    /* When menu is open, no extra padding needed */
    body.menu-open {
        padding-top: 0 !important;
    }
    
    /* Ensure first section starts immediately after header */
    body > section:first-of-type,
    body > .contact-hero:first-of-type,
    body > .hero:first-of-type {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Remove any container margin that might add space */
    .container:first-of-type {
        margin-top: 0 !important;
    }
    
    /* Ensure contact-hero has no top margin/padding */
    .contact-hero {
        margin-top: 0 !important;
    }
    
    /* Mobile nav overlay should still be fixed when menu is open */
    .mobile-nav-overlay.active {
        position: fixed !important;
    }
    
    /* Mobile nav should still be fixed when open */
    .mobile-nav.active {
        position: fixed !important;
    }
}

/* Adjust body padding on tablets (between 769px and 1024px) to account for taller header when elements are stacked */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* More precise calculation - using exact measurements:
       - header-wrapper padding: 8px top + 8px bottom = 16px
       - logo padding-top (for hamburger): 35px
       - logo height: ~55-60px (actual rendered height)
       - header-top gap: 8px
       - contact items (2 stacked): ~48px (2 × 24px with padding)
       - header-wrapper gap: 8px
       - search field: ~38px
       Total: ~211px, using 220px for consistent cross-browser spacing */
    body {
        padding-top: 220px !important; /* Balanced value for all browsers */
    }
    
    /* When menu is open, ensure enough space */
    body.menu-open {
        padding-top: 220px !important;
    }
    
    /* Ensure first section starts immediately after header with no extra margin/padding */
    body > section:first-of-type,
    body > .contact-hero:first-of-type,
    body > .hero:first-of-type {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Remove any container margin that might add space */
    .container:first-of-type {
        margin-top: 0 !important;
    }
    
    /* Ensure contact-hero has no top margin/padding that could create gap */
    .contact-hero {
        margin-top: 0 !important;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle,
    button.mobile-menu-toggle,
    #mobileToggle,
    button#mobileToggle,
    header .mobile-menu-toggle,
    .header-top .mobile-menu-toggle,
    .header-top button.mobile-menu-toggle,
    .header-top #mobileToggle,
    .header-top button#mobileToggle {
        display: flex !important;
        order: -1 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .header-top {
        display: flex !important;
        flex-direction: column !important; /* Stack items vertically */
        gap: 8px !important;
        align-items: center !important; /* Center all items */
        position: relative !important;
    }
    
    /* Ensure hamburger is positioned absolutely at top left */
    .header-top > .mobile-menu-toggle,
    .header-top > button.mobile-menu-toggle,
    .header-top > #mobileToggle {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        align-self: flex-start !important;
        margin: 0 !important;
    }
    
    /* Logo centered on its own line */
    .logo {
        order: 1 !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding-top: 35px !important; /* Space for hamburger */
    }
    
    .logo-img {
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Contact items stacked vertically and centered */
    .header-contact {
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important; /* Stack phone and email vertically */
        gap: 5px !important;
        align-items: center !important; /* Center each contact item */
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .header-contact .contact-item {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
    }
    
    /* Phone number comes first */
    .header-contact .contact-item:first-child {
        order: 1 !important;
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
        white-space: nowrap !important;
    }
    
    /* Email comes second */
    .header-contact .contact-item:last-child {
        order: 2 !important;
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
        white-space: nowrap !important;
    }
    
    .header-contact .contact-item {
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
        white-space: nowrap !important;
    }
    
    /* Ensure phone and email links are clickable and styled */
    .header-contact .contact-item a {
        font-size: 0.75rem !important;
        color: #666 !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        transition: color 0.3s ease !important;
    }
    
    .header-contact .contact-item a:hover {
        color: #72B026 !important;
    }
    
    .header-contact .contact-item i {
        font-size: 0.8rem !important;
        width: auto !important;
        color: #72B026 !important;
    }
    
    /* Show search in header on mobile - main-navigation is sibling of header-top */
    .header-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    
    /* Search field comes last - it's in main-navigation, centered on its own line */
    .main-navigation {
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        order: 3 !important;
        text-align: center !important;
    }
    
    .main-navigation .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important; /* Center the search field */
        align-items: center !important;
        gap: 0 !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 auto !important; /* Center the entire nav menu */
        width: 100% !important;
    }
    
    .nav-search {
        margin: 0 auto !important; /* Center the search within the nav */
        width: auto !important;
        display: inline-block !important;
    }
    
    .header-search {
        display: inline-block !important;
        margin: 0 auto !important;
    }
    
    .search-container {
        display: flex !important;
        justify-content: center !important; /* Center search input and button */
        align-items: center !important;
        margin: 0 auto !important;
    }
    
    /* Hide all nav items except search */
    .main-navigation .nav-menu > li:not(.nav-search) {
        display: none !important;
    }
    
    .nav-search {
        display: block !important;
        margin: 0 auto !important; /* Center on mobile */
        padding: 0 !important;
        width: auto !important;
        text-align: center !important;
    }
    
    .header-search {
        display: block !important;
        margin: 0 auto !important; /* Center on mobile */
        text-align: center !important;
    }
    
    .search-container {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important; /* Center search on mobile */
        gap: 5px !important;
        margin: 0 auto !important;
    }
    
    .search-input {
        width: 150px !important;
        min-width: 120px !important;
        padding: 6px 10px !important;
        font-size: 0.85rem !important;
        border: 1px solid #ddd !important;
        border-radius: 4px !important;
    }
    
    .search-button {
        padding: 6px 10px !important;
        border: 1px solid #ddd !important;
        border-radius: 4px !important;
        background: #f8f9fa !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero {
        padding: 15px 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .share-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .about-features {
        padding: 15px;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Contact Form Styles */
.contact-hero {
    background: linear-gradient(135deg, #72B026 0%, #2db700 100%);
    color: white;
    padding: 15px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Parallax effect for homepage hero section only */
.homepage-hero {
    position: relative;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Parallax scroll effect - only on desktop for performance */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
    .homepage-hero {
        /* Parallax will be applied via JavaScript */
    }
}

.contact-Hehero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="50" cy="50%" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 40px 0 20px 0;
}
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    padding: 4px 8px;
    
    
    padding: 15px;
    
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-item i {
    color: #72B026;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item a {
    color: #72B026;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-media h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.form-container {
    background: transparent;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.form-container p {
    color: #666;
    margin-bottom: 20px;
}

.contact-form {
    background: transparent;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #72B026;
    box-shadow: 0 0 0 3px rgba(114, 176, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.character-count {
    text-align: right;
    font-size: 0.7rem;
    color: #666;
    margin-top: 5px;
}

.budget-container {
    
    padding: 15px;
    border-radius: 8px;
}

.budget-slider {
    width: 100%;
    margin: 15px 0;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #e1e5e9;
    outline: none;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius:'slider-thumb {
    background: #72B026;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.budget-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #72B026;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.budget-value {
    font-weight: 600;
    color: #72B026;
    font-size: 1.2rem;
}

.budget-range {
    color: #666;
    font-size: 0.7rem;
}

.spam-check {
    
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
}

.spam-check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.spam-check-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.spam-check-label input[type="checkbox"]:checked + .checkmark {
    background: #72B026;
    border-color: #72B026;
}

.spam-check-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.btn-primary {
    background: #72B026;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #5a9320;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 176, 38, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #72B026;
    border: 2px solid #72B026;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #72B026;
    color: white;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.success-message {
    text-align: center;
    padding: 40px;
    
    border-radius: 15px;
    border: 2px solid #72B026;
}

.success-icon {
    color: #72B026;
    font-size: 3rem;
    margin-bottom: 5px;
}

.success-message h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.success-message p {
    color: #666;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion .faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.faq-accordion .faq-item:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    color: #72B026;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    background: #fff;
    border-top: 1px solid #e9ecef;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 15px 0 0 0;
    font-size: 0.95rem;
}

.faq-answer a {
    color: #72B026;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #5a8c1e;
}

/* Animation Keyframes */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification {
    animation: slideIn 0.3s ease-out;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 25px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    
    
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .contact-item i {
        width: auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-accordion {
        gap: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.7rem;
    }

    .budget-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 30px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
    }

    .spam-check {
        padding: 15px;
    }

    .success-message {
        padding: 30px 20px;
    }
}


/* Navigation active state styling */
.nav-link.active {
    color: #72B026;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #72B026;
    border-radius: 2px;
}

/* Remove default browser active link styling */
.nav-link:visited {
    color: inherit;
}

.nav-link.active:visited {
    color: #72B026;
}

/* Reduce header contact font size */
.header-contact {
    font-size: 0.7rem;
}

.header-contact .contact-item a {
    font-size: 0.7rem;
}

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

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.contact-intro p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Information Section */
.contact-info-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.contact-info-section h3 strong b {
    color: #72B026;
}

.office-details {
    margin-bottom: 25px;
}

.office-item {
    margin-bottom: 25px;
    padding: 15px;
    
    border-radius: 10px;
    border-left: 4px solid #72B026;
    transition: all 0.3s ease;
}

.office-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.office-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.office-item p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.office-item a {
    color: #72B026;
    text-decoration: none;
    font-weight: 500;
}

.office-item a:hover {
    text-decoration: underline;
}

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #72B026, transparent);
    margin: 40px 0;
}

/* Business Hours */
.business-hours h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.business-hours strong b {
    color: #72B026;
}

.hours-details {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    overflow: hidden;
}

.hours-item {
    padding: 15px 20px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.hours-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    margin-top: 15px;
}

.social-media-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

/* Form Section */
.form-container {
    background: transparent;
}

.form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.form-container strong b {
    color: #72B026;
}

.contact-form {
    background: transparent;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #72B026;
    box-shadow: 0 0 0 3px rgba(114, 176, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.character-count {
    text-align: right;
    font-size: 0.7rem;
    color: #666;
    margin-top: 5px;
}


.btn-primary {
    background: #72B026;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-primary:hover {
    background: #5a9320;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 176, 38, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #72B026;
    border: 2px solid #72B026;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #72B026;
    color: white;
    transform: translateY(-2px);
}

.success-message {
    text-align: center;
    padding: 40px;
    
    border-radius: 15px;
    border: 2px solid #72B026;
    margin-top: 30px;
}

.success-icon {
    color: #72B026;
    font-size: 3rem;
    margin-bottom: 5px;
}

.success-message h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.success-message p {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 25px;
    }

    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.7rem;
    }

    .success-message {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 30px;
    }

    .contact-page-content {
        padding: 20px 0;
    }

    .contact-grid {
        padding: 15px;
    }

    .contact-info-section h3,
    .form-container h3 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
    }

    .spam-check {
        padding: 15px;
    }

    .success-message {
        padding: 30px 15px;
    }

    .office-item {
        padding: 15px;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}


/* Service Cards and Pricing */
.service-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(114, 176, 38, 0.25);
    border-color: #72B026;
    border-width: 2px;
    background: #ffffff;
}

/* Text color changes on hover */
.service-card:hover h3,
.service-card:hover h4,
.service-card:hover .price {
    color: #72B026;
    transition: color 0.3s ease;
}

/* Button enhancement within service cards on hover */
.service-card:hover .btn {
    background: #72B026;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 176, 38, 0.3);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.service-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #72B026;
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✓';
    color: #72B026;
    font-weight: bold;
    margin-right: 10px;
}

.btn-outline {
    background: transparent;
    color: #72B026;
    border: 2px solid #72B026;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #72B026;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Additional Services */
.additional-services {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #e1e5e9;
}

.additional-services h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

    }
}


/* Footer Text Size Reduction */
.page-header-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.4;
}

.page-header-subtitle p {
    font-size: 0.85rem !important;
}

.page-header-subtitle a {
    font-size: 0.85rem !important;
}

.footer-section h2 {
    font-size: 0.95rem !important;
}

.footer-links {
    font-size: 0.7rem;
}

.footer-links a {
    font-size: 0.8rem !important;
}

.footer-copyright p {
    font-size: 0.75rem !important;
}

.page-header-title h2 {
    font-size: 1rem !important;
}

.contact-details {
    font-size: 0.85rem;
}

.contact-details li {
    font-size: 0.85rem;
}

.contact-details a {
    font-size: 0.85rem !important;
}

.share-links a {
    font-size: 18px !important;
    font-size: 1rem !important;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .page-header-subtitle {
        font-size: 0.8rem !important;
    }
    
    .page-header-subtitle p {
        font-size: 0.8rem !important;
    }
    
    .page-header-subtitle a {
        font-size: 0.8rem !important;
    }
    
    .footer-section h2 {
        font-size: 0.9rem !important;
    }
    
    .page-header-title h2 {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .page-header-subtitle {
        font-size: 0.75rem !important;
    }
    
    .footer-section h2 {
        font-size: 0.85rem !important;
    }
    
    .page-header-title h2 {
        font-size: 0.9rem !important;
    }
    
    .footer-copyright p {
        font-size:!

40%.     }
}


/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #72B026 0%, #2db700 100%);
    color: white;
    padding: 15px 0 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="50" cy="50%" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/>');
    opacity: 0.1;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 20px 0;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-main-content {
    background: #f8f9fa;
}

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

.tagline-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #72B026;
    margin-bottom: 10px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 10px;
}

.mission-box,
.vision-box,
.why-us-box {
    
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-box::before,
.vision-box::before,
.why-us-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #72B026;
    border-radius: 2px;
}

.icon-box {
    color: #72B026;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.mission-box h3,
.vision-box h3,
.why-us-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.mission-box p,
.vision-box p,
.why-us-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.vision-box ul {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
}

.vision-box li {
    color: #666;
    margin-bottom: 5px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    background: #72B026;
    padding: 60px 40px;
    border-radius: 15px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Who We Are Section */
.who-we-are {
    
}

.who-we-are-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.who-we-are h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.who-we-are h2 strong {
    color: #72B026;
}

.who-we-are p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.services-highlight {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.services-highlight h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-tag {
    background: #72B026;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: #5a9320;
    transform: translateY(-2px);
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #333;
}

.team-section h2 strong {
    color: #72B026;
}

.team-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.team-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-description {
    text-align: center;
    margin-bottom: 10px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.member-photo {
    margin-bottom: 20px;
}

.placeholder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #72B026;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.member-role {
    color: #72B026;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.testimonials-section h2 strong {
    color: #72B026;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #72B026;
    font-family: serif;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    margin-left: 20px;
}

.testimonial-author {
    margin-left: 20px;
}

.testimonial-author strong {
    font-size: 0.95rem;
    margin-bottom: 5px;
    margin-bottom: 5px;
    color: #72B026;
}

.testimonial-author span {
    color: #777;
    font-size: 0.7rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #72B026 0%, #2db700 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .tagline-section h2 {
        font-size: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .who-we-are h2,
    .team-section h2,
    .testimonials-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-members,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .who-we-are p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 15px 0 15px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-highlight,
    .team-member,
    .testimonial-card {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}


/* Header contact items specific styling */
.header-contact .contact-item a {
    font-weight: 300 !important;
    font-size: 0.7rem !important;
}


/* Contact info box font sizes */
.about-features {
    font-size: 0.85rem;
}

.feature-item {
    font-size: 0.85rem;
}

.feature-item span,
.feature-item a {
    font-size: 0.85rem !important;
}


/* About Artisan Media content font sizes */
.about-text {
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2rem !important;
}

.about-text p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}


/* Enhanced testimonials background styling */
.testimonials {
    background: #f8f9fa !important;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #72B026 0%, #2db700 100%);
}


/* Enhanced testimonial items styling */
.testimonial-item {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease !important;
}

.testimonial-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
    transform: translateY(-2px) !important;
}


/* Reduce Top 5 Services line spacing */
.page-header-subtitle a {
    padding: 2px 0 !important;
    margin-bottom: 1px !important;
}

.pb-2 {
    padding-bottom: 2px !important;
}


/* Fix contact hero content positioning */
.contact-hero-content {
    padding: 20px 0 !important;
    min-height: 100% !important;
}

.contact-hero h1 {
    margin-bottom: 15px !important;
}

.contact-hero p {
    margin: 0 !important;
    padding: 0 !important;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="50" cy="50%" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero ,display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 20px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero .btn {
    margin: 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 0 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}


/* Fix hero content padding for equal spacing */
.hero-content {
    padding: 20px 0 !important;
}

/* Sitemap Styles */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sitemap-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2db700;
}

.sitemap-category h3 {
    color: #2db700;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.sitemap-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sitemap-list a {
    color: #2db700;
    text-decoration: none;
    font-weight: 500;
}

.sitemap-list a:hover {
    color: #72B026;
    text-decoration: underline;
}

.coming-soon {
    color: #666;
    font-style: italic;
}

.sitemap-update-notice {
    background: #e8f5e8;
    border: 1px solid #2db700;
    border-radius: 6px;
    padding: 15px;
    margin-top: 40px;
    text-align: center;
    color: #2db700;
}

.sitemap-update-notice i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sitemap-category {
        padding: 20px;
    }
}

/* Package sections styling */
.package-sections {
    margin: 20px 0;
}

.package-section {
    margin-bottom: 20px;
}

.package-section h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #72B026;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-section ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.package-section li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
    padding-left: 15px;
    position: relative;
}

.package-section li:before {
    content: '•';
    color: #72B026;
    position: absolute;
    left: 0;
}

/* Wedding Videography Pricing Boxes - Unique styling for RECORDING/DELIVERY headings and bullet spacing */
.service-card .package-section h4 {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #72B026 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.service-card .package-section ul {
    margin: 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.service-card .package-section li {
    font-size: 0.85rem !important;
    color: #666 !important;
    margin-bottom: 2px !important;
    padding-left: 15px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.4 !important;
    position: relative !important;
}

.service-card .package-section li:before {
    content: '•' !important;
    color: #72B026 !important;
    position: absolute !important;
    left: 0 !important;
    font-size: 0.85rem !important;
}

/* Additional Services - Consistent formatting across all pages */
/* Targets: wedding-videography, school-production, tape-transfer, and any other pages with Additional Services */

/* Title formatting (h4) for all Additional Services boxes */
section.additional-services .service-card h4,
section#pricing .additional-services .service-card h4,
section.pricing .additional-services .service-card h4,
div.additional-services .service-card h4,
.additional-services .service-card h4,
.container .additional-services .service-card h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    color: #333 !important;
    line-height: 1.3 !important;
}

/* Paragraph text formatting for all Additional Services boxes */
section.additional-services .service-card p,
section#pricing .additional-services .service-card p,
section.pricing .additional-services .service-card p,
div.additional-services .service-card p,
.additional-services .service-card p,
.container .additional-services .service-card p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #666 !important;
}

/* Remove border-top from additional-services sections (wedding-videography, school-production, etc.) */
section.additional-services,
div.additional-services,
section.additional-services .container,
section.additional-services .container .additional-services {
    border-top: none !important;
}

/* Special handling for addon-price class (tape-transfer page) */
section.additional-services .service-card .addon-price,
section#pricing .additional-services .service-card .addon-price,
section.pricing .additional-services .service-card .addon-price,
div.additional-services .service-card .addon-price,
.additional-services .service-card .addon-price,
.container .additional-services .service-card .addon-price {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #72B026 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
}

/* Volume Discounts - Match Additional Services formatting (tape-transfer page) */
.volume-discounts .service-card h4,
section#pricing .volume-discounts .service-card h4,
section.pricing .volume-discounts .service-card h4,
.container .volume-discounts .service-card h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    color: #333 !important;
    line-height: 1.3 !important;
}

.volume-discounts .service-card p,
section#pricing .volume-discounts .service-card p,
section.pricing .volume-discounts .service-card p,
.container .volume-discounts .service-card p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #666 !important;
}

.volume-discounts .service-card .discount-price,
section#pricing .volume-discounts .service-card .discount-price,
section.pricing .volume-discounts .service-card .discount-price,
.container .volume-discounts .service-card .discount-price {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #72B026 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
}


/* Add-Ons section styling */
.add-ons-section {
    margin-top: 50px;
    padding-top: 40px;
}

.add-ons-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

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

.add-on-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
}

.add-on-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-color: #72B026;
}

.add-on-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.combo-card {
    background: linear-gradient(135deg, #72B026 0%, #2db700 100%);
    color: white;
}

.combo-card h4 {
    color: white;
}

.combo-card .price {
    color: white;
}

.combo-card .description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.streaming-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.streaming-pricing {
    margin-bottom: 15px;
}

.price-small {
    font-size: 1rem;
    color: #72B026;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.add-on-features h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #72B026;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-on-features ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.add-on-features li {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 3px;
    padding-left: 15px;
    position: relative;
}

.add-on-features li:before {
    content: '•';
    color: #72B026;
    position: absolute;
    left: 0;
}

.add-on-features a {
    color: #72B026;
    text-decoration: none;
}

.add-on-features a:hover {
    text-decoration: underline;
}

.add-on-features em {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .add-ons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .add-on-card {
        padding: 20px;
    }
}


/* Package type styling */
.package-type {
    font-size: 0.8em;
    font-weight: 500;
    color: #666;
}


/* Add-on type styling */
.addon-type {
    font-size: 0.7em;
    font-weight: 500;
    color: #666;
}


/* Add-Ons smaller variant to match main cards */
.add-ons-grid .service-card h4 { font-size: 1rem; }
.add-ons-grid .service-card .price { font-size: 1.1rem; }
.add-ons-grid .service-card .description, 
.add-ons-grid .service-card .add-on-details p,
.add-ons-grid .service-card .add-on-details li { font-size: 0.85rem; }
.add-ons-grid .service-card .addon-type { font-size: 0.75em; }


/* Inline features sentence for streaming card */
.inline-features { font-size: 0.85rem; color: #555; margin: 0; }
.inline-features em { color: #777; }


/* Increase Add-Ons price font sizes */
.add-ons-grid .service-card .price { font-size: 1.35rem; }
.add-ons-grid .service-card .price-small { font-size: 1.15rem; }


/* Features section styling */
.features-section { padding: 40px 0; }
/* Why Choose Us Section - Features Grid */
/* Responsive grid: 3 columns on desktop, 2 on tablets, 1 on mobile */
.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Default: 3 columns for desktop */
    gap: 25px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Large screens (desktop) - 3 columns */
@media screen and (min-width: 1025px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }
}

/* Medium screens (tablets) - 2 columns */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

/* Small screens (mobile) - 1 column in portrait */
@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Mobile landscape - 2 columns when width allows */
@media screen and (max-width: 896px) and (min-width: 481px) and (orientation: landscape) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    /* Ensure borders remain visible in landscape */
    .feature-item {
        border: 2px solid #e9ecef !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
}

/* Feature item styling - with borders */
/* CRITICAL: Ensure borders are always visible with maximum specificity */
.feature-item,
html body .feature-item,
body .feature-item,
.features-grid .feature-item,
.features-section .feature-item,
html body .features-grid .feature-item,
body .features-grid .feature-item {
    display: flex !important;
    gap: 15px !important;
    background: #fff !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 20px !important;
    align-items: flex-start !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.feature-item:hover {
    border-color: #72B026 !important;
    box-shadow: 0 4px 12px rgba(114, 176, 38, 0.2) !important;
}

.feature-item i {
    font-size: 24px !important;
    color: #72B026 !important;
    min-width: 24px !important;
    margin-top: 2px !important;
}

.feature-item h3,
.feature-item h4 {
    margin: 0 0 8px 0 !important;
    font-size: 1.1rem !important;
    color: #333 !important;
}

.feature-item p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: #666 !important;
    line-height: 1.4 !important;
}


/* Ensure school production package headings match style */
.service-card .package-type { font-size: 0.8em; color: #666; font-weight: 500; }


/* School Production form responsive width */
@media (min-width: 768px) {
    #contactForm {
        max-width: 50% !important;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    #contactForm {
        max-width: 100% !important;
        margin: 0;
    }
}


/* Reduce header contact quick links icon size */
.header-contact .contact-item i {
    font-size: 0.8rem !important;
    width: auto;
}


/* Portfolio Page Styles */
.portfolio-filter {
    padding: 30px 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 2px solid #e1e5e9;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #72B026;
    border-color: #72B026;
    color: white;
}

.portfolio-grid-section {
    padding: 40px 0 60px;
}

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

.portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f1f3f5;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-color: #72B026;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.portfolio-category {
    display: inline-block;
    background: #72B026;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.portfolio-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
}

.portfolio-meta span {
    display: block;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
}


/* Footer social icon sizing override */
.footer .share-links a { font-size: 20px !important; line-height: 32px; }
.footer .share-links a i { font-size: 20px !important; line-height: 32px; }

/* Search Results Styling */
.header-search {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    margin-top: 5px;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f5;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.search-result-title mark {
    background-color: #72B026;
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 700;
}

.search-result-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: 4px;
}

.search-result-excerpt mark {
    background-color: #fff3cd;
    color: #333;
    padding: 1px 3px;
    border-radius: 2px;
    font-weight: 500;
}

.search-no-results {
    padding: 20px 15px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile search results */
@media screen and (max-width: 768px) {
    .search-results {
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 4px;
    }
    
    .search-result-item {
        padding: 10px 12px;
    }
    
    .search-result-title {
        font-size: 0.9rem;
    }
    
    .search-result-excerpt {
        font-size: 0.8rem;
    }
}
