/* ================= GLOBAL ================= */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
    color: #0e1625;
}

.contact-number {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-number:hover {
    color: #000; /* stays black on hover */
}

/* ================= HERO ================= */

.contact-hero {
    position: relative;
    height: 90vh;
    background: url('../images/contact.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Blue overlay */

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30,167,215,0.85),
        rgba(14,92,130,0.85)
    );
}

/* Content */

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.phone-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1ea7d7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.phone-btn:hover {
    background: #0e5c82;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,167,215,0.3);
}



/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 120px 20px;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* ================= LEFT FORM ================= */

.contact-form-box {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    border-radius: 15px;
    background: #ffffff;
    transition: all 0.4s ease;
}
.contact-form-box:hover {
    box-shadow: 0 40px 100px rgba(30,167,215,0.15);
}

.contact-form-box h2 {
    font-size: 28px;
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
}

.contact-form-box h2::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    left: 0;
    bottom: -5px;
    background-color: #007bff;
    transition: 0.3s ease;
}

.contact-form-box h2:hover {
    color: #007bff;
}

.contact-form-box h2:hover::after {
    width: 100%;
}

/* INPUTS */

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid #e0edf5;
    border-radius: 12px;
    font-size: 14px;
    background: #f8fbfe;
    transition: 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #1ea7d7;
    box-shadow: 0 0 0 3px rgba(30,167,215,0.15);
    background: #ffffff;
}

/* BUTTON */

.contact-form-box button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1ea7d7, #0e5c82);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.contact-form-box button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(30,167,215,0.3);
}

/* ================= RIGHT INFO ================= */

.contact-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* INFO CARD */

.info-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30,167,215,0.08);
    transition: 0.4s ease;
}

.info-card:hover {
    background: #1ea7d7;
    transform: translateY(-6px);
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    color: #6c7a89;
    font-size: 14px;
    transition: 0.3s ease;
}

.info-card:hover h4,
.info-card:hover p {
    color: #ffffff;
}
/* WhatsApp number color black */
a[href*="wa.me"] {
    color: #000000;
    text-decoration: none; /* optional */
}

/* ================= MAP ================= */

.map-box {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(30,167,215,0.15);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}




/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #0e1625, #162c46);
    color: #ffffff;
    padding-top: 100px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col {
    text-align: center;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #1ea7d7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1ea7d7;
    padding-left: 5px;
}



/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1ea7d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #1ea7d7;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0b1220;
    color: #9aa5b1;
    font-size: 14px;
}

.nav-links a.active {
    color: #1ea7d7;
    font-weight: 600;
}


.contact-info-footer li {
    justify-content: center;
}

.contact-info-footer li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info-footer i {
    color: #1ea7d7;
    width: 18px;
}

.contact-info-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.contact-info-footer a:hover {
    color: #1ea7d7;
}
