/* ===== THAT DEEP CLEANING CO. - COMPLETE WITH GOLDEN GREEN COLOR SCHEME ===== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Main Navigation with Golden Green */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #2d3e50;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 12px;
    transition: color 0.2s;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: #9ACD32; /* Golden Green */
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: #f8fafc;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumbs-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.breadcrumbs-list li {
    font-size: 0.9rem;
    color: #4a5a6a;
    list-style: none;
}

.breadcrumbs-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #ccc;
}

.breadcrumbs-list a {
    color: #9ACD32; /* Golden Green */
    text-decoration: none;
}

.breadcrumbs-list a:hover {
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #9ACD32; /* Golden Green */
    color: white;
    border-color: #9ACD32;
}

.btn-primary:hover {
    background: #7CB82F; /* Darker Golden Green */
}

.btn-outline {
    background: transparent;
    color: #2d3e50;
    border-color: #9ACD32; /* Golden Green */
}

.btn-outline:hover {
    background: #F0F7DA; /* Light Golden Green tint */
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #F0F7DA 0%, #ffffff 100%); /* Light Golden Green tint */
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #4a5a6a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAGE HEADER WITH TOPPICTURE1.JPG ===== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/toppicture1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header p {
    font-size: 1.3rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ===== SERVICE GRID ===== */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2d3e50;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    margin: 0;
}

.service-card h3 a {
    text-decoration: none;
    color: #1e293b;
}

.service-card h3 a:hover {
    color: #9ACD32; /* Golden Green */
}

.service-card p {
    padding: 0 20px 15px;
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.service-link {
    display: inline-block;
    margin: 0 20px 25px;
    color: #9ACD32; /* Golden Green */
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.service-link:hover {
    border-bottom-color: #9ACD32; /* Golden Green */
}

/* ===== WHY CHOOSE US SECTION - LIME GREEN BACKGROUND ===== */
.why-choose-us {
    padding: 60px 0;
    background: #E9F7CF; /* Light lime green - not too dark */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 60px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #9ACD32; /* Golden Green */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-card p {
    font-style: italic;
    color: #4a5a6a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-card h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-date {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
    padding: 40px 0 60px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: block;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    list-style: none;
}

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

.service-features li::before {
    content: "✓";
    color: #9ACD32; /* Golden Green */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0 60px;
}

.contact-info h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info a {
    color: #9ACD32; /* Golden Green */
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Details Box - Lime Green */
.contact-details {
    background: #E9F7CF; /* Light lime green - not too dark */
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
}

.contact-details p {
    margin-bottom: 15px;
    color: #2d3e50; /* Darker text for contrast */
}

/* Areas We Serve Box - Lime Green (lighter) */
.contact-info > div:last-child {
    background: #F0F7DA; /* Even lighter lime green */
    padding: 25px;
    border-radius: 8px;
}

.contact-info > div:last-child h3 {
    color: #2d3e50;
    margin-bottom: 15px;
}

.contact-info > div:last-child p {
    color: #2d3e50;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
}

.contact-form h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #9ACD32; /* Golden Green */
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
}

/* ===== LOCAL FOCUS SECTION - LIME GREEN ===== */
.local-focus {
    background: #E9F7CF; /* Light lime green - not too dark */
    padding: 70px 0;
    text-align: center;
    margin-top: 40px;
}

.local-focus h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3e50;
}

.local-focus p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    color: #2d3e50;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a2b3c;
    color: white;
    padding: 50px 0 30px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-about p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #9ACD32; /* Golden Green */
    text-decoration: underline;
}

.footer-contact p {
    color: #b0c4de;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: #b0c4de;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #9ACD32; /* Golden Green */
}

/* ===== SOCIAL MEDIA ICONS ===== */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.2s ease;
    line-height: 0;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons img {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid #2d3e50;
    padding-top: 30px;
    text-align: center;
    color: #b0c4de;
}

.footer-bottom a {
    color: #b0c4de;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #9ACD32; /* Golden Green */
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: block;
}

.about-text h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a5a6a;
}

/* Proudly Serving Section - already lime green from local-focus class */

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .service-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-grid,
    .features-grid,
    .reviews-grid,
    .service-detail-grid,
    .contact-grid,
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-sub {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-details {
        padding: 20px;
    }
}

/* ===== IMAGE FIXES ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
