* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* WhatsApp Icon */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section Styles */
.contact-section {
    background: #ffffff;
    padding-bottom: 90px;
}

.contact-hero {
    background: linear-gradient(180deg, #3562c9 0%, #1f4fb3 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-title span {
    color: #ff8c00;
}

.contact-subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    color: #e6edff;
    line-height: 1.6;
}

.contact-cards {
    max-width: 1200px;
    margin: -70px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .18);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: #eef2ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-card .highlight {
    color: #ff8c00;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-card span {
    font-size: 13px;
    color: #64748b;
}

@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }
}

@media (max-width: 640px) {
    .contact-title {
        font-size: 28px;
    }
    .contact-cards {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }
    .contact-card {
        padding: 26px 20px;
    }
}

/* New Sections: Why & Who */
.info-highlight-section {
    background: #f8fafc;
    padding: 60px 20px;
}

.info-highlight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.highlight-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.highlight-title span {
    color: #f97316;
}

.highlight-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f97316;
    border-radius: 3px;
}

.guidance-list {
    list-style: none;
    margin-top: 20px;
}

.guidance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #1e293b;
    line-height: 1.5;
}

.guidance-list li i {
    color: #f97316;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.who-list {
    list-style: none;
    margin-top: 20px;
}

.who-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #1e293b;
    line-height: 1.5;
}

.who-list li i {
    color: #2563eb;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .info-highlight-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .highlight-card {
        padding: 28px 24px;
    }
    .highlight-title {
        font-size: 24px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .1);
}

.form-badge {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-title span {
    color: #f97316;
}

.form-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
}

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s ease;
}

.submit-btn:hover {
    background: #1e40af;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    border-radius: 18px;
    padding: 30px;
}

.contact-info-card.blue {
    background: linear-gradient(180deg, #3562c9 0%, #1f4fb3 100%);
    color: #ffffff;
}

.contact-info-card.white {
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .1);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.info-block {
    margin-bottom: 12px;
}

.info-block strong {
    display: block;
    font-size: 13px;
    opacity: .9;
}

.info-block span {
    font-size: 14px;
    font-weight: 600;
}

.business-hours {
    background: #f1f5f9;
    padding: 14px;
    border-radius: 10px;
    font-size: 13px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.contact-info-card.white .info-icon {
    background: #eef2ff;
}

.info-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form-card {
        padding: 28px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-title {
        font-size: 26px;
    }
}

/* Map Section */
.map-section {
    width: 100%;
    background: #ffffff;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .map-wrapper {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .map-wrapper {
        height: 300px;
    }
}

/* Footer */
.bv-footer {
    background: #1f4ea3;
    color: #fff;
    padding-top: 60px;
    font-size: 14px;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 90px;
    margin-bottom: 18px;
    margin-left: 20px;
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-col h3 {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    padding-left: 6px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff7a00;
}

.contact-info i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}