
        header {
            text-align: center !important;
            margin-bottom: 40px;
            padding: 20px 0;
        }
        
        header h1 {
            font-size: 2.8rem;
            color: var(--bs-primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--bs-secondary);
            border-radius: 3px;
        }
        
        header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 30px auto 0;
            line-height: 1.5;
        }
        
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: var(--bs-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(5, 5, 136, 0.15);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: var(--bs-white);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--bs-primary);
            font-size: 1.1rem;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e1e5eb;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--bs-primary);
            background: var(--bs-white);
            box-shadow: 0 0 0 4px rgba(5, 5, 136, 0.15);
        }
        
        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }
        
        .btn-send {
            background: var(--bs-primary);
            color: var(--bs-white);
            border: none;
            padding: 18px 35px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(5, 5, 136, 0.2);
        }
        
        .btn-send:hover {
            background: rgba(5, 5, 136, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(5, 5, 136, 0.3);
        }
        
        .btn-send:active {
            transform: translateY(0);
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: linear-gradient(135deg, var(--bs-primary) 0%, #0a0a7a 100%);
            color: var(--bs-white);
            position: relative;
            overflow: hidden;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: var(--bs-secondary);
            opacity: 0.1;
        }
        
        .contact-info::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--bs-secondary);
            opacity: 0.1;
        }
        
        .location {
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .location h4 {
            /* font-size: 1.6rem; */
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--bs-secondary);
        }
        
        .location h4 i {
            color: var(--bs-secondary);
            /* font-size: 1.8rem; */
        }
        
        .contact-details {
            margin-bottom: 20px;
        }
        
        .contact-details p {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.05rem;
        }
        
        .contact-details i {
            width: 24px;
            color: var(--bs-secondary);
            font-size: 1.2rem;
        }
        
        .divider {
            height: 2px;
            background: rgba(255, 255, 255, 0.15);
            margin: 30px 0;
            position: relative;
            z-index: 1;
        }
        
        .logo {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .logo span {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--bs-primary);
            background: var(--bs-secondary);
            padding: 10px 25px;
            border-radius: 12px;
            display: inline-block;
        }
        .container{padding-top: 5vw !important;}
        @media (max-width: 900px) {
            .container{padding-top: 18vw !important;}
            .contact-wrapper {
                flex-direction: column;
            }
            
            header h1 {
                font-size: 2.3rem;
            }
            
            .contact-form, .contact-info {
                padding: 30px;
            }
        }
        
        @media (max-width: 480px) {
            header h1 {
                font-size: 2rem;
            }
            
            .contact-form, .contact-info {
                padding: 25px 20px;
            }
            
            .btn-send {
                width: 100%;
                justify-content: center;
            }
        }

        /* Minimal additional styles for alerts only */
        .alert {
            padding: 12px 16px;
            border-radius: 6px;
            margin: 16px 0;
            display: none;
            font-weight: 500;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .btn-send:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .loading-spinner {
            display: none;
            margin-right: 8px;
            animation: spin 1s linear infinite;
        }
        
        .btn-send.loading .loading-spinner {
            display: inline-block;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        #alert-sending {
    display: none;
}
