:root {
    --primary-blue: #3B82F6;
    --secondary-green: #10B981;
    --accent-orange: #F59E0B;
    --dark: #1F2937;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --trust-blue: #1E40AF;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-bg);
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

/* Navigation */
.navbar-modern {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 1000;
}

.navbar-modern .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-nav {
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
}

.btn-nav:hover {
    background: var(--trust-blue);
    color: var(--white) !important;
}

/* Hero Family */
.hero-family {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero-content-family {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-left h1 {
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
}

.hero-ctas-family {
    display: flex;
    gap: 20px;
}

.btn-primary-family {
    padding: 18px 35px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-family:hover {
    background: var(--trust-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary-family {
    padding: 18px 35px;
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary-family:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.trust-box {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 20px;
    padding: 40px;
}

.trust-box h3 {
    margin-bottom: 25px;
    color: var(--dark);
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px solid var(--light-bg);
}

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

.trust-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.trust-list li div:last-child {
    font-size: 1rem;
    color: var(--dark);
}

/* Problem Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.7;
}

.problem-solution {
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.problem-solution h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.problem-solution p {
    font-size: 1.1rem;
}

/* Services Detail */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-detail-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--light-bg);
    cursor: pointer;
}

.service-icon-detail {
    font-size: 3rem;
    flex-shrink: 0;
}

.service-header h3 {
    color: var(--dark);
    margin: 0;
}

.service-body {
    padding: 30px;
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-col h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.service-col ul {
    list-style: none;
}

.service-col li {
    padding: 10px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}

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

/* How It Works */
.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
}

.step-timeline {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number-timeline {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    z-index: 1;
}

.step-content-timeline {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    flex: 1;
}

.step-content-timeline h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content-timeline p {
    color: var(--gray);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
}

.author-relation {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonial-stars {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: var(--white);
    border: 3px solid var(--gray-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: var(--secondary-green);
    border-width: 4px;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-card h3 {
    margin-bottom: 25px;
    color: var(--dark);
}

.package-price {
    margin-bottom: 30px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 5px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}

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

.package-best-for {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
}

.package-btn {
    display: block;
    padding: 15px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.package-btn:hover {
    background: var(--trust-blue);
    transform: translateY(-2px);
}

.package-note {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 600;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--dark);
    line-height: 1.7;
}

/* Contact Family */
.contact-family {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--trust-blue) 100%);
    color: var(--white);
}

.contact-wrapper-family {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.contact-methods-family {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method-family {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-method-family:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.method-icon-family {
    font-size: 3rem;
    flex-shrink: 0;
}

.method-content {
    text-align: left;
    flex: 1;
}

.method-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.method-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.method-hours {
    font-size: 0.85rem;
    color: var(--gray);
}

.contact-guarantee {
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-guarantee strong {
    color: var(--white);
}

/* Footer */
.footer-modern {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--accent-orange);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content-family {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-ctas-family {
        flex-direction: column;
    }

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

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

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

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

    .package-card.featured {
        transform: scale(1);
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }
}
