:root {
    --primary: #1a73e8;
    --secondary: #0d47a1;
    --accent: #ff6d00;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4caf50;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f5f7fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: #ffd54f !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffd54f;
    transition: width 0.3s ease;
}

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

.hero {
    background: linear-gradient(rgba(26, 115, 232, 0.8), rgba(13, 71, 161, 0.9)), url('https://images.unsplash.com/photo-1581581502507-7a484b515e0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.local-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 30px;
    padding: 6px 16px;
    margin: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.local-badge i {
    margin-right: 6px;
}

.btn-primary {
    background: var(--accent);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 109, 0, 0.3);
}

.btn-primary:hover {
    background: #e65100;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 109, 0, 0.4);
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    border-radius: 8px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-card h4,
.service-card p,
.service-icon {
    position: relative;
    z-index: 2;
}

.service-card h4,
.service-card p {
    color: white;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px  1px 0 #000,
        1px  1px 0 #000;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 115, 232, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--primary);
}

.stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 50px 0;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

.footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer h4,
.footer h5 {
    color: #ffd54f;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after,
.footer h5::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent);
    bottom: 0;
    left: 0;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: #ffd54f;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.appointment-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background: #e65100;
    transform: scale(1.05);
    color: #fff;
}

.breadcrumbs {
    background: #eef3fb;
    padding: 12px 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    cursor: pointer;
    position: relative;
    padding-right: 45px;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: #555;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 22px 20px;
}

.coverage-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    padding: 25px;
    height: 100%;
}

.coverage-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.coverage-card li {
    margin-bottom: 8px;
}

.coverage-card li a {
    color: var(--secondary);
    text-decoration: none;
}

.coverage-card li a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.local-context {
    background: #fff;
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.problem-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 22px;
    height: 100%;
    transition: all 0.3s ease;
}

.problem-box:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.problem-box h5 {
    color: var(--secondary);
    font-size: 1.05rem;
}

.problem-box i {
    color: var(--accent);
}

.post-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.tooltip-text {
    visibility: hidden;
    width: 180px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    right: 125%;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }

    .tooltip-text {
        display: none;
    }
}
