/*
Theme Name: Utah Wildlife Specialists
Description: Custom WordPress theme for wildlife removal services. Professional, modern design with dark header, amber accents, and forest green color scheme.
Author: Custom Theme
Version: 1.0.0
Requires at least: 5.5
Requires PHP: 7.4
Text Domain: utah-wildlife
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: business, wildlife, services, responsive, custom-header, featured-images
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #2D4A3E;
    --matte-black: #1A1A1A;
    --accent-amber: #D4A574;
    --accent-rust: #B86B47;
    --light-sage: #E8EDE8;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--matte-black);
    background: var(--white);
}

/* Header & Navigation */
header {
    background: var(--matte-black);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    max-height: 60px;
    width: auto;
    height: auto;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-amber);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-amber);
}

/* Dropdown Menu Styles - Bulletproof Version */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links > li {
    display: inline-block;
}

/* All possible submenu selectors */
.nav-links .sub-menu,
.nav-links ul.sub-menu,
.nav-links li ul,
.nav-links ul ul,
.nav-links .children {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: var(--matte-black) !important;
    min-width: 280px !important;
    list-style: none !important;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    display: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    border-top: 3px solid var(--accent-amber) !important;
    z-index: 9999 !important;
}

/* Show submenu on parent hover - Multiple selectors for compatibility */
.nav-links li:hover > .sub-menu,
.nav-links li:hover > ul,
.nav-links li:hover > ul.sub-menu,
.nav-links li.menu-item-has-children:hover > ul,
.nav-links li:hover > .children {
    display: block !important;
}

/* Submenu items */
.nav-links .sub-menu li,
.nav-links ul ul li,
.nav-links li ul li,
.nav-links .children li {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    float: none !important;
}

/* Submenu links */
.nav-links .sub-menu a,
.nav-links ul ul a,
.nav-links li ul a,
.nav-links .children a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    color: var(--white) !important;
    white-space: nowrap !important;
    border-left: 3px solid transparent !important;
    transition: all 0.3s !important;
    text-align: left !important;
}

.nav-links .sub-menu a:hover,
.nav-links ul ul a:hover,
.nav-links li ul a:hover,
.nav-links .children a:hover {
    background: rgba(212, 165, 116, 0.1) !important;
    border-left-color: var(--accent-amber) !important;
    padding-left: 2rem !important;
    color: var(--accent-amber) !important;
}

/* Dropdown indicator - Multiple selectors */
.nav-links .menu-item-has-children > a::after,
.nav-links li.menu-item-has-children > a::after,
.nav-links li.page_item_has_children > a::after {
    content: ' ▼' !important;
    font-size: 0.7em !important;
    opacity: 0.7 !important;
    margin-left: 0.3rem !important;
}

.cta-button {
    background: var(--accent-amber);
    color: var(--matte-black);
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-amber);
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-amber);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--matte-black);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    cursor: pointer;
/*     width: 100%; */
    text-align: left;
    font-weight: bold;
}

.menu-toggle:hover {
    background: var(--forest-green);
}

.hamburger {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
    transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    left: 0;
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
/*     background: linear-gradient(135deg, var(--forest-green) 0%, var(--matte-black) 100%);
    color: var(--white);
    padding: 10rem 2rem 6rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden; */
	position: relative;
    color: var(--white);
    padding: 12rem 2rem 8rem;
    margin-top: 70px;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* Hero Background Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-carousel-slide.active {
    opacity: 1;
}

/* Dark Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

/* Pattern overlay */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10 L90 10 L90 90 L10 90 Z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    color: var(--accent-amber);
}

.hero-text p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-amber);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Hero Carousel Navigation */
.hero-carousel-prev,
.hero-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 74, 62, 0.7);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background: rgba(45, 74, 62, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-prev {
    left: 30px;
}

.hero-carousel-next {
    right: 30px;
}

/* Hero Carousel Indicators */
.hero-carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-carousel-indicators .indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-carousel-indicators .indicator.active {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
    width: 35px;
    border-radius: 7px;
}

.btn-primary {
    background: var(--accent-amber);
    color: var(--matte-black);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-amber);
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-amber);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--white);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--forest-green);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-amber);
    display: block;
}

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

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--gray-light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--matte-black);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--forest-green);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--matte-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--forest-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--accent-amber);
}

/* Why Choose Us - Updated to single column */
.why-choose {
    padding: 6rem 2rem;
    background: var(--white);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-content h2 {
    font-size: 2.75rem;
    color: var(--matte-black);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.why-choose-content > p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.3rem;
    color: var(--matte-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--gray-medium);
    line-height: 1.7;
}

.why-choose-image {
    background: var(--light-sage);
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: var(--gray-medium);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

/* Emergency Banner */
.emergency-banner {
    background: var(--accent-rust);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.emergency-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.emergency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.phone-number {
    display: inline-block;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    padding: 1rem 3rem;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    transition: all 0.3s;
}

.phone-number:hover {
    background: rgba(0,0,0,0.3);
    transform: scale(1.05);
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background: var(--gray-light);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-carousel-wrapper {
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--forest-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    font-size: 1.5rem;
    color: var(--matte-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Hide carousel controls on desktop */
.process-carousel-prev,
.process-carousel-next,
.process-carousel-indicators {
    display: none;
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .process-carousel-wrapper {
        position: relative;
        overflow: hidden;
        padding-bottom: 60px; /* Space for indicators */
    }
    
    .process-steps {
        display: flex;
        transition: transform 0.4s ease-in-out;
        gap: 0;
        margin-top: 2rem;
    }
    
    .process-step {
        min-width: 100%;
        flex-shrink: 0;
        margin: 0 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }
    
    /* Show carousel controls on mobile */
    .process-carousel-prev,
    .process-carousel-next {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(45, 74, 62, 0.8);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    .process-carousel-prev:hover,
    .process-carousel-next:hover {
        background: rgba(45, 74, 62, 1);
        transform: translateY(-50%) scale(1.1);
    }
    
    .process-carousel-prev {
        left: 10px;
    }
    
    .process-carousel-next {
        right: 10px;
    }
    
    /* Carousel Indicators */
    .process-carousel-indicators {
        display: flex;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
        z-index: 10;
    }
    
    .process-carousel-indicators .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(45, 74, 62, 0.3);
        border: 2px solid rgba(45, 74, 62, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    .process-carousel-indicators .indicator:hover {
        background: rgba(45, 74, 62, 0.6);
        transform: scale(1.2);
    }
    
    .process-carousel-indicators .indicator.active {
        background: var(--accent-amber);
        border-color: var(--accent-amber);
        width: 30px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .process-carousel-prev,
    .process-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
}

/* Footer */
footer {
    background: var(--matte-black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-amber);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-amber);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Page Hero (for service pages) */
.page-hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--matte-black) 100%);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero .location-badge {
    display: inline-block;
    background: var(--accent-amber);
    color: var(--matte-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.breadcrumb a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--forest-green);
}

.breadcrumb span {
    color: var(--forest-green);
    font-weight: 600;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.main-content {
    background: var(--white);
}

/* Intro Section */
.intro-section {
    background: var(--light-sage);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 5px solid var(--forest-green);
}

.intro-section h2 {
    font-size: 2rem;
    color: var(--matte-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Content Section */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2.25rem;
    color: var(--matte-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section > p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--forest-green);
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--matte-black);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-item p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Why Choose List */
.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
}

.why-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1.3rem;
    color: var(--matte-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-text p {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--forest-green);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.contact-card .phone {
    display: block;
    font-size: 1.75rem;
    color: var(--accent-amber);
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.contact-card .phone:hover {
    transform: scale(1.05);
}

.btn-contact {
    display: block;
    background: var(--accent-amber);
    color: var(--matte-black);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-amber);
}

.btn-contact:hover {
    background: transparent;
    color: var(--accent-amber);
}

.info-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
}

.info-card h4 {
    font-size: 1.3rem;
    color: var(--matte-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.5rem 0;
    color: var(--gray-medium);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.related-services {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
}

.related-services h4 {
    font-size: 1.3rem;
    color: var(--matte-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.related-link {
    display: block;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--matte-black);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    font-weight: 500;
}

.related-link:hover {
    background: var(--forest-green);
    color: var(--white);
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--matte-black) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .why-choose-container {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1,
    .page-hero h1 {
        font-size: 2.5rem;
    }

    /* Mobile dropdown adjustments */
    .nav-links .sub-menu,
    .nav-links ul ul {
        position: relative;
        display: none;
        box-shadow: none;
        border-top: none;
        background: rgba(255,255,255,0.05);
        margin-top: 0.5rem;
    }

    .nav-links .menu-item-has-children.open > .sub-menu,
    .nav-links .menu-item-has-children.open > ul {
        display: block;
    }

    .nav-links .sub-menu a,
    .nav-links ul ul a {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
	/* Show hamburger menu on mobile */
    .menu-toggle {
        display: block;
    }
    
    /* Hide navigation by default on mobile */
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    /* Show navigation when active */
    .main-navigation ul.active {
        display: flex;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-navigation a {
        padding: 15px 20px;
    }
	
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding: 8rem 2rem 4rem;
    }
    
    .hero-text h1,
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   IMAGE CAROUSEL STYLES
   Add this to your style.css file
   ======================================== */

/* Carousel Container */
.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Carousel Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Navigation Buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 80, 22, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(45, 80, 22, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators (dots) */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-indicators .indicator.active {
    background: #d4a574;
    border-color: #d4a574;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
/*     .carousel-container {
        height: 350px;
    } */
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-indicators .indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicators .indicator.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
/*     .carousel-container {
        height: 250px;
    } */
}

/* Optional: Add a loading placeholder */
.carousel-slide img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.carousel-slide img[src] {
    background: none;
    animation: none;
}

/* ========================================
   MOBILE HEADER HORIZONTAL LAYOUT FIX
   ======================================== */

/* Mobile header wrapper - keeps logo and menu toggle side-by-side */
.mobile-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Desktop: hide the wrapper effect, let normal nav flow work */
@media (min-width: 769px) {
    .mobile-header-wrapper {
        display: contents; /* Makes wrapper transparent on desktop */
    }
}

/* Mobile: enforce horizontal layout */
@media (max-width: 768px) {
    /* Navigation adjustments */
    nav.main-navigation {
        flex-direction: column;
        padding: 0;
    }
    
    /* Mobile header wrapper - horizontal layout */
    .mobile-header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    /* Logo stays on left, smaller on mobile */
    .logo {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .logo img,
    .custom-logo-link img {
        max-height: 50px !important;
        width: auto;
    }
    
    /* Menu toggle button on right */
    .menu-toggle {
/*         display: flex !important; */
		text-align: end;
        background: transparent;
        margin: 0;
        padding: 10px;
    }
    
    /* Navigation menu (hidden by default on mobile) */
    .main-navigation .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        gap: 0;
    }
    
    /* Show navigation when active */
    .main-navigation .nav-links.active {
        display: flex;
    }
    
    /* Menu items full width on mobile */
    .main-navigation .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-navigation .nav-links a {
        padding: 15px 20px;
        display: block;
    }
}

/* ========================================
   FLOATING MOBILE CALL BUTTON
   ======================================== */
/* Floating Call Button - Mobile Only */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-amber);
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 3px solid var(--white);
    
    /* NEW: Button-specific styles */
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.mobile-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Phone icon inside button */
.mobile-call-button svg {
    width: 28px;
    height: 28px;
    fill: var(--matte-black);
}

/* Alternative: Using text/emoji icon */
.mobile-call-button .call-icon {
    font-size: 28px;
    color: var(--matte-black);
}

/* Pulse animation to grab attention */
.mobile-call-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--accent-amber);
    opacity: 0.4;
    animation: pulse 2s infinite;
    pointer-events: none; /* NEW: Prevent ::before from blocking clicks */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-call-button {
        display: flex;
    }
}

/* Slightly smaller on very small screens */
@media (max-width: 480px) {
    .mobile-call-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .mobile-call-button svg,
    .mobile-call-button .call-icon {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
}

/* Update the service-icon container to handle both images and emojis */
.service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
}

/* Styles specifically for service images */
.service-card .service-icon img.service-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
/*     border-radius: 50%;
    border: 3px solid var(--primary-color); */
	border-radius: 12px; /* Makes images square */
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

/* Hover effect for service images */
.service-card:hover .service-icon img.service-image {
    transform: scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Make sure emoji fallbacks still look good */
.service-card .service-icon:not(:has(img)) {
    font-size: 3rem;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card .service-icon {
        min-height: 60px;
    }
    
    .service-card .service-icon img.service-image {
        width: 150px;
        height: 150px;
    }
}

/* Loading state for images */
.service-card .service-icon img.service-image[loading] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Phone pop-up overlay */
.phone-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.phone-popup-content {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.popup-close:hover {
    color: #000;
}

.phone-popup-content h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
}

.popup-phone-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #2d5016; /* Your forest green */
    text-decoration: none;
    margin: 10px 0;
    padding: 15px;
    border: 2px solid #2d5016;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popup-phone-number:hover {
    background: #2d5016;
    color: white;
    transform: scale(1.02);
}

.popup-subtitle {
    margin: 15px 0 0 0;
    color: #666;
    font-size: 14px;
}

.header-phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin: 0 12px;
	text-decoration: none;
	
}

.header-phone:visited,
.header-phone:hover,
.header-phone:active {
    color: white;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hero {
        padding: 10rem 2rem 6rem;
        min-height: 600px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 2rem 4rem;
        min-height: 500px;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-carousel-prev,
    .hero-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .hero-carousel-prev {
        left: 15px;
    }
    
    .hero-carousel-next {
        right: 15px;
    }
    
    .hero-carousel-indicators {
        bottom: 25px;
    }
}