/* Contact Highlights */
.contact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
}

.highlight-card {
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
}

.highlight-icon {
    font-size: 40px;
    color: #00aaff;
    margin-bottom: 10px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Contact Info */
.contact-info .info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info span {
    font-size: 22px;
    color: #00aaff;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0d0d0d;
    color: #fff;
}

.contact-form .form-row {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: #00aaff;
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0088cc;
}

/* Map Section */
.map-section {
    margin-top: 40px;
    text-align: center;
}

.map-container {
    margin-top: 15px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* CONTACT PAGE BANNER */
.page-banner.contact-banner {
    position: relative;
    height: 380px;
    background: url("../assets/images/banners/contact-banner-dark.jpg") center/cover no-repeat;
    background-attachment: fixed; /* PARALLAX EFFECT */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
}


/* Dark overlay for readability */
.page-banner.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.85)
    );
    z-index: 1;
}

/* Light sweep animation */
.page-banner.contact-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: contactLightSweep 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes contactLightSweep {
    0% { left: -150%; }
    60% { left: 150%; }
    100% { left: 150%; }
}

/* Banner text */
.page-banner.contact-banner h1,
.page-banner.contact-banner p {
    position: relative;
    z-index: 3;
}

.page-banner.contact-banner h1 {
    font-size: 48px;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 10px;
}

.page-banner.contact-banner p {
    font-size: 18px;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .page-banner.contact-banner {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
}

