 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

    :root {
        --primary-color: #ff8c42;
        --primary-hover: #e67a35;
        --secondary-color: #0a1931;
        --bg-light: #f4f7f9;
        --text-muted: #64748b;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: var(--bg-light);
    }

    /* --- CONTACT HEADER --- */
    .contact-header {
        background-color: var(--secondary-color);
        padding: 80px 0;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .contact-header::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: var(--primary-color);
        filter: blur(150px);
        opacity: 0.15;
    }

    .contact-header h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .contact-header p {
        font-size: 18px;
        opacity: 0.8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- CONTACT INFO CARDS --- */
    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }

    .info-card {
        background: white;
        padding: 40px 30px;
        border-radius: 25px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(10, 25, 49, 0.05);
        transition: transform 0.3s ease;
        border: 1px solid rgba(0,0,0,0.02);
    }

    .info-card:hover {
        transform: translateY(-10px);
    }

    .icon-box {
        width: 70px;
        height: 70px;
        background: #fff3eb;
        color: var(--primary-color);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin: 0 auto 25px;
    }

    .info-card h3 {
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .info-card p {
        color: var(--text-muted);
        font-weight: 500;
        line-height: 1.6;
    }

    /* --- CONTACT FORM SECTION --- */
    .form-container {
        background: white;
        border-radius: 35px;
        padding: 60px;
        margin-top: 60px;
        box-shadow: 0 40px 100px -20px rgba(10, 25, 49, 0.1);
    }

    .form-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .form-control-custom {
        width: 100%;
        padding: 16px 20px;
        border-radius: 15px;
        border: 2px solid #f1f5f9;
        background: #f8fafc;
        font-size: 16px;
        font-weight: 600;
        color: var(--secondary-color);
        transition: all 0.3s ease;
        margin-bottom: 25px;
    }

    .form-control-custom:focus {
        border-color: var(--primary-color);
        background: white;
        outline: none;
        box-shadow: 0 10px 25px rgba(255, 140, 66, 0.1);
    }

    textarea.form-control-custom {
        height: 150px;
        resize: none;
    }

    .btn-submit {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
        color: white;
        border: none;
        padding: 18px 50px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 12px 30px rgba(255, 140, 66, 0.3);
    }

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
    }

    @media (max-width: 768px) {
        .contact-header h1 { font-size: 36px; }
        .form-container { padding: 30px 20px; }
    }