    /* ==================== MODERN CONTACT PAGE ==================== */

    /* Simple Hero */
    .contact-hero-simple {
        padding: 140px 0 80px;
        background: var(--surface);
        text-align: center;
    }

    .contact-hero-simple h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .contact-hero-simple p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto;
    }

    /* Main Contact Section */
    .contact-main {
        padding: 5rem 0;
    }

    .contact-container-modern {
        background: var(--background);
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid var(--border);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 450px 1fr;
        min-height: 600px;
    }

    /* Left Sidebar with Contact Cards */
    /* Left Sidebar with Contact Cards */
    .contact-sidebar {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 3rem 2rem;
        color: white;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .sidebar-header {
        margin-bottom: 1rem;
    }

    .sidebar-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .sidebar-header p {
        opacity: 0.9;
        font-size: 0.95rem;
    }

    /* Contact Method Cards */
    .contact-method-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 1.0rem;
        display: flex;
        align-items: start;
        gap: 1.25rem;
        transition: all 0.3s ease;
    }

    .contact-method-card:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-5px);
    }

    /* Circular Icon */
    .card-icon-circle {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
    }

    /* Card Content */
    .card-content {
        flex: 1;
    }

    .card-content h4 {
        font-size: 1.15rem;
        /* margin-bottom: 0.5rem; */
        font-weight: 600;
    }

    .card-content p {
        font-size: 0.9rem;
        opacity: 0.9;
        /* margin-bottom: 0.75rem; */
        line-height: 1.5;
    }

    .card-content a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: opacity 0.2s;
    }

    .card-content a:hover {
        opacity: 0.8;
    }

    /* Social Links in Sidebar */
    .sidebar-footer {
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sidebar-footer h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .social-links {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.2s;
    }

    .social-link:hover {
        background: white;
        color: #667eea;
        transform: translateY(-3px);
    }


    /* Right Form Area */
    .contact-form-area {
        padding: 3rem;
    }

    .form-header {
        margin-bottom: 2rem;
    }

    .form-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .form-header p {
        color: var(--text-secondary);
    }

    /* Modern Form Styles */
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .input-group {
        position: relative;
    }

    .input-group.full-width {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }

    .input-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.9rem;
    }

    .input-group label .required {
        color: #ef4444;
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-tertiary);
        pointer-events: none;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
        padding: 0.9rem 1rem;
        border: 2px solid var(--border);
        border-radius: 12px;
        background: var(--surface);
        color: var(--text-primary);
        font-family: inherit;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .input-group.has-icon input {
        padding-left: 3rem;
    }

    .input-group input:focus,
    .input-group select:focus,
    .input-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    }

    .input-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    /* Submit Button */
    .submit-btn {
        width: 100%;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 2rem;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

    .submit-btn i {
        transition: transform 0.3s ease;
    }

    .submit-btn:hover i {
        transform: translateX(5px);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .contact-sidebar {
            padding: 2rem;
        }

        .contact-form-area {
            padding: 2rem;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        .trust-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .trust-grid {
            grid-template-columns: 1fr;
        }

        .contact-hero-simple h1 {
            font-size: 2.2rem;
        }
    }

    /* ==================== FORM VALIDATION STYLES ==================== */

    /* Input Group States */
    .input-group {
        position: relative;
        transition: all 0.3s ease;
    }

    /* Error State */
    .input-group.error .input-wrapper {
        border-color: #ef4444;
    }

    .input-group.error .input-wrapper i {
        color: #ef4444;
    }

    .input-group.error label {
        color: #ef4444;
    }

    /* Success State */
    .input-group.success .input-wrapper {
        border-color: #10b981;
    }

    .input-group.success .input-wrapper i {
        color: #10b981;
    }

    /* Input States */
    .input-error {
        border-color: #ef4444 !important;
        background-color: rgba(239, 68, 68, 0.05) !important;
    }

    .input-success {
        border-color: #10b981 !important;
        background-color: rgba(16, 185, 129, 0.05) !important;
    }

    /* Error Message */
    .error-message {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
        font-size: 0.875rem;
        color: #ef4444;
        animation: slideDown 0.3s ease;
    }

    .error-message i {
        font-size: 1rem;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Success Message Popup */
    .form-success-message {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 2rem;
        border-radius: 16px;
        text-align: center;
        margin-bottom: 2rem;
        animation: slideDown 0.3s ease;
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
        transition: opacity 0.3s ease;
    }

    .form-success-message i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .form-success-message h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: white;
    }

    .form-success-message p {
        font-size: 1rem;
        opacity: 0.95;
        margin: 0;
    }

    /* Submit Button Loading State */
    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .submit-btn .fa-spinner {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    /* Required Asterisk */
    .required {
        color: #ef4444;
        margin-left: 4px;
    }

    /* Tooltip for validation (optional) */
    .input-wrapper {
        position: relative;
    }

    .input-group.error .input-wrapper::after {
        content: attr(data-error);
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        background: #ef4444;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .input-group.error .input-wrapper:hover::after {
        opacity: 1;
    }

    /* Dark Mode Support */
    [data-theme="dark"] .input-error {
        background-color: rgba(239, 68, 68, 0.1) !important;
    }

    [data-theme="dark"] .input-success {
        background-color: rgba(16, 185, 129, 0.1) !important;
    }

    [data-theme="dark"] .error-message {
        color: #f87171;
    }

    /* --- TOAST NOTIFICATION STYLES --- */

    /* Container for all toasts */
    #toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Individual Toast Card */
    .toast {
        background: var(--surface, #fff);
        border-left: 4px solid;
        padding: 16px 20px;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 300px;
        max-width: 400px;
        animation: slideInRight 0.3s ease forwards;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Toast Text */
    .toast-content {
        flex: 1;
    }

    .toast-title {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 2px;
        color: #333;
    }

    .toast-message {
        font-size: 0.875rem;
        color: #666;
        margin: 0;
    }

    /* Toast Icons */
    .toast i {
        font-size: 1.25rem;
    }

    /* Success Variant */
    .toast.success {
        border-left-color: #10b981;
    }

    .toast.success i {
        color: #10b981;
    }

    /* Error Variant */
    .toast.error {
        border-left-color: #ef4444;
    }

    .toast.error i {
        color: #ef4444;
    }

    /* Animation Keyframes */
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(100%);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideOutRight {
        to {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    /* Dark Mode Support (Optional, based on your code) */
    [data-theme="dark"] .toast {
        background: #1f2937;
    }

    [data-theme="dark"] .toast-title {
        color: #fff;
    }

    [data-theme="dark"] .toast-message {
        color: #aaa;
    }