* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #222222;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background-color: #0b1d3a;
    color: #ffffff;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 45px;
    width: auto;
}

.site-title {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #00d26a;
}

.cart-badge {
    background-color: #00d26a;
    color: #0b1d3a;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 4px;
}

.page-banner {
    background: linear-gradient(135deg, #0b1d3a, #1a3a68);
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.banner-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    flex: 1;
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-form-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    color: #0b1d3a;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0b1d3a;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group .required {
    color: #d90429;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: #0b1d3a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d26a;
    box-shadow: 0 0 0 3px rgba(0, 210, 106, 0.15);
    background-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    accent-color: #00d26a;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 400;
    color: #334155;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0b1d3a, #1e3a8a);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #00d26a, #00b058);
    color: #0b1d3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 106, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.confirmation-message {
    display: none;
    background: #dcfce7;
    border: 2px solid #86efac;
    color: #166534;
    padding: 16px 20px;
    border-radius: 10px;
    margin-top: 16px;
    font-weight: 600;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.confirmation-message.show {
    display: block;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #0b1d3a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 1.3rem;
    min-width: 30px;
}

.info-list li strong {
    color: #0b1d3a;
    display: block;
    font-size: 0.85rem;
}

.info-list li a {
    color: #0b1d3a;
    text-decoration: none;
    transition: color 0.3s;
}

.info-list li a:hover {
    color: #00d26a;
}


.schedule-list {
    list-style: none;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #334155;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list li span:first-child {
    font-weight: 600;
    color: #0b1d3a;
}

.schedule-list li span:last-child {
    color: #64748b;
}

.social-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    border-color: #dd2a7b;
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.map-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.map-section h2 {
    font-size: 1.6rem;
    color: #0b1d3a;
    margin-bottom: 8px;
}

.map-section p {
    color: #64748b;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.map-placeholder {
    position: relative;
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 29, 58, 0.85);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    width: 90%;
    max-width: 400px;
}

.map-overlay span {
    display: block;
    font-weight: 600;
}

.map-overlay span:last-child {
    font-weight: 400;
    font-size: 0.85rem;
    color: #94a3b8;
}

.faq-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.faq-section h2 {
    font-size: 1.6rem;
    color: #0b1d3a;
    margin-bottom: 25px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00d26a;
    box-shadow: 0 4px 15px rgba(0, 210, 106, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.faq-icon {
    font-size: 1.3rem;
    min-width: 30px;
}

.faq-question h3 {
    font-size: 1rem;
    color: #0b1d3a;
}

.faq-answer {
    color: #475569;
    font-size: 0.92rem;
    padding-left: 42px;
    line-height: 1.6;
}

.faq-answer a {
    color: #00d26a;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #0b1d3a;
    color: #d1d5db;
    padding: 60px 5% 20px 5%;
    margin-top: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #00d26a;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #00d26a;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-name {
    background: #1a3a68;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a3a68;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #0b1d3a;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #00d26a;
}