/* Full Home Deep Cleaning Service Page Styles */

/* CSS Custom Properties for Green Theme */
:root {
    --primary-green: #22c55e;
    --dark-green: #16a34a;
    --darker-green: #166534;
    --light-green: #dcfce7;
    --very-light-green: #f0fdf4;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --text-dark: #1e293b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    min-height: 100vh;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--dark-green);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--light-green);
    color: var(--dark-green);
    border-left-color: var(--primary-green);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main {
    min-height: calc(100vh - 80px);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--very-light-green);
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.breadcrumb-current span {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb-separator svg {
    fill: var(--gray);
}

/* Hero Section */
.hero {
    padding: 2rem 0;
    background-color: var(--very-light-green);
}

.hero-content {
    text-align: center;
}

.hero-image {
    display: block;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Service Details Section */
.service-details {
    padding: 4rem 0;
    background: var(--white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-accordion {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--light-green);
}

.accordion-header.active {
    background: var(--light-green);
    color: var(--dark-green);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    margin-right: 1rem;
    flex-shrink: 0;
}

.accordion-arrow {
    width: 24px;
    height: 24px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content.show {
    padding: 1rem 1.25rem;
    max-height: 1000px;
}

.accordion-content p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.tab-button {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    min-height: 2rem;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-duration {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    min-height: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    min-width: 16px;
    margin-top: 2px;
}

.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    min-height: 48px;
}

.plan-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: var(--white);
}

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

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

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    margin: 2rem;
    position: relative;
    color: var(--white);
    text-align: center;
    border-radius: 2rem;
    overflow: hidden;
    background-image: url('../assets/home-clean-cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-button {
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary-green);
}

.cta-button.primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) and (min-width: 769px) {
    .pricing-cards {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .pricing-card {
        min-height: 420px;
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 2.4rem;
        min-height: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

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

    .nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 1rem;
        border-radius: 8px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .pricing-tabs {
        flex-direction: row;
        max-width: 300px;
        padding: 0.3rem;
        margin-bottom: 1.5rem;
    }

    .tab-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 auto;
        max-width: 100%;
        padding: 0 5px;
    }

    .pricing-card {
        min-height: 380px;
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2.2rem;
        min-height: 2.8rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

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

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-tabs {
        max-width: 280px;
        margin-bottom: 1rem;
    }

    .pricing-container {
        padding: 0 8px;
    }

    .tab-button {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

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

    .hero-container,
    .details-container,
    .pricing-container,
    .process-container,
    .cta-container,
    .footer-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 4rem 0;
    }
}

/* Button text capitalization override */
.btn {
    text-transform: none !important;
}
