/* 🌟 Modernized support.css for accounting-support.html 🌟 */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.navbar-brand img {
    max-height: 60px;
}
.navbar-toggler {
    border: none;
}
.phone {
    color: #007bff;
    font-weight: 600;
}
.call-order-btn {
    font-size: 14px;
    padding: 8px 16px;
}
.offcanvas {
    max-width: 300px;
}
.offcanvas-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.nav-link {
    font-size: 18px;
    color: #333 !important;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #007bff !important;
}
.language-switcher .btn {
    font-size: 14px;
    padding: 5px 10px;
}
.lang-btn.active {
    background-color: #007bff;
    color: white;
}
.social-icon {
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}
.social-icon:hover {
    color: #007bff;
}

/* Existing styles */
.country-select {
    display: flex;
    gap: 10px;
    align-items: center;
}

.country-select select {
    max-width: 100px;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
}

.form-label {
    font-weight: 600;
    color: #333;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.form-check-label a {
    color: #007bff;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Styles for form message */
.alert {
    padding: 10px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #047857, #14b8a6);
    color: white;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero .btn {
    padding: 14px 28px;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.services .card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.services .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.services .card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #047857;
}

.services .card-body {
    padding: 2.5rem;
}

.services .card i {
    color: #14b8a6;
}

.services ul li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.services ul li:hover {
    color: #14b8a6;
}

.services ul li i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.services ul li:hover i {
    transform: scale(1.3);
}

.team-expertise .stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-expertise .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.team-expertise h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #047857;
}

.team-expertise p {
    font-size: 1rem;
    color: #4b5563;
}

.case-studies .card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.case-studies .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.case-studies .card-body {
    padding: 2rem;
}

.case-studies .card i {
    color: #14b8a6;
}

.cta-section {
    padding: 60px 20px;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    padding: 14px 28px;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-section .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #f1f1f1;
}
.footer-logo img {
    max-width: 200px;
}
.footer h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #007bff;
}
.footer .phone, .footer .email {
    color: #007bff;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services .card-title {
        font-size: 1.4rem;
    }

    .team-expertise h3 {
        font-size: 1.2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}