﻿.contact-section {
        padding: 60px 0 ;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
.heading-contact {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 700;
    color: #f36d1a;
    margin-bottom: 10px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

    .danger {
        color: red;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .section-header p {
            font-family: "Plus Jakarta Sans", sans-serif !important;
            color: #888888;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.6;
            font-size: 16px;
            font-weight: 400;
        }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .contact-info {
        padding: 8px;
    }



        .contact-info p {
            font-family: "Plus Jakarta Sans", sans-serif !important;
            color: #888888;
            margin-bottom: 20px;
            font-size: 16px;
            font-weight: 400;
        }

    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 18px 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(35, 95, 170, 0.08);
    }




    .info-icon {
        width: 50px;
        height: 50px;
        background: #f36d1a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        color: white;
        font-size: 1.2rem;
    }


    .info-text h4 {
        color: #f36d1a;
        font-size: 15px;
        font-weight: 600;
        margin: 5px;
    }

    .info-text p {
        color: #888888;
        font-size: 14px;
        margin: 0;
    }

    .contact-form {
        background: white;
        padding: 40px;
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(35, 95, 170, 0.08);
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 4px;
        column-gap: 15px;
        margin-bottom: 20px;
    }

    .form-group {
        position: relative;
        margin-bottom: 8px !important;
    }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            color: #f36d1a;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 5px;
        }

    .form-control {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        font-family: "Plus Jakarta Sans", sans-serif !important;
        transition: all 0.3s ease;
        color: #888888;
        box-shadow:none;
    }

        .form-control:focus {
            border-color: #f36d1a;
            box-shadow: none;
        }

        .form-control.error {
            border-color: #dc3545;
            background: #fff5f5;
        }

    .form-group label {
        font-size: 14px;
        font-weight: 400;
    }
    .error-text {
        color: #dc3545;
        font-size: 14px;
        display: none;
    }

    textarea.form-control {
        resize: vertical;
        min-height: 120px;
        font-family: inherit;
    }

    .submit-btn {
        background: #f36d1a;
        color: white;
        border: none;
        padding: 10px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: 100%;
    }



        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

    .success-message {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        color: #155724;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
        border-left: 4px solid #28a745;
        display: none;
    }

    .error-message {
        background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
        color: #721c24;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
        border-left: 4px solid #dc3545;
        display: none;
    }

   @media (max-width: 768px) {
        .contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .contact-form,
        .contact-info {
            padding: 30px 25px;
        }

        .contact-section {
            padding: 60px 0;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }

        .section-header h2 {
            font-size: 1.8rem;
        }

        .contact-form,
        .contact-info {
            padding: 25px 20px;
        }
    }

    .info-icon {
        flex-shrink: 0; /* Prevents the icon from shrinking */
        width: 48px; /* Fixed width */
        height: 48px; /* Fixed height */
    }

        .info-icon svg {
            width: 24px; /* Fixed SVG size */
            height: 24px;
            flex-shrink: 0;
        }