
        /* Section Wrapper */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fb 0%, #eef1f6 100%);
            font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1140px;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Title */
        .contact .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact .section-title h4 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }

        .contact .section-title h4::after {
            content: "";
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #007bff, #3ba0ff);
            display: block;
            margin: 15px auto 0;
            border-radius: 10px;
        }

        .contact .section-title p {
            color: #6c757d;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Form Container */
        .contact .form-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .contact .form-info {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #007bff 0%, #3ba0ff 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact .form-info h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .contact .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .contact .php-email-form {
            flex: 2;
            min-width: 350px;
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .contact .php-email-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #007bff, #3ba0ff);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .contact .php-email-form:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .contact .php-email-form:hover::before {
            transform: scaleX(1);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .contact .php-email-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #495057;
            font-size: 0.95rem;
        }

        /* Input & Textarea */
        .contact .php-email-form input,
        .contact .php-email-form textarea {
            border: 1.5px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px 20px;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s;
            background-color: #fafafa;
        }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
            outline: none;
            background-color: #fff;
        }

        /* File Upload */
        .contact input[type="file"] {
            border: 2px dashed #007bff;
            background: #f0f7ff;
            cursor: pointer;
            padding: 20px;
            transition: all 0.3s;
        }

        .contact input[type="file"]:hover {
            background: #e6f2ff;
            border-color: #0056b3;
        }

        /* Button */
        .contact .php-email-form button[type="submit"] {
            background: linear-gradient(135deg, #007bff 0%, #3ba0ff 100%);
            border: none;
            border-radius: 12px;
            padding: 16px 35px;
            font-size: 17px;
            font-weight: 600;
            color: #fff;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .contact .php-email-form button[type="submit"]:hover {
            background: linear-gradient(135deg, #0056b3 0%, #2a8cff 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
        }

        .contact .php-email-form button[type="submit"]:active {
            transform: translateY(0);
        }

        /* Messages */
        .contact .loading,
        .contact .error-message,
        .contact .sent-message {
            font-size: 15px;
            margin-top: 20px;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            display: none;
        }

        .contact .sent-message {
            background: #e6ffed;
            color: #28a745;
            font-weight: 600;
            border: 1px solid #b7eb8f;
        }

        .contact .error-message {
            background: #fff2f0;
            color: #dc3545;
            font-weight: 600;
            border: 1px solid #ffccc7;
        }

        .contact .loading {
            background: #f0f7ff;
            color: #007bff;
            font-weight: 600;
            border: 1px solid #91d5ff;
        }

        /* Animation for form elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-group {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }
        .form-group:nth-child(6) { animation-delay: 0.6s; }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .contact .form-container {
                flex-direction: column;
            }
            
            .contact {
                padding: 60px 0;
            }
            
            .contact .section-title h4 {
                font-size: 2rem;
            }
        }

