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

:root {
    --sage-green: #b8d4c0;
    --sage-light: #d4e8da;
    --sage-dark: #9ab8a3;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.85);
    --border-radius: 24px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--sage-green);
}

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

header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
}

.logo:hover .logo-image {
    filter: drop-shadow(0 3px 6px rgba(255, 255, 255, 1)) brightness(1.1);
}

.company-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-main {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

.company-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--sage-dark);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-link:hover {
    color: var(--sage-dark);
}

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

.btn {
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-explore {
    background: white;
    color: var(--text-dark);
}

.btn-explore:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--text-dark);
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: var(--sage-green) url('hero.webp') center center / cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(184, 212, 192, 0.85);
    z-index: 1;
}

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

.hero-card {
    background: rgba(220, 235, 225, 0.75);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 80px 100px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.tagline-icon {
    fill: var(--text-dark);
}

.hero-title {
    margin-bottom: 30px;
}

.title-bold {
    font-size: 90px;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: 2px;
    display: block;
    margin-bottom: -50px;
}

.title-italic {
    font-size: 90px;
    font-weight: 200;
    font-style: italic;
    line-height: 0.85;
    letter-spacing: 4px;
    display: block;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.professional-cleaning {
    padding: 100px 0;
    background: #d4e8da;
}

.professional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.professional-text {
    padding-right: 40px;
}

.professional-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.professional-badge svg {
    fill: var(--text-dark);
}

.professional-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.professional-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.cleaning-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cleaning-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.cleaning-item .check-icon {
    flex-shrink: 0;
    fill: #9ab8a3;
    transition: all 0.3s ease;
}

.cleaning-item.active .check-icon {
    fill: var(--text-dark);
}

.cleaning-item-content h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cleaning-item.active .cleaning-item-content h4 {
    color: var(--text-dark);
}

.cleaning-item:not(.active) .cleaning-item-content h4 {
    color: #9ab8a3;
}

.cleaning-item-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.professional-image {
    position: relative;
}

.professional-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    color: var(--text-dark);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    stroke: var(--sage-dark);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon svg {
    stroke: var(--text-dark);
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--sage-light) 0%, #e8f4ed 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(154, 184, 163, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 212, 192, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-dark), var(--sage-green));
    border-radius: 2px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 50px;
    margin-top: 30px;
    font-weight: 400;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
    margin-top: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(212, 232, 218, 0.6) 100%);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(154, 184, 163, 0.2);
    font-weight: 500;
    border: 1px solid rgba(154, 184, 163, 0.2);
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(154, 184, 163, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(184, 212, 192, 0.4) 100%);
    border-color: rgba(154, 184, 163, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7ba886 0%, var(--sage-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(123, 168, 134, 0.4);
}

.feature-icon svg {
    stroke: white;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(123, 168, 134, 0.6);
    background: linear-gradient(135deg, var(--sage-green) 0%, #7ba886 100%);
}

.check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7ba886 0%, var(--sage-green) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(123, 168, 134, 0.4);
}

.feature:hover .check {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 5px 15px rgba(123, 168, 134, 0.6);
    background: linear-gradient(135deg, var(--sage-green) 0%, #7ba886 100%);
}

.feature span {
    font-weight: 600;
    line-height: 1.4;
}

.faq {
    padding: 100px 0;
    background: #e8e8e8;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--text-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 35px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 35px 28px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.quote-request {
    padding: 100px 0;
    background: #d4e8da;
}

.quote-card {
    position: relative;
    background: linear-gradient(135deg, #a8d5e2 0%, #b8dce8 100%);
    border-radius: 32px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quote-content {
    flex: 1;
    padding: 60px 80px;
    z-index: 2;
    position: relative;
}

.quote-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-italic {
    font-style: italic;
    font-weight: 300;
}

.quote-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 35px;
    max-width: 500px;
}

.quote-form {
    display: flex;
    align-items: center;
    background: var(--text-dark);
    border-radius: 50px;
    padding: 6px;
    max-width: 450px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.quote-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 24px;
    font-size: 15px;
    color: white;
    outline: none;
}

.quote-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-submit {
    background: #d4e8da;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quote-submit:hover {
    background: #c0dcc8;
    transform: scale(1.05);
}

.quote-submit svg {
    stroke: var(--text-dark);
}

.quote-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-us {
    padding: 100px 0;
    background: white;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--sage-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--sage-green);
    transform: scale(1.05);
}

.contact-icon svg {
    stroke: var(--sage-dark);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.contact-form-wrapper {
    background: var(--sage-light);
    padding: 40px;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(154, 184, 163, 0.3);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-dark);
    box-shadow: 0 0 0 3px rgba(154, 184, 163, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

footer {
    background: #d4e8da;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin: 0;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
}

.social-icon svg {
    fill: white;
    width: 16px;
    height: 16px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 10px 0 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--sage-dark);
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .hero-card {
        padding: 60px 50px;
    }

    .title-bold,
    .title-italic {
        font-size: 60px;
    }

    .section-title {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        padding: 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-card {
        padding: 40px 30px;
    }

    .title-bold,
    .title-italic {
        font-size: 48px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .about-content h2,
    .contact-card h2 {
        font-size: 32px;
    }

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

    .contact-card {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .title-bold,
    .title-italic {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-card {
        padding: 30px 20px;
    }
}
