.glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(254, 243, 199, 0.5);
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
        }
        
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2a7d7b, #f59e0b, #2a7d7b);
            background-size: 200% 100%;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            animation: gradientMove 3s ease infinite;
        }
        
        .glass-card:hover::before {
            transform: scaleX(1);
        }
        
        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(26, 75, 95, 0.25), 0 10px 10px -5px rgba(26, 75, 95, 0.1);
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .pattern-bg {
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(42, 125, 123, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 20%);
            background-size: 300px 300px;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #1a4b5f 0%, #d97706 50%, #2a7d7b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .contact-icon {
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, #2a7d7b, #1a4b5f);
        }
        
        .form-input, .form-textarea {
            transition: all 0.3s ease;
        }
        
        .form-input:focus, .form-textarea:focus {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(217, 119, 6, 0.1), 0 2px 4px -1px rgba(217, 119, 6, 0.06);
        }
        
        .submit-btn {
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #2a7d7b, #1a4b5f);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(26, 75, 95, 0.3);
            background: linear-gradient(135deg, #1a4b5f, #1a4b5f);
        }
        
        .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #2a7d7b;
            animation: pulse-slow 2s infinite;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .card-animation {
            animation: slideIn 0.5s ease-out forwards;
        }

        .error-message {
            color: #d97706;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        .error-input {
            border-color: #d97706 !important;
        }