/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveGrid 20s linear infinite;
    }

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    color: #F9F6F1;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
}

.hero-subtitle {
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Service Intro */
.service-intro {
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.service-intro h2 {
    font-size: 2.5rem;
    color: #9B8570;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.service-intro p {
    font-size: 1.2rem;
    color: #58595B;
    max-width: 800px;
    margin: 1rem auto;
    font-weight: 300;
    line-height: 1.9;
}

/* Services Grid */
.services-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #9B8570;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #F0E5D9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #C7AD90, #9B8570);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(199, 173, 144, 0.2);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #C7AD90;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-card p {
    color: #58595B;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

    .service-features li {
        color: #58595B;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        font-weight: 300;
    }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #C7AD90;
            font-weight: bold;
        }

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
    padding: 5rem 3rem;
    border-radius: 30px;
    margin: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #F0E5D9;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

    .pricing-card.featured {
        border: 2px solid #C7AD90;
        transform: scale(1.05);
    }

    .pricing-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(199, 173, 144, 0.25);
    }

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C7AD90, #9B8570);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #9B8570;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3rem;
    color: #C7AD90;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #58595B;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .pricing-features li {
        padding: 0.8rem 0;
        color: #58595B;
        font-weight: 300;
        border-bottom: 1px solid #F0E5D9;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

.pricing-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #C7AD90, #9B8570);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .pricing-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(199, 173, 144, 0.3);
    }

/* Contact Methods */
.contact-methods {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #F0E5D9;
    text-align: center;
    transition: all 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(199, 173, 144, 0.15);
    }

    .contact-card h3 {
        font-size: 1.5rem;
        color: #C7AD90;
        margin: 1.5rem 0 1rem;
        font-weight: 400;
    }

    .contact-card p {
        color: #58595B;
        font-weight: 300;
        line-height: 1.8;
    }

    .contact-card a {
        color: #9B8570;
        text-decoration: none;
        font-weight: 400;
        transition: color 0.3s;
    }

        .contact-card a:hover {
            color: #C7AD90;
        }

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
    border-radius: 30px;
    margin: 4rem 0;
    padding: 4rem 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #F0E5D9;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 5px 20px rgba(199, 173, 144, 0.15);
    }

.faq-question {
    font-size: 1.2rem;
    color: #9B8570;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.faq-answer {
    color: #58595B;
    font-weight: 300;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem;
    color: #F9F6F1;
}

    .cta-section h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 300;
        letter-spacing: 3px;
    }

    .cta-section p {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 300;
        line-height: 1.8;
    }

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #9B8570;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-intro h2,
    .section-title,
    .cta-section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}
