﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
}

/* creative page heading with MEP gradient & abstract pattern */
.page-heading {
    /*background: linear-gradient(135deg, #0b2b3b 0%, #1a4a6f 50%, #0f2c3d 100%);*/
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    margin-bottom: 60px;
}

    .page-heading::before {
        content: "";
        position: absolute;
        top: -30%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255,215,130,0.15) 0%, rgba(255,215,130,0) 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .page-heading::after {
        /*content: "⚡🔧💧";*/
        font-size: 140px;
        position: absolute;
        bottom: -20px;
        left: 20px;
        opacity: 0.08;
        font-weight: 400;
        letter-spacing: 20px;
        pointer-events: none;
        white-space: nowrap;
    }

.header-text h6 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(255,255,240,0.2);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    backdrop-filter: blur(2px);
    margin-bottom: 20px;
    margin-top: 20px;
    color: #ffefc0;
}

.header-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    max-width: 700px;
    text-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* contact card area */
.contact-page {
    padding-bottom: 80px;
}

.inner-content {
    background: white;
    border-radius: 48px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.2s;
}

/* map styling */
#map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    filter: brightness(0.98) contrast(1.05);
    transition: 0.3s;
}

.map-wrapper {
    height: 100%;
    background: #eef2ff;
}

/* form styling - modern & fresh */
form {
    padding: 40px 36px 48px 36px;
    background: #ffffff;
}

fieldset {
    border: none;
    margin-bottom: 20px;
}

input, textarea, .custom-check-group {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s;
    background-color: #fefefe;
    outline: none;
    color: #0f172a;
}

    input:focus, textarea:focus {
        border-color: #2c6e9e;
        box-shadow: 0 0 0 3px rgba(44,110,158,0.2);
    }

textarea {
    border-radius: 28px;
    resize: vertical;
    min-height: 120px;
}

/* creative checkbox list (MEP services style) */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    padding: 8px 0 12px;
    margin: 0;
}

    .services-list li {
        flex: 1 0 auto;
        min-width: 110px;
    }

        .services-list li label {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f1f5f9;
            padding: 10px 18px;
            border-radius: 60px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid transparent;
            color: #1e293b;
        }

        .services-list li input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #1f5e8e;
            margin: 0;
            cursor: pointer;
        }

        .services-list li label:hover {
            background: #e6edf4;
            transform: translateY(-2px);
        }

        .services-list li input:checked + span,
        .services-list li:has(input:checked) label {
            background: #e0f0fe;
            border-color: #2c6e9e;
            color: #0c4a6e;
            font-weight: 600;
        }

/* main creative button */
.main-button {
    background: linear-gradient(95deg, #1f5e8e 0%, #154c73 100%);
    border: none;
    padding: 14px 32px;
    border-radius: 44px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px -6px rgba(21,76,115,0.4);
}

    .main-button i {
        font-size: 1.1rem;
    }

    .main-button:hover {
        background: linear-gradient(95deg, #154c73 0%, #0f3a58 100%);
        transform: translateY(-3px);
        box-shadow: 0 18px 30px -8px rgba(21,76,115,0.5);
    }

/* additional micro details */
.contact-info-side {
    background: #f9fbfd;
    padding: 30px;
    border-radius: 28px;
    margin-top: 20px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

    .info-badge i {
        font-size: 28px;
        color: #1f5e8e;
        background: #e9f0f5;
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 60px;
    }

    .info-badge h5 {
        font-weight: 700;
        margin: 0;
        font-size: 1.2rem;
    }

    .info-badge p {
        margin: 0;
        color: #475569;
    }

/* Get In Touch header styling */
.get-in-touch-header h4 {
    font-weight: 700;
    color: #0f2c3d;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

    .get-in-touch-header h4:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #1f5e8e, #6ba9d4);
        border-radius: 3px;
    }

.get-in-touch-header p {
    font-size: 0.95rem;
    margin-top: 12px;
}

@media (max-width: 992px) {
    .page-heading {
        padding: 90px 0 70px;
    }

    .header-text h2 {
        font-size: 2.2rem;
    }

    form {
        padding: 32px 24px;
    }

    .services-list li {
        min-width: 130px;
    }
}
.header-text h6 {
    margin-top: 25px;
}

@media (max-width: 576px) {
    .services-list li {
        flex: 1 1 100%;
    }
    .header-text h6 {
        margin-top: 55px;
    }
}
