/* Contact Page Styles */

/* Page Specific Background */
body {
    background: #F3F8FF;
}

#contact-plomberie {
    padding: 80px 20px;
}

#contact-plomberie .wrap {
    max-width: 1200px;
    margin: 0 auto;
}

#contact-plomberie .card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(11, 39, 72, 0.1);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

#contact-plomberie .left h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #0b2748;
}

#contact-plomberie .left p.lead {
    font-size: 17px;
    line-height: 1.6;
    color: #4b5563;
}

#contact-plomberie .photo {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#contact-plomberie .photo img {
    width: 100%;
    display: block;
}

#contact-plomberie label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 15px 0 5px;
    color: #0b2748;
}

#contact-plomberie input,
#contact-plomberie textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 14px;
    font-family: inherit;
    background: #f8fafc;
}

#contact-plomberie .btn-submit {
    width: 100%;
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    background: #0b2748;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

#contact-plomberie .btn-submit:hover {
    background: #2563eb;
}

/* Locate Section */
.batik-locate-wrapper {
    background: #ffffff;
    padding: 60px 20px 100px;
}

.batik-locate-box {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 35px 100px rgba(15, 23, 42, 0.2);
}

.batik-locate {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent),
        linear-gradient(135deg, #264f8f, #1f427b);
    padding: 80px 40px;
    color: #fff;
}

.batik-locate .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.batik-locate h2 {
    font-size: 40px;
    font-weight: 900;
    margin: 0 0 15px;
    color: #ffffff !important;
}

.batik-locate .lead {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ffffff !important;
}

.batik-locate .card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.batik-locate .card h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0 0 5px;
}

.batik-locate .card p {
    margin: 0;
    font-weight: 700;
    font-size: 17px;
}

.batik-locate .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin: 5px 5px 0 0;
}

.batik-locate .cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.batik-locate .cta a {
    display: inline-flex;
    background: #f36b3b;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(243, 107, 59, 0.4);
    transition: 0.3s;
    font-size: 16px;
}

.batik-locate .cta a:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 20px 40px rgba(243, 107, 59, 0.5);
}

.batik-locate .map {
    border-radius: 25px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.batik-locate .map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1100px) {

    #contact-plomberie .card,
    .batik-locate .wrap {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .batik-locate .map {
        height: 350px;
    }
}