/* Why Us Page Styles */
.why-us-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.why-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.why-us-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-us-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.why-us-hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
}

.why-us-tagline {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Advantages Section */
.why-us-advantages {
    padding: 80px 0;
    background: #f8fafc;
}

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

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
    align-items: start;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.advantage-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.advantage-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.advantage-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.why-us-cta {
    padding: 80px 0;
    background: white;
}

.cta-content {
    text-align: center;
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
    padding: 60px 40px;
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.25);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.cta-subtitle {
    font-size: 20px;
    margin: 0 0 35px 0;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-primary {
    background: white;
    color: #0EA5E9;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #0EA5E9;
}

.cta-contact-info {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.contact-item .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-hero-title {
        font-size: 44px;
    }

    .why-us-hero-subtitle {
        font-size: 20px;
    }

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

    .advantage-card {
        padding: 35px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .why-us-hero {
        padding: 80px 0 60px;
        margin-top: 60px;
    }

    .why-us-hero-title {
        font-size: 36px;
    }

    .why-us-hero-subtitle {
        font-size: 18px;
    }

    .why-us-tagline {
        font-size: 16px;
    }

    .why-us-advantages {
        padding: 50px 0;
    }

    .advantages-grid {
        gap: 20px;
    }

    .advantage-card {
        flex-direction: column;
        padding: 30px 25px;
        text-align: center;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .advantage-icon .dashicons {
        font-size: 35px;
        width: 35px;
        height: 35px;
    }

    .advantage-title {
        font-size: 20px;
    }

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

    .why-us-cta {
        padding: 50px 0;
    }

    .cta-content {
        padding: 45px 30px;
        border-radius: 20px;
    }

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

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
        font-size: 16px;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

    .contact-item {
        font-size: 14px;
    }
}
