
#appointmentDateField, #appointmentTimeField {
    transition: all 0.3s;
}
/* ========================================
   Arnold's Landscaping - Custom Styles
   ======================================== */

/* ===== COLOR PALETTE ===== */
:root {
    --primary-color: #1E3A8A;      /* Deep Blue */
    --accent-color: #0db4d1;       /* Emerald Green */
    --lawn-color: #76eb52;       /* Emerald Green */
    --contrast-color: #F59E0B;     /* Warm Amber */
    --bg-color: #F9FAFB;           /* Light Gray */
    --text-color: #111827;         /* Near Black */
    --white: #ffffff;
    --light-gray: #E5E7EB;
    --medium-gray: #6B7280;
    --dark-gray: #374151;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding-top: 110px; /* Account for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: var(--text-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-contrast {
    color: var(--contrast-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-contrast {
    background-color: var(--contrast-color) !important;
}

/* ===== NAVIGATION ===== */
.navbar {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.navbar-brand .logo-img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    font-weight: 500;
}

.btn-accent:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ===== HERO SECTIONS ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(16, 185, 129, 0.3)),
                url('../../assets/img/hero-bg.jpg') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-features {
    position: relative;
    z-index: 3;
}

.feature-highlight {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-lg {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-highlight:hover .feature-icon-lg {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 58, 138, 0.8) 0%, 
        rgba(16, 185, 129, 0.6) 50%, 
        rgba(245, 158, 11, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

/* ===== ABOUT SHOWCASE ===== */
.about-showcase-section {
    position: relative;
    padding: 100px 0;
    background: url('../img/about-us.jpg') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.about-showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(7, 14, 28, 0.95) 0%, rgba(7, 14, 28, 0.75) 40%, rgba(7, 14, 28, 0.35) 65%, rgba(7, 14, 28, 0) 90%);
    z-index: 1;
}

.about-showcase-section .container {
    position: relative;
    z-index: 2;
}

.about-showcase-panel {
    position: relative;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    background: linear-gradient(110deg, rgba(7, 15, 30, 0.98) 0%, rgba(7, 15, 30, 0.85) 55%, rgba(7, 15, 30, 0.55) 85%, rgba(7, 15, 30, 0.2) 100%);
    overflow: visible;
    isolation: isolate;
}

.about-showcase-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(13, 180, 209, 0.35));
    opacity: 0.6;
    z-index: -2;
}

.about-showcase-panel::after {
    content: '';
    position: absolute;
    top: -40px;
    bottom: -40px;
    right: -160px;
    width: 220px;
    background: radial-gradient(circle at left, rgba(13, 180, 209, 0.35), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.about-showcase-title {
    font-size: 2.85rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
    position: relative;
    display: inline-flex;
    flex-direction: column;
}

.about-showcase-title::after {
    content: '';
    height: 1px;
    width: 80%;
    border-radius: 999px;
    margin-top: 1rem;
    background: linear-gradient(90deg, var(--accent-color), rgba(255, 255, 255, 0));
}

.about-showcase-panel .lead,
.about-showcase-panel p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
}

.about-showcase-panel .lead {
    font-size: 1.2rem;
    font-weight: 500;
}

.about-showcase-label {
    display: inline-block;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.about-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 180, 209, 0.15), rgba(245, 158, 11, 0.05));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.about-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 180, 209, 0.6);
}

.about-feature:hover::after {
    opacity: 1;
}

.about-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 25px rgba(13, 180, 209, 0.4);
}

.about-feature h5 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.about-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.about-showcase-open-space {
    min-height: 420px;
}

@media (max-width: 992px) {
    .about-showcase-section {
        padding: 70px 0;
    }
    
    .about-showcase-panel {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .about-showcase-title {
        font-size: 2.2rem;
    }
    
    .about-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

/* ===== CARD STYLES ===== */
.service-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== SERVICE DETAIL CARD TITLES ===== */
.service-detail-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0;
    position: relative;
    transition: color 0.3s ease;
}

.service-detail-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), var(--contrast-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-detail-card:hover .service-detail-title {
    color: var(--accent-color);
}

.service-detail-card:hover .service-detail-title::after {
    width: 80%;
}

/* ===== FEATURE HIGHLIGHTS ===== */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 1rem;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
}

.testimonial-rating {
    color: var(--contrast-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--dark-gray);
}

/* ===== CONTACT FORM ===== */
.form-control {
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--text-color), var(--dark-gray)) !important;
}

/* Improve contrast for muted text inside footer on dark backgrounds */
footer .text-muted,
footer p.text-muted,
footer .text-muted a {
    color: rgba(207, 226, 255, 0.78) !important;
}
footer .text-primary{
    color:#0db4d1 !important;
}
.footer-logo {
    filter: brightness(1.2);
}

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
}

/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border: none;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

#backToTop.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== UTILITY CLASSES ===== */
.shadow-lg-custom {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.rounded-lg {
    border-radius: 15px !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--contrast-color)) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    #backToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== PAGE-SPECIFIC STYLES ===== */
.page-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(16, 185, 129, 0.8)),
                url('../../assets/img/page-bg.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ===== SERVICE DETAILS ===== */
.service-detail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

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

.service-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

/* ===== LAWN-SPECIFIC CLASSES (LAWN CARE PAGE ONLY) ===== */
.lawn-service-detail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 6px solid var(--lawn-color);
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.lawn-service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lawn-color), #34D399, var(--lawn-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lawn-service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
    border-color: var(--lawn-color);
    background: var(--white);
}

.lawn-service-detail-card:hover::before {
    opacity: 1;
}

.lawn-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lawn-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border: 4px solid rgba(16, 185, 129, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.lawn-service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lawn-color), #34D399);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lawn-service-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.lawn-service-icon:hover::after {
    opacity: 1;
}

.lawn-service-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
}

.lawn-service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lawn-color), #34D399);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.lawn-service-detail-card:hover .lawn-service-title {
    color: var(--lawn-color);
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.lawn-service-detail-card:hover .lawn-service-title::after {
     width: 80%;
    height:1px;
}

.lawn-service-list {
    list-style: none;
    padding: 0;
    background: rgba(240, 253, 244, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.lawn-service-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

.lawn-service-list li:hover {
    background: rgba(16, 185, 129, 0.05);
    border-radius: 6px;
    padding-left: 8px;
}

.lawn-service-list li i {
    color: var(--accent-color);
    margin-right: 15px;
    width: 20px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.lawn-service-list li:hover i {
    transform: scale(1.2);
    color: #059669;
}

/* ===== CORNER RIBBON STYLES ===== */
.corner-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    width: 120px;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.corner-ribbon.bg-contrast {
    background-color: var(--contrast-color) !important;
}

.corner-ribbon.bg-primary {
    background-color: var(--primary-color) !important;
}

/* ===== PRICING STYLES ===== */
.pricing {
    position: relative;
    padding: 15px;
    margin: 15px 0;
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    border: 2px solid var(--contrast-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
    transition: all 0.3s ease;
}

.pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.25);
    border-color: #D97706;
}

.pricing .h4 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
    position: relative;
}

.pricing .h4::before {
    content: '💰';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.pricing .text-muted.small {
    font-weight: 600;
    color: #92400E !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-60%);
    }
    60% {
        transform: translateY(-55%);
    }
}

/* ===== IMAGE STYLES ===== */
.img-rounded {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.img-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-overlay:hover::after {
    opacity: 1;
}

/* ===== 3D DESIGN PAGE STYLES ===== */
.design-capability-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 25px !important;
    padding: 2.5rem 2rem !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    transform: translateZ(0) !important;
}

.design-capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.design-capability-card:hover::before {
    left: 100%;
}

.design-capability-card:hover {
    background: rgba(34, 197, 94, 0.3) !important;
    transform: translateY(-15px) scale(1.03) !important;
    border-color: rgba(34, 197, 94, 0.8) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(34, 197, 94, 0.3) !important;
}

.design-capability-card:hover .design-capability-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5) !important;
}

.design-capability-card:hover h4 {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Additional specific selectors for Bootstrap conflict resolution */
.row .col-lg-4 .design-capability-card:hover,
.row .col-md-6 .design-capability-card:hover {
    background: rgba(34, 197, 94, 0.3) !important;
    transform: translateY(-15px) scale(1.03) !important;
    border-color: rgba(34, 197, 94, 0.8) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(34, 197, 94, 0.3) !important;
}

.design-capability-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    font-size: 2.2rem !important;
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Simple test hover - just border change */
.design-capability-card:hover {
    border: 3px solid #ff0000 !important;
}

.design-capability-card h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.design-capability-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== LANDSCAPING HERO SECTION ===== */
.landscaping-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    background: var(--text-color);
}

.landscaping-hero-video {
    position: absolute;
    top: 50%;
    left: 68%;
    width: min(1250px, 95vw);
    height: auto;
    max-height: 95vh;
    object-fit: cover;
    transform: translate(-30%, -50%);
    border-radius: 48px;
    box-shadow: 0 35px 90px rgba(3, 7, 18, 0.45);
    filter: saturate(1.05) brightness(1);
    mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 25%, rgba(0,0,0,0.95) 70%, rgba(0,0,0,0.35) 100%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 25%, rgba(0,0,0,0.95) 70%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    z-index: 0;
}

.landscaping-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(4, 9, 9, 0.95) 0%, rgba(7, 20, 16, 0.85) 28%, rgba(12, 37, 27, 0.55) 52%, rgba(18, 60, 43, 0.3) 70%, rgba(22, 101, 52, 0.18) 100%);

}


.landscaping-hero-accent {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.landscaping-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.btn-landscaping-primary {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-landscaping-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
    color: var(--white);
}

.btn-landscaping-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-landscaping-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-3px);
}

.landscaping-feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    min-height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.landscaping-feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.landscaping-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

/* ===== LANDSCAPING DESIGN PROCESS CARDS ===== */
.landscaping-design-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.92) 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.landscaping-design-card::before {
    content: '';
    position: absolute;
    width: 160%;
    height: 160%;
    top: -80%;
    right: -60%;
    background: radial-gradient(circle at top, rgba(16, 185, 129, 0.4), transparent 65%);
    opacity: 0.35;
    z-index: -1;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.landscaping-design-card::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 26px;
    inset: -5%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
    pointer-events: none;
}

.landscaping-design-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
}

.landscaping-design-card:hover::before {
    opacity: 0.55;
    transform: translate(-5%, 5%) scale(1.05);
}

.landscaping-design-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
}

.landscaping-design-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.landscaping-design-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.landscaping-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* ===== HARDSCAPING HERO SECTION ===== */
.hardscaping-hero-section {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.8), rgba(75, 85, 99, 0.7)),
                url('../../assets/img/hardscaping-hero-bg.jpg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hardscaping-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(55, 65, 81, 0.3);
    z-index: 1;
}

.hardscaping-hero-content {
    position: relative;
    z-index: 2;
}

.hardscaping-hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hardscaping-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hardscaping-hero-accent {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--contrast-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hardscaping-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn-hardscaping-primary {
    background: linear-gradient(135deg, var(--contrast-color), #D97706);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-hardscaping-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

.btn-hardscaping-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hardscaping-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-3px);
}

.hardscaping-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.hardscaping-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
}

.hardscaping-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--contrast-color), #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* ===== HARDSCAPING PROJECT SHOWCASE ===== */
.project-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.project-showcase-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.25);
}

.project-showcase-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.project-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-showcase-card:hover .project-showcase-image img {
    transform: scale(1.05);
}

.project-tag {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    background: rgba(15, 23, 42, 0.75);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.05em;
}

.project-showcase-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.project-showcase-body h5 {
    color: var(--primary-color);
    margin-bottom: 0;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--medium-gray);
}

.project-meta i {
    color: var(--accent-color);
}

.project-feature-chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-feature-chips li {
    background: rgba(13, 180, 209, 0.12);
    color: var(--primary-color);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (min-width: 992px) {
    .project-span-2 {
        grid-column: span 2;
    }
}

/* ===== LAWNCARE HERO SECTION ===== */
.lawncare-hero-section {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.8), rgba(34, 197, 94, 0.6)),
                url('../../assets/img/lawncare-hero-bg.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.lawncare-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 128, 61, 0.2);
    z-index: 1;
}

.lawncare-hero-content {
    position: relative;
    z-index: 2;
}

.lawncare-hero-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.lawncare-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.lawncare-hero-accent {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lawncare-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.lawncare-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.lawncare-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lawncare-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-lawncare-primary {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-lawncare-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
    color: var(--white);
}

.btn-lawncare-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-lawncare-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-3px);
}

.lawncare-approach-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 2;
}

.lawncare-approach-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lawncare-approach-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.lawncare-process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.lawncare-process-step:last-child {
    margin-bottom: 0;
}

.lawncare-process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--white);
    margin-right: 1rem;
    flex-shrink: 0;
}

.lawncare-process-step h5 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.lawncare-process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .landscaping-hero-title,
    .hardscaping-hero-title,
    .lawncare-hero-title {
        font-size: 2.5rem;
    }
    
    .landscaping-hero-accent,
    .hardscaping-hero-accent,
    .lawncare-hero-accent {
        font-size: 2rem;
    }
    
    .landscaping-hero-description,
    .hardscaping-hero-description,
    .lawncare-hero-description {
        font-size: 1.1rem;
    }
}

/* ===== LIGHTBOX LOADING SPINNER ===== */
#lightboxLoadingOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

#lightboxLoadingOverlay.active {
    display: flex;
}

.lightbox-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--primary-color, #1E3A8A);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}