/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #00000066;
    font: 20px Roboto, sans-serif;
    margin: 0px 15px;
    padding: 18px 0px;
}

.logo img {
    height: 40px;
    width: 101px;
    height: 29.28px;
}

.header-right {
    display: flex;
    align-items: center;
}

.download-btn {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
    background-color: #f5f5f5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    padding: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-form-container {
    background-color: #fff;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group label span {
    color: #e8002d;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.send-btn {
    background-color: #e8002d;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.send-btn:hover {
    background-color: #c60026;
    transform: translateY(-2px);
}

.input-info {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

/* Floating Action Button */
.chat-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e8002d;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 20px 20px 10px; /* Reduced padding */
}

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

.accordion-item {
    border-bottom: 1px solid #444;
}

.accordion-header {
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: #333;
}

.accordion-header i {
    transition: transform 0.4s ease-in-out;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.accordion-content ul {
    list-style: none;
    padding: 0 0 15px 15px;
    margin: 0;
}

.accordion-content a {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.footer-links {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
}

.footer-apps {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align items */
    gap: 10px;
    text-align: center; /* Ensure text is centered */
}

.footer-apps p {
    font-weight: bold;
    margin: 10px 0 5px;
}

.app-links {
    display: flex;
    gap: 10px;
}

.footer-apps a {
    display: inline-block;
}

.footer-apps a img {
    height: 28px; /* Further reduced size */
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.footer-apps a:hover img {
    transform: scale(1.05);
}

.footer-social {
    margin-top: 30px;
    display: flex;
    justify-content: center; /* Center icons */
    gap: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 18px; /* Reduced size */
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: scale(1.15);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.mobile-nav.open a {
    opacity: 1;
    transform: translateX(0);
}

.language-selector {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.language-selector select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.overlay.show {
    opacity: 1;
    pointer-events: auto;
}


/* Responsive */
@media (max-width: 480px) {
    .footer-apps {
        align-items: center;
        text-align: center;
    }
    .footer-apps a {
        margin: 6px;
    }
}

/* Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #ccc;
}

@media (min-width: 768px) {
    .main-content {
        padding: 40px;
    }

    .contact-form-container {
        padding: 40px;
    }

    .send-btn {
        width: auto;
    }

    .footer-accordion {
        display: none; /* Hide accordion on desktop */
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: start;
    }

    .footer-links,
    .footer-apps,
    .footer-social {
        margin-top: 0;
    }

    .footer-copyright {
        grid-column: 1 / -1; /* Span full width */
    }
}