/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.site-logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 1px;
    font-family: 'Inter', Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0056D2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0056D2;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #0056D2;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #0056D2;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: #0056D2;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #0056D2;
    color: white;
}

.btn-primary:hover {
    background: #0043a6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 86, 210, 0.3);
}

.btn-secondary {
    background: #FFD700;
    color: #333;
}

.btn-secondary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: #333;
}

.badge i {
    color: #0056D2;
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056D2, #007bff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #0056D2;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #333;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #0056D2;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0056D2, #007bff);
    color: white;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.quote-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-feature i {
    color: #FFD700;
    font-size: 1.2rem;
}

.quote-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056D2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
    height: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.checkbox-group label a {
    color: #0056D2;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group textarea:valid,
.form-group select:valid {
    border-color: #28a745;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0056D2;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.call {
    background: #0056D2;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .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: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-contact {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .feature-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .quote-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, #0056D2 0%, #007bff 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 70px;
}
.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* --- About Page --- */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin: 60px 0;
}
.about-text {
    flex: 1 1 350px;
}
.about-image {
    flex: 1 1 350px;
    text-align: center;
}
.about-image img {
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.stat h3 {
    color: #0056D2;
    font-size: 2rem;
    font-weight: 700;
}
.stat p {
    color: #666;
    font-size: 1rem;
}

.mission-vision .mv-grid {
    display: flex;
    gap: 2rem;
    margin: 60px 0;
    flex-wrap: wrap;
}
.mv-card {
    flex: 1 1 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    padding: 2rem;
    text-align: center;
}
.mv-icon {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 40px;
}
.value-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.value-icon {
    font-size: 2rem;
    color: #0056D2;
    margin-bottom: 1rem;
}

.team-section .team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.team-member {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    padding: 1.5rem;
    text-align: center;
    flex: 1 1 220px;
    max-width: 260px;
}
.member-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.position {
    color: #0056D2;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-section .office-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 60px 0;
}
.office-info {
    flex: 1 1 350px;
}
.office-map {
    flex: 1 1 350px;
}
.office-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}
.office-detail i {
    color: #FFD700;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

/* --- Services Page --- */
.services-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.tab-btn {
    background: #f8f9fa;
    color: #0056D2;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.tab-btn.active, .tab-btn:hover {
    background: #0056D2;
    color: #fff;
}
.service-category {
    display: none;
}
.service-category.active {
    display: block;
}
.service-detail {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    margin-bottom: 2.5rem;
    padding: 2rem;
}
.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-header .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056D2, #007bff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}
.service-title h2 {
    font-size: 1.5rem;
    color: #0056D2;
    margin-bottom: 0.3rem;
}
.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.service-info, .service-types, .service-plans, .service-plans, .service-features, .loan-types, .card-types, .investment-options {
    flex: 1 1 250px;
}
.type-cards, .plan-cards, .loan-types, .card-types, .investment-options {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.type-card, .plan-card, .loan-card, .card-type, .investment-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.2rem;
    flex: 1 1 180px;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.type-card i, .loan-icon, .service-icon i {
    font-size: 1.5rem;
    color: #0056D2;
    margin-bottom: 0.5rem;
}
.plan-price {
    color: #FFD700;
    font-weight: 600;
    margin-top: 0.5rem;
}
.eligibility h5 {
    color: #0056D2;
    margin-bottom: 0.2rem;
}

/* --- Contact Page --- */
.contact-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.contact-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.contact-form-wrapper {
    flex: 2 1 350px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    padding: 2rem;
    margin-bottom: 2rem;
}
.contact-form h2 {
    margin-bottom: 1rem;
}
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-row .form-group {
    flex: 1 1 150px;
}

/* Contact form specific styles */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .checkbox-group {
    margin-bottom: 1rem;
}
.contact-info {
    flex: 1 1 250px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    padding: 2rem;
    margin-bottom: 2rem;
}
.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}
.info-item i {
    color: #FFD700;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}
.map-section {
    padding: 40px 0 0;
}
.map-container iframe {
    width: 100%;
    border-radius: 15px;
    border: none;
}

/* --- Blog Page --- */
.blog-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}
.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
}
.blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
}
.blog-content h3 {
    font-size: 1.2rem;
    color: #0056D2;
    margin-bottom: 0.5rem;
}
.read-more {
    color: #0056D2;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.read-more:hover {
    text-decoration: underline;
}

/* --- FAQ Page --- */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.faq-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.faq-category {
    background: #fff;
    color: #0056D2;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.faq-category.active, .faq-category:hover {
    background: #0056D2;
    color: #fff;
}
.faq-group {
    display: none;
}
.faq-group.active {
    display: block;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #0056D2;
    font-size: 1.1rem;
    background: #f8f9fa;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #e9ecef;
}
.faq-answer {
    padding: 1.2rem 1.5rem;
    color: #333;
    display: none;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-question i {
    transition: transform 0.3s;
}

.faq-cta {
    background: linear-gradient(135deg, #0056D2, #007bff);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.faq-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.faq-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-feature i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .about-content, .office-section .office-content, .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    .team-section .team-grid {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .page-header {
        padding: 70px 0 30px;
    }
    .about-image img {
        max-width: 100%;
    }
    .blog-image img {
        height: 120px;
    }
    .faq-question, .faq-answer {
        padding: 1rem;
    }
    .contact-form-wrapper, .contact-info {
        padding: 1rem;
    }
    .site-logo {
        height: 32px;
        width: 32px;
    }
    .site-title {
        font-size: 1.2rem;
    }
}

/* --- Modern Services Section --- */
.services-main {
    padding: 60px 0 0;
    background: #f8f9fa;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.service-card-main {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.service-card-main:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 16px 40px rgba(0,86,210,0.13);
}
.service-icon-main {
    font-size: 2.8rem;
    color: #0056D2;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #e3f0ff 60%, #fff 100%);
    border-radius: 50%;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 2px 8px rgba(0,86,210,0.07);
}
.service-card-main h2 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.service-card-main p {
    color: #444;
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
}
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem 0;
}
.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #0056D2;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}
.service-features-list i {
    color: #FFD700;
    font-size: 1.1rem;
}
.service-badges {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}
.badge {
    background: #e3f0ff;
    color: #0056D2;
    border-radius: 20px;
    padding: 0.35rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.badge i {
    color: #FFD700;
    font-size: 1.1rem;
}
.service-quote {
    font-style: italic;
    color: #444;
    background: #f6faff;
    border-left: 4px solid #0056D2;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card-main {
        padding: 2rem 1.2rem 1.5rem 1.2rem;
    }
}

/* --- Enhanced CTA Section --- */
.enhanced-cta {
  background: linear-gradient(135deg, #0056D2 60%, #007bff 100%);
  color: #fff;
  padding: 70px 0 60px 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(0,86,210,0.10);
}
.enhanced-cta .cta-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.enhanced-cta .cta-content p {
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  color: #e3e9f6;
}
.enhanced-cta .cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-main {
  background: #FFD700;
  color: #0056D2;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-main:hover {
  background: #ffe066;
  color: #003a8c;
  transform: translateY(-2px) scale(1.04);
}
.btn-cta-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-whatsapp i {
  margin-right: 0.6rem;
  font-size: 1.2rem;
}
.btn-cta-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  .enhanced-cta .cta-content h2 {
    font-size: 1.3rem;
  }
  .enhanced-cta .cta-content p {
    font-size: 1rem;
  }
  .enhanced-cta .cta-buttons {
    flex-direction: column;
    gap: 0.7rem;
  }
  .btn-cta-main, .btn-cta-whatsapp {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem 0;
  }
}

.services-overview .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.contact-action-buttons {
    display: flex;
    gap: 1.2rem;
    margin: 1.5rem 0 0 0;
    max-width: 420px;
    width: 100%;
}
.contact-info {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}
.contact-btn {
    flex: 1 1 0;
    text-align: center;
    font-size: 1.08rem;
    padding: 1rem 0.5rem;
    border-radius: 30px;
    font-weight: 700;
    min-width: 140px;
    max-width: 200px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
@media (max-width: 600px) {
    .contact-action-buttons {
        flex-direction: column;
        gap: 0.7rem;
        max-width: 100%;
    }
    .contact-btn {
        max-width: 100%;
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 0;
    }
} 