

    .contact-page {
        background: #f7f9fc;
    }

    /* Hero */
    .contact-hero {
        background: linear-gradient(135deg, #082567, #0d47a1);
        color: #fff;
        padding: 55px 20px;
        text-align: center;
        margin-top: 12px;
    }

    .contact-hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .contact-hero p {
        max-width: 650px;
        margin: auto;
        font-size: 17px;
        line-height: 1.7;
        color: rgba(255,255,255,.9);
    }

    /* Main section */
    .contact-section {
        padding: 60px 20px;
    }

    .contact-wrapper {
        max-width: 1100px;
        margin: auto;
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 35px;
    }

    /* Left side */
    .contact-info {
        background: #fff;
        padding: 35px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,.07);
    }

    .contact-info h2 {
        color: var(--navy, #082567);
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-info > p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 24px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
        background: #eef5ff;
        color: var(--primary, #0d6efd);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
    }

    .contact-item h4 {
        margin: 0 0 5px;
        color: #222;
        font-size: 16px;
    }

    .contact-item p {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-item a {
        color: #555;
        text-decoration: none;
    }

    .contact-item a:hover {
        color: var(--primary, #0d6efd);
    }

    /* Social */
    .social-links {
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid #eee;
    }

    .social-links h4 {
        margin-bottom: 15px;
        color: #333;
    }

    .social-buttons {
        display: flex;
        gap: 10px;
    }

    .social-buttons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f1f4f8;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .3s;
    }

    .social-buttons a:hover {
        background: var(--primary, #0d6efd);
        color: #fff;
        transform: translateY(-3px);
    }

    /* Form */
    .contact-form-box {
        background: #fff;
        padding: 35px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,.07);
    }

    .contact-form-box h2 {
        color: var(--navy, #082567);
        font-size: 28px;
        margin-bottom: 8px;
    }

    .contact-form-box .form-intro {
        color: #777;
        margin-bottom: 28px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .form-control {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 9px;
        padding: 13px 15px;
        font-size: 14px;
        transition: .3s;
        background: #fafafa;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary, #0d6efd);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(13,110,253,.08);
    }

    textarea.form-control {
        resize: vertical;
        min-height: 130px;
    }

    .btn-send {
        width: 100%;
        border: none;
        padding: 14px 20px;
        border-radius: 9px;
        background: var(--primary, #0d6efd);
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: .3s;
    }

    .btn-send:hover {
        background: #084fc7;
        transform: translateY(-1px);
    }

    /* Map */
    .map-section {
        max-width: 1100px;
        margin: 0 auto 60px;
        padding: 0 20px;
    }

    .map-box {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,.07);
    }

    .map-header {
        padding: 22px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .map-header h3 {
        margin: 0;
        color: var(--navy, #082567);
    }

    .map-header p {
        margin: 5px 0 0;
        color: #777;
        font-size: 14px;
    }

    .map-placeholder {
        height: 300px;
        background:
            linear-gradient(rgba(230,235,240,.8), rgba(230,235,240,.8)),
            repeating-linear-gradient(
                45deg,
                #dce2e7,
                #dce2e7 10px,
                #e8ecef 10px,
                #e8ecef 20px
            );
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #555;
    }

    .map-placeholder i {
        font-size: 40px;
        color: var(--primary, #0d6efd);
        margin-bottom: 10px;
    }

    /* Bottom CTA */
    .contact-cta {
        background: #fff;
        padding: 45px 20px;
        text-align: center;
        border-top: 1px solid #eee;
    }

    .contact-cta h2 {
        color: var(--navy, #082567);
        margin-bottom: 10px;
    }

    .contact-cta p {
        color: #666;
        margin-bottom: 20px;
    }

    .cta-phone {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary, #0d6efd);
        color: #fff;
        padding: 13px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
    }

    .cta-phone:hover {
        color: #fff;
        background: #084fc7;
    }

    /* Responsive */
    @media (max-width: 800px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .contact-hero h1 {
            font-size: 32px;
        }

        .contact-section {
            padding: 40px 15px;
        }

        .map-section {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .contact-info,
        .contact-form-box {
            padding: 25px 20px;
        }

        .contact-hero {
            padding: 40px 15px;
        }

        .contact-hero h1 {
            font-size: 28px;
        }

        .map-header {
            display: block;
        }
    }
