/* ===============================================
   HYDRO HOGS MOBILE OPTIMIZATION CSS
   ===============================================
   Comprehensive mobile fixes for all device sizes
   Focus on background optimization and touch UX
   =============================================== */

/* Enhanced Mobile Viewport Meta Support */
@viewport {
    width: device-width;
    initial-scale: 1.0;
    maximum-scale: 5.0;
    user-scalable: yes;
}

/* ===============================================
   CRITICAL MOBILE LAYOUT FIXES FOR HOMEPAGE
   =============================================== */

/* Fix mobile viewport and container issues */
@media (max-width: 768px) {
    /* Ensure full viewport usage */
    html, body {
        width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix container width issues */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* Fix section padding and margins */
    .section {
        padding: 2rem 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Fix hero section mobile layout */
    .hero {
        min-height: 100vh !important;
        padding: 1rem 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 2rem 1rem !important;
        margin: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    /* Fix values section mobile layout */
    .values-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .value-card {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 15px !important;
        padding: 1.5rem !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    }
    
    .value-card h3 {
        font-size: 1.2rem !important;
        color: #556b2f !important;
        margin-bottom: 0.5rem !important;
        font-weight: 700 !important;
    }
    
    .value-card p {
        font-size: 1rem !important;
        color: #495057 !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
    
    /* Fix service areas section */
    .service-areas {
        padding: 2rem 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .service-areas .section-title {
        padding: 0 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .service-areas .section-title h2 {
        font-size: 2rem !important;
        text-align: center !important;
        color: white !important;
        text-shadow: 3px 3px 8px rgba(0,0,0,0.9) !important;
        background: rgba(0,0,0,0.6) !important;
        padding: 1rem 1.5rem !important;
        border-radius: 15px !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(255,255,255,0.2) !important;
        display: inline-block !important;
        width: auto !important;
        margin: 0 auto !important;
    }
    
    /* Fix areas grid layout */
    .areas-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .area-card {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 12px !important;
        padding: 15px 10px !important;
        text-align: center !important;
        min-height: 100px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .area-card h3 {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #556b2f !important;
        margin: 0 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    .area-card .location-icon {
        font-size: 20px !important;
        margin-bottom: 5px !important;
        color: #dc2626 !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .area-card {
        min-height: 80px !important;
        padding: 12px 8px !important;
    }
    
    .area-card h3 {
        font-size: 16px !important;
    }
    
    .service-areas .section-title h2 {
        font-size: 1.5rem !important;
        padding: 0.8rem 1rem !important;
    }
}

/* ===============================================
   CRITICAL MOBILE BACKGROUND FIXES
   =============================================== */

/* Homepage Mobile Background Optimization */
@media (max-width: 768px) {
    body.homepage {
        /* Use high-resolution mobile-optimized background */
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                    url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
        position: relative !important;
    }
    
    /* Disable problematic pseudo-elements on mobile */
    body.homepage::before,
    body.homepage::after {
        display: none !important;
    }
}

/* Service Areas Page Mobile Background */
@media (max-width: 768px) {
    body.service-areas-page {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                    url('https://images.unsplash.com/photo-1600298881974-6be191ceeda1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
    }
}

/* All Page Backgrounds Mobile Optimization */
@media (max-width: 768px) {
    body.testimonials-page,
    body.contact-page,
    body.faq-page,
    body.about-page,
    body.packages-page {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    /* Fix service section backgrounds */
    .services,
    .about,
    .testimonials,
    .contact {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* ===============================================
   MOBILE LAYOUT OPTIMIZATIONS
   =============================================== */

/* Enhanced Mobile Container */
@media (max-width: 768px) {
    .container {
        width: 95% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }
}

/* Mobile-First Header Fixes */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0 !important;
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(15px) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .header-container {
        padding: 0 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .logo {
        flex-shrink: 0 !important;
        z-index: 1001 !important;
    }
    
    .logo-img {
        height: 60px !important;
        max-height: 60px !important;
        width: auto !important;
        max-width: 200px !important;
    }
    
    /* Enhanced Mobile Menu Button */
    .mobile-menu-btn {
        width: 44px !important;
        height: 44px !important;
        padding: 0.5rem !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 3px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        z-index: 1001 !important;
    }
    
    .hamburger-line {
        width: 20px !important;
        height: 2px !important;
        background: white !important;
        transition: all 0.3s ease !important;
        border-radius: 1px !important;
    }
    
    /* Mobile Menu Animation */
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
    }
    
    /* Enhanced Mobile Navigation */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-left: 2px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        padding-top: 80px !important;
        overflow-y: auto !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 18px 25px !important;
        color: white !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        transition: all 0.3s ease !important;
        border-left: 3px solid transparent !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.1) !important;
        border-left-color: #556b2f !important;
        color: #8fbc8f !important;
    }
    
    /* Add body padding to account for fixed header */
    body {
        padding-top: 80px !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
    }
    
    /* Fix areas note styling */
    .areas-note {
        text-align: center !important;
        margin-top: 2rem !important;
        padding: 1rem !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 10px !important;
        color: #495057 !important;
        font-size: 1rem !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .areas-note a {
        color: #556b2f !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }
    
    .areas-note a:hover {
        text-decoration: underline !important;
    }
}

/* ===============================================
   HERO SECTION MOBILE OPTIMIZATION
   =============================================== */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh !important;
        padding: 2rem 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content {
        padding: 2rem 1rem !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .hero h2 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        text-shadow: 
            3px 3px 8px rgba(0,0,0,0.9),
            0 0 20px rgba(0,0,0,0.7) !important;
    }
    
    .hero p {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
        text-shadow: 
            2px 2px 6px rgba(0,0,0,0.8),
            0 0 15px rgba(0,0,0,0.6) !important;
    }
    
    /* Enhanced CTA Button */
    .homepage .btn,
    .hero .btn {
        padding: 16px 24px !important;
        font-size: 18px !important;
        min-height: 44px !important;
        min-width: 200px !important;
        border-radius: 25px !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        color: var(--camo-dark) !important;
        border: 3px solid rgba(255, 255, 255, 0.4) !important;
        box-shadow: 
            0 8px 25px rgba(0,0,0,0.4),
            0 4px 12px rgba(0,0,0,0.3),
            inset 0 1px 0 rgba(255,255,255,0.9) !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
}

/* ===============================================
   SERVICE AREAS MOBILE FIXES
   =============================================== */

@media (max-width: 768px) {
    /* Service Areas Page Background Fix */
    body.service-areas-page {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                    url('https://images.unsplash.com/photo-1600298881974-6be191ceeda1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
    }
    
    /* Service Areas Section */
    .service-areas {
        background: transparent !important;
        min-height: 100vh !important;
        padding: 4rem 0 !important;
    }
    
    .service-areas .section-title h2 {
        color: white !important;
        text-shadow: 3px 3px 8px rgba(0,0,0,0.9) !important;
        background: rgba(0,0,0,0.6) !important;
        padding: 1.5rem 2rem !important;
        border-radius: 15px !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(255,255,255,0.2) !important;
        display: inline-block !important;
    }
    
    .service-areas .section-title p {
        color: white !important;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.8) !important;
        background: rgba(0,0,0,0.4) !important;
        padding: 1rem 1.5rem !important;
        border-radius: 10px !important;
        backdrop-filter: blur(8px) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        margin: 0 auto !important;
        max-width: 600px !important;
    }
    
    /* Service Areas Grid Enhancement */
    .areas-grid,
    .service-areas-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 15px !important;
        margin: 2rem 0 !important;
    }
    
    /* Service Area Cards */
    .area-card,
    .service-area-card {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 15px !important;
        padding: 20px 15px !important;
        text-align: center !important;
        min-height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }
    
    .area-card:hover,
    .service-area-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.2),
            0 6px 18px rgba(0, 0, 0, 0.15) !important;
        background: rgba(255, 255, 255, 1) !important;
    }
    
    .area-card h3,
    .service-area-card h3 {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: var(--camo-olive) !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }
    
    .area-card .location-icon,
    .service-area-card .location-icon {
        font-size: 24px !important;
        margin-bottom: 8px !important;
        color: #dc2626 !important;
    }
}

/* Single Column Layout for Very Small Screens */
@media (max-width: 480px) {
    .areas-grid,
    .service-areas-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .area-card,
    .service-area-card {
        min-height: 100px !important;
        padding: 18px 15px !important;
    }
}

/* ===============================================
   SERVICES PREVIEW MOBILE OPTIMIZATION
   =============================================== */

@media (max-width: 768px) {
    .services-preview-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 2rem 0 !important;
    }
    
    .service-preview-card {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 20px !important;
        padding: 25px 20px !important;
        text-align: center !important;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.15),
            0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    .service-preview-card .service-icon {
        font-size: 48px !important;
        margin-bottom: 15px !important;
        display: block !important;
    }
    
    .service-preview-card h3 {
        font-size: 1.4rem !important;
        color: var(--camo-olive) !important;
        margin-bottom: 10px !important;
    }
    
    .service-preview-card p {
        font-size: 1rem !important;
        color: var(--text-gray) !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .btn-link {
        display: inline-block !important;
        padding: 12px 20px !important;
        background: var(--camo-olive) !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        min-height: 44px !important;
        transition: all 0.3s ease !important;
    }
    
    .btn-link:hover {
        background: var(--camo-forest) !important;
        transform: translateY(-2px) !important;
    }
}

/* ===============================================
   FOOTER MOBILE OPTIMIZATION
   =============================================== */

@media (max-width: 768px) {
    footer {
        background: rgba(45, 48, 22, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        padding: 3rem 0 2rem 0 !important;
    }
    
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-section h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        color: white !important;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    .footer-section a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 8px 0 !important;
        display: inline-block !important;
        min-height: 44px !important;
        line-height: 28px !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 15px !important;
    }
    
    .social-links a {
        padding: 12px 16px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 10px !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px) !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        font-weight: 600 !important;
    }
    
    .copyright {
        margin-top: 2rem !important;
        padding-top: 2rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        text-align: center !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    .veteran-badge-footer {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-radius: 25px !important;
    }
}

/* ===============================================
   TOUCH AND ACCESSIBILITY ENHANCEMENTS
   =============================================== */

@media (max-width: 768px) {
    /* Minimum touch target sizes */
    button,
    .btn,
    .btn-link,
    a[href],
    input[type="submit"],
    input[type="button"] {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 16px !important;
    }
    
    /* Enhanced focus states for mobile */
    button:focus,
    .btn:focus,
    a:focus,
    input:focus,
    textarea:focus {
        outline: 3px solid rgba(85, 107, 47, 0.6) !important;
        outline-offset: 2px !important;
    }
    
    /* Prevent zoom on input focus (iOS Safari) */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ===============================================
   PROGRESSIVE ENHANCEMENT FOR LARGER MOBILES
   =============================================== */

/* Large Mobile/Small Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero h2 {
        font-size: 3rem !important;
    }
    
    .hero p {
        font-size: 1.3rem !important;
    }
    
    .areas-grid,
    .service-areas-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }
    
    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .container {
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    .hero h2 {
        font-size: 2.2rem !important;
    }
    
    .hero p {
        font-size: 1.1rem !important;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem !important;
    }
    
    .logo-img {
        height: 60px !important;
    }
    
    .mobile-menu-btn {
        width: 40px !important;
        height: 40px !important;
    }
}

/* ===============================================
   PERFORMANCE OPTIMIZATIONS
   =============================================== */

@media (max-width: 768px) {
    /* Reduce animations on mobile for performance */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Optimize transforms for mobile */
    .hero-content,
    .service-preview-card,
    .area-card,
    .service-area-card {
        will-change: transform !important;
        transform: translateZ(0) !important; /* Enable hardware acceleration */
    }
    
    /* Reduce box-shadows complexity on mobile */
    .service-preview-card,
    .area-card,
    .service-area-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    .service-preview-card:hover,
    .area-card:hover,
    .service-area-card:hover {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
    }
}

/* ===============================================
   CRITICAL RENDERING PATH OPTIMIZATION
   =============================================== */

/* Above-the-fold critical styles */
@media (max-width: 768px) {
    body {
        font-display: swap;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Preload key visual elements */
    .hero,
    .hero-content {
        contain: layout style paint;
    }
}

/* ===============================================
   PIGLET PACKAGE SPECIFIC BACKGROUND
   =============================================== */

/* Piglet Package Hero Background */
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('https://t4.ftcdn.net/jpg/10/61/83/19/360_F_1061831957_K6CzIGVRPeIBErCtOh0SBX87ZNCWzQQe.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    position: relative !important;
}

/* Piglet Package Hero Content Enhancement */
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero-content {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Piglet Package Typography */
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero h2 {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
}

body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero-price {
    color: #f5f5dc !important;
    background: rgba(85, 107, 47, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(245, 245, 220, 0.3) !important;
    border-radius: 15px !important;
    padding: 1rem 2rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Mobile Optimization for Piglet Background */
@media (max-width: 768px) {
    body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                    url('https://t4.ftcdn.net/jpg/10/61/83/19/360_F_1061831957_K6CzIGVRPeIBErCtOh0SBX87ZNCWzQQe.jpg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
    }
    
    body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero-content {
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 15px !important;
        padding: 2rem !important;
        margin: 1rem !important;
    }
    
    body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .hero-price {
        font-size: 2rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}

/* ===============================================
   RAZORBACK PACKAGE SPECIFIC BACKGROUND  
   =============================================== */

/* Add a specific class for Razorback page targeting */
body:has(.hero-content h2:contains("Razorback")) .hero,
.razorback-page .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1594372365401-3b5ff14eaaed?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    position: relative !important;
}

/* Razorback Package Hero Content Enhancement */
body:has(.hero-content h2:contains("Razorback")) .hero-content,
.razorback-page .hero-content {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Razorback Package Typography */
body:has(.hero-content h2:contains("Razorback")) .hero h2,
.razorback-page .hero h2 {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
}

body:has(.hero-content h2:contains("Razorback")) .hero p,
.razorback-page .hero p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

body:has(.hero-content h2:contains("Razorback")) .hero-price,
.razorback-page .hero-price {
    color: #f5f5dc !important;
    background: rgba(85, 107, 47, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(245, 245, 220, 0.3) !important;
    border-radius: 15px !important;
    padding: 1rem 2rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Mobile Optimization for Razorback Background */
@media (max-width: 768px) {
    body:has(.hero-content h2:contains("Razorback")) .hero,
    .razorback-page .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                    url('https://images.unsplash.com/photo-1594372365401-3b5ff14eaaed?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
    }
    
    body:has(.hero-content h2:contains("Razorback")) .hero-content,
    .razorback-page .hero-content {
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 15px !important;
        padding: 2rem !important;
        margin: 1rem !important;
    }
    
    body:has(.hero-content h2:contains("Razorback")) .hero-price,
    .razorback-page .hero-price {
        font-size: 2rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}

/* ===============================================
   FULL BOAR PACKAGE SPECIFIC BACKGROUND  
   =============================================== */

/* Full Boar Package targeting */
body:has(.hero-content h2:contains("Full Boar")) .hero,
.full-boar-page .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('https://cdn12.picryl.com/photo/2016/12/31/water-droplet-red-drop-0741aa-1024.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    position: relative !important;
}

/* Full Boar Package Hero Content Enhancement */
body:has(.hero-content h2:contains("Full Boar")) .hero-content,
.full-boar-page .hero-content {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Full Boar Package Typography */
body:has(.hero-content h2:contains("Full Boar")) .hero h2,
.full-boar-page .hero h2 {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
}

body:has(.hero-content h2:contains("Full Boar")) .hero p,
.full-boar-page .hero p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

body:has(.hero-content h2:contains("Full Boar")) .hero-price,
.full-boar-page .hero-price {
    color: #f5f5dc !important;
    background: rgba(85, 107, 47, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(245, 245, 220, 0.3) !important;
    border-radius: 15px !important;
    padding: 1rem 2rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Mobile Optimization for Full Boar Background */
@media (max-width: 768px) {
    body:has(.hero-content h2:contains("Full Boar")) .hero,
    .full-boar-page .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                    url('https://cdn12.picryl.com/photo/2016/12/31/water-droplet-red-drop-0741aa-1024.jpg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
    }
    
    body:has(.hero-content h2:contains("Full Boar")) .hero-content,
    .full-boar-page .hero-content {
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 15px !important;
        padding: 2rem !important;
        margin: 1rem !important;
    }
    
    body:has(.hero-content h2:contains("Full Boar")) .hero-price,
    .full-boar-page .hero-price {
        font-size: 2rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}

/* ===============================================
   PRICING SECTION VISIBILITY OVERRIDE
   =============================================== */

/* Clean Professional Pricing Design */
.razorback-page .pricing-details,
.full-boar-page .pricing-details,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .pricing-details {
    background: #556b2f !important;
    border: none !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 2rem !important;
    margin: 0 !important;
}

.razorback-page .pricing-details h3,
.full-boar-page .pricing-details h3,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .pricing-details h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    text-shadow: none !important;
}

.razorback-page .price-breakdown,
.full-boar-page .price-breakdown,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .price-breakdown {
    background: #ffffff !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
}

.razorback-page .price-item,
.full-boar-page .price-item,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .price-item {
    color: #495057 !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 0.8rem 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-shadow: none !important;
}

.razorback-page .price-item span:first-child,
.full-boar-page .price-item span:first-child,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .price-item span:first-child {
    color: #495057 !important;
    font-weight: 500 !important;
}

.razorback-page .price-item span:last-child,
.full-boar-page .price-item span:last-child,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .price-item span:last-child {
    color: #556b2f !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.razorback-page .price-total,
.full-boar-page .price-total,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .price-total {
    background: #f8f9fa !important;
    border-radius: 6px !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
    border: 2px solid #556b2f !important;
}

.razorback-page .price-total span:first-child,
.full-boar-page .price-total span:first-child,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .price-total span:first-child {
    color: #495057 !important;
    font-weight: 600 !important;
}

.razorback-page .total-price,
.full-boar-page .total-price,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .total-price {
    color: #556b2f !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.razorback-page .savings,
.full-boar-page .savings,
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.holiday-lights-page):not(.sea-hog-page) .savings {
    background: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
    border-radius: 6px !important;
    padding: 0.8rem 1rem !important;
    margin-top: 1rem !important;
    text-align: center !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* ===============================================
   NEW LOGO OPTIMIZATION
   =============================================== */

/* Enhanced Logo Styling for New Military Badge Design - 2x Larger */
.logo-img {
    height: 120px !important;
    width: auto !important;
    max-width: 400px !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) !important;
}

/* Logo hover effect */
.logo:hover .logo-img {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)) !important;
}

/* Mobile logo optimization - 2x Larger */
@media (max-width: 768px) {
    .logo-img {
        height: 100px !important;
        max-width: 300px !important;
    }
}

/* Small mobile optimization - 2x Larger */
@media (max-width: 480px) {
    .logo-img {
        height: 90px !important;
        max-width: 240px !important;
    }
}

/* Header adjustments for new logo */
.header-container {
    align-items: center !important;
    justify-content: space-between !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    z-index: 10 !important;
}

/* Ensure logo visibility on all backgrounds */
.scrolled .logo-img,
.hero .logo-img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) brightness(1.1) !important;
}

/* ===============================================
   BACK NAVIGATION FOR PACKAGE PAGES
   =============================================== */

/* Back Button Styling */
.back-nav {
    position: fixed !important;
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
    background: #556b2f !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    font-size: 20px !important;
    text-decoration: none !important;
}

.back-nav:hover {
    background: #445d26 !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}

.back-nav:before {
    content: "←" !important;
    font-weight: bold !important;
}

/* Mobile Back Button Adjustments */
@media (max-width: 768px) {
    .back-nav {
        top: auto !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        border-radius: 25px !important;
        width: auto !important;
        height: 45px !important;
        padding: 0 20px !important;
        font-size: 16px !important;
    }
    
    .back-nav:hover {
        transform: translateX(-50%) scale(1.05) !important;
    }
    
    .back-nav:before {
        content: "← Back" !important;
        font-weight: 600 !important;
    }
}

/* Ensure back button shows only on package pages */
body:not(.homepage):not(.contact-page):not(.testimonials-page):not(.faq-page) .back-nav {
    display: flex !important;
}

/* ===============================================
   FAQ MOBILE TEXT PROMINENCE ENHANCEMENTS
   =============================================== */

/* Mobile FAQ Text Optimization */
@media (max-width: 768px) {
    .faq-item {
        padding: 2rem !important;
        margin-bottom: 1.5rem !important;
        background: rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(25px) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
    }
    
    .faq-item h3 {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.95), 0px 0px 12px rgba(255, 255, 255, 0.6) !important;
        margin-bottom: 1rem !important;
        letter-spacing: 0.6px !important;
        line-height: 1.3 !important;
    }
    
    .faq-item p {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.85), 0px 0px 8px rgba(255, 255, 255, 0.5) !important;
        line-height: 1.6 !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .faq-item {
        padding: 1.8rem !important;
        background: rgba(255, 255, 255, 0.35) !important;
    }
    
    .faq-item h3 {
        font-size: 1.25rem !important;
        text-shadow: 3px 3px 7px rgba(255, 255, 255, 1), 0px 0px 15px rgba(255, 255, 255, 0.7) !important;
    }
    
    .faq-item p {
        font-size: 1.05rem !important;
        text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.9), 0px 0px 10px rgba(255, 255, 255, 0.6) !important;
    }
}

/* ===============================================
   CLEAN PACKAGE PAGES DESIGN SYSTEM
   =============================================== */

/* 3-Color Professional Design System:
   Primary: #556b2f (Military Green)
   Secondary: #ffffff (Clean White) 
   Accent: #f8f9fa (Light Gray) */

/* Clean Package Page Background */
@media (min-width: 769px) {
    /* Desktop Package Page Backgrounds */
    .section[style*="background: white"],
    .section[style*="background: var(--light-blue)"] {
        background: #f8f9fa !important;
        padding: 4rem 0 !important;
        border: none !important;
    }
    
    /* Clean Package Details Container */
    .package-details {
        background: #ffffff !important;
        border-radius: 12px !important;
        border: 1px solid #e9ecef !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        padding: 3rem !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 2fr 1fr !important;
        gap: 3rem !important;
    }
    
    /* Package Info Section */
    .package-info {
        padding: 0 !important;
    }
    
    .package-info h2 {
        color: #556b2f !important;
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-bottom: 2rem !important;
        border-bottom: 3px solid #556b2f !important;
        padding-bottom: 1rem !important;
    }
    
    /* Clean Service Items */
    .service-item {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        border-left: 4px solid #556b2f !important;
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease !important;
    }
    
    .service-item:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 16px rgba(85, 107, 47, 0.15) !important;
        border-left-color: #556b2f !important;
        border-left-width: 6px !important;
    }
    
    .service-item h3 {
        color: #556b2f !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .service-item p {
        color: #6c757d !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
    
    /* Clean Package Features */
    .package-features {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 2rem !important;
        margin-top: 2rem !important;
    }
    
    .package-features h3 {
        color: #556b2f !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        margin-bottom: 1.5rem !important;
        border-bottom: 2px solid #556b2f !important;
        padding-bottom: 0.5rem !important;
    }
    
    /* Clean Feature List Items */
    .package-features ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .package-features ul li {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        padding: 0.8rem 1rem !important;
        margin: 0.5rem 0 !important;
        border-radius: 6px !important;
        border-left: 3px solid #556b2f !important;
        color: #495057 !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
    }
    
    .package-features ul li:hover {
        background: #f8f9fa !important;
        border-left-width: 5px !important;
        transform: translateX(3px) !important;
        box-shadow: 0 2px 8px rgba(85, 107, 47, 0.1) !important;
    }
    
    /* Clean Professional Booking Card */
    .booking-card {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        padding: 0 !important;
        position: sticky !important;
        top: 2rem !important;
        height: fit-content !important;
    }
    
    /* Pricing Details */
    .pricing-details {
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 15px !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    }
    
    .pricing-details h3 {
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    }
    
    /* Price Items */
    .price-item {
        color: white !important;
        padding: 0.8rem 0 !important;
        border-bottom: 1px solid rgba(245, 245, 220, 0.3) !important;
        font-weight: 500 !important;
    }
    
    .price-item span:first-child {
        color: rgba(245, 245, 220, 0.95) !important;
    }
    
    .price-item span:last-child {
        color: white !important;
        font-weight: 600 !important;
    }
    
    .price-total {
        color: white !important;
        font-weight: 700 !important;
        font-size: 1.2rem !important;
        border-top: 2px solid rgba(245, 245, 220, 0.4) !important;
        padding-top: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .price-total span {
        color: white !important;
    }
    
    .total-price {
        color: #f5f5dc !important;
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
    }
    
    .savings {
        color: #90EE90 !important;
        font-weight: 600 !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
        background: rgba(144, 238, 144, 0.2) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 8px !important;
        margin-top: 1rem !important;
        border: 1px solid rgba(144, 238, 144, 0.3) !important;
    }
    
    /* Clean Professional Booking Form */
    .booking-form {
        background: #f8f9fa !important;
        border: none !important;
        border-radius: 0 0 12px 12px !important;
        padding: 2rem !important;
        border-top: 1px solid #e9ecef !important;
    }
    
    .booking-form h3 {
        color: #556b2f !important;
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        margin-bottom: 1.5rem !important;
        text-shadow: none !important;
        text-align: center !important;
    }
    
    .booking-form input,
    .booking-form textarea,
    .booking-form select {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 6px !important;
        padding: 12px 15px !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        font-size: 16px !important;
        color: #495057 !important;
        transition: all 0.3s ease !important;
        font-family: inherit !important;
    }
    
    .booking-form input:focus,
    .booking-form textarea:focus,
    .booking-form select:focus {
        border-color: #556b2f !important;
        box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.1) !important;
        outline: none !important;
        background: #ffffff !important;
    }
    
    .booking-form button[type="submit"],
    .booking-form .btn {
        background: #556b2f !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 6px !important;
        padding: 15px 30px !important;
        width: 100% !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        margin-top: 1rem !important;
    }
    
    .booking-form button[type="submit"]:hover,
    .booking-form .btn:hover {
        background: #445d26 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3) !important;
    }
    
    /* Clean Benefits Section */
    .benefits-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
        margin-top: 3rem !important;
        padding: 0 1rem !important;
    }
    
    .benefit-card {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 2rem !important;
        text-align: center !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease !important;
        border-top: 4px solid #556b2f !important;
    }
    
    .benefit-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 8px 25px rgba(85, 107, 47, 0.15) !important;
        border-top-width: 6px !important;
    }
    
    .benefit-card h3 {
        color: #556b2f !important;
        margin-bottom: 1rem !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
    }
    
    .benefit-card p {
        color: #6c757d !important;
        line-height: 1.6 !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
    
    /* Section Titles */
    .section-title h2 {
        color: #556b2f !important;
        font-size: 2.2rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 3rem !important;
        position: relative !important;
        padding-bottom: 1rem !important;
    }
    
    .section-title h2::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60px !important;
        height: 3px !important;
        background: #556b2f !important;
        border-radius: 2px !important;
    }
}

/* Mobile Package Page Optimization */
@media (max-width: 768px) {
    /* Clean Mobile Package Backgrounds */
    .section[style*="background: white"],
    .section[style*="background: var(--light-blue)"] {
        background: #f8f9fa !important;
        padding: 2rem 0 !important;
    }
    
    /* Mobile Package Details Container */
    .package-details {
        background: #ffffff !important;
        border-radius: 12px !important;
        border: 1px solid #e9ecef !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        padding: 2rem 1rem !important;
        margin: 0 1rem !important;
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    /* Mobile Package Info */
    .package-info {
        margin-bottom: 2rem !important;
    }
    
    .package-info h2 {
        color: #556b2f !important;
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        margin-bottom: 2rem !important;
        border-bottom: 3px solid #556b2f !important;
        padding-bottom: 1rem !important;
        text-align: center !important;
    }
    
    /* Mobile Service Items */
    .service-item {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        border-left: 4px solid #556b2f !important;
        padding: 1.2rem !important;
        margin-bottom: 1rem !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }
    
    .service-item h3 {
        color: #556b2f !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .service-item p {
        color: #6c757d !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
    
    /* Mobile Package Features */
    .package-features {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .package-features h3 {
        color: #556b2f !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        margin-bottom: 1.5rem !important;
        border-bottom: 2px solid #556b2f !important;
        padding-bottom: 0.5rem !important;
        text-align: center !important;
    }
    
    .package-features ul li {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        padding: 0.8rem 1rem !important;
        margin: 0.5rem 0 !important;
        border-radius: 6px !important;
        border-left: 3px solid #556b2f !important;
        color: #495057 !important;
        font-size: 0.85rem !important;
        font-weight: 500 !important;
    }
    
    /* Mobile Booking Card */
    .booking-card {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        margin-top: 2rem !important;
        padding: 0 !important;
        position: static !important;
    }
    
    /* Clean Mobile Pricing Design */
    .pricing-details {
        background: #556b2f !important;
        border: none !important;
        border-radius: 12px 12px 0 0 !important;
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    .pricing-details h3 {
        color: #ffffff !important;
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        text-shadow: none !important;
    }
    
    .price-breakdown {
        background: #ffffff !important;
        border-radius: 8px !important;
        padding: 1.5rem !important;
    }
    
    .price-item {
        color: #495057 !important;
        border-bottom: 1px solid #e9ecef !important;
        padding: 0.8rem 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-shadow: none !important;
    }
    
    .price-item span:first-child {
        color: #495057 !important;
        font-weight: 500 !important;
        font-size: 0.9rem !important;
    }
    
    .price-item span:last-child {
        color: #556b2f !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
    }
    
    .price-total {
        background: #f8f9fa !important;
        border-radius: 6px !important;
        padding: 1rem !important;
        margin-top: 1rem !important;
        border: 2px solid #556b2f !important;
    }
    
    .price-total span:first-child {
        color: #495057 !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
    }
    
    .total-price {
        color: #556b2f !important;
        font-size: 1.8rem !important;
        font-weight: 800 !important;
        text-shadow: none !important;
    }
    
    .savings {
        background: #d4edda !important;
        color: #155724 !important;
        border: 1px solid #c3e6cb !important;
        border-radius: 6px !important;
        padding: 0.8rem 1rem !important;
        margin-top: 1rem !important;
        text-align: center !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        text-shadow: none !important;
    }
    
    /* Mobile Booking Form */
    .booking-form {
        background: #f8f9fa !important;
        border: none !important;
        border-radius: 0 0 12px 12px !important;
        padding: 1.5rem !important;
        border-top: 1px solid #e9ecef !important;
    }
    
    .booking-form h3 {
        color: #556b2f !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        margin-bottom: 1.5rem !important;
        text-shadow: none !important;
        text-align: center !important;
    }
    
    .booking-form input,
    .booking-form textarea,
    .booking-form select {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 6px !important;
        padding: 12px 15px !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        font-size: 16px !important;
        color: #495057 !important;
        font-family: inherit !important;
    }
    
    .booking-form input:focus,
    .booking-form textarea:focus,
    .booking-form select:focus {
        border-color: #556b2f !important;
        box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.1) !important;
        outline: none !important;
    }
    
    .booking-form button[type="submit"],
    .booking-form .btn {
        background: #556b2f !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 6px !important;
        padding: 15px 30px !important;
        width: 100% !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        margin-top: 1rem !important;
    }
    
    .booking-form button[type="submit"]:active,
    .booking-form .btn:active {
        background: #445d26 !important;
        transform: translateY(1px) !important;
    }
    
    /* Mobile Benefits Section */
    .benefits-grid {
        display: block !important;
        margin-top: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .benefit-card {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 1.5rem !important;
        text-align: center !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        border-top: 4px solid #556b2f !important;
        margin-bottom: 1rem !important;
    }
    
    .benefit-card h3 {
        color: #556b2f !important;
        margin-bottom: 1rem !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
    }
    
    .benefit-card p {
        color: #6c757d !important;
        line-height: 1.6 !important;
        font-size: 0.9rem !important;
        margin: 0 !important;
    }
    
    /* Mobile Section Titles */
    .section-title h2 {
        color: #556b2f !important;
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
        padding-bottom: 1rem !important;
        border-bottom: 3px solid #556b2f !important;
    }
    
    .section-title h2::after {
        display: none !important;
    }
}

/* ===============================================
   DARK MODE SUPPORT FOR MOBILE
   =============================================== */

@media (max-width: 768px) and (prefers-color-scheme: dark) {
    .service-preview-card,
    .area-card,
    .service-area-card {
        background: rgba(45, 48, 22, 0.95) !important;
        color: white !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    .service-preview-card h3,
    .area-card h3,
    .service-area-card h3 {
        color: var(--camo-sage) !important;
    }
    
    .service-preview-card p {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

/* ===============================================
   PRINT STYLES FOR MOBILE
   =============================================== */

@media print {
    body.homepage {
        background: none !important;
    }
    
    .mobile-menu-btn,
    .nav-menu,
    .page-loader {
        display: none !important;
    }
    
    .hero-content {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}
