        .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            padding: 80px 0;
            position: relative;
        }
        
        .contact-header {
            color: #C4C904;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .contact-description {
            color: #6c757d;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 3rem;
        }
        
        .form-container {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 3px solid transparent;
            background-clip: padding-box;
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: white;
            border-radius: 28px;
            z-index: -1;
            background-size: 400% 400%;
            animation: borderFlow 4s ease-in-out infinite;
        }
        
        @keyframes borderFlow {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 15px 20px;
            font-size: 1rem;
            background: #f8f9fa;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .form-control:focus {
            border-color: #ffd700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
            background: #fff;
            transform: translateY(-2px);
        }
        
        .form-control::placeholder {
            color: #9ca3af;
            font-weight: 500;
        }
        
        .input-group {
            position: relative;
            margin-bottom: 20px;
        }
        
        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            z-index: 2;
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-check {
            margin: 25px 0;
        }
        
        .form-check-input {
            width: 20px;
            height: 20px;
            border-radius: 6px;
            border: 2px solid #e9ecef;
            margin-right: 12px;
        }
        
        .form-check-input:checked {
            background-color: #1c6107;
            border-color: #093d02;
        }
        
        .form-check-label {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #6c757d, #495057);
            border: none;
            border-radius: 12px;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(108, 117, 125, 0.4);
            background: linear-gradient(135deg, #495057, #343a40);
        }
        
        .submit-btn::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .submit-btn:hover::after {
            transform: translateX(5px);
        }
        
        .contact-info {
            text-align: left;
            padding-right: 40px;
        }
        
        .section-badge {
            display: inline-block;
            background: rgba(255, 107, 71, 0.1);
            color: #C4C904;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
        }
        
        .social-link:hover {
            background: #ffd700;
            color: #333;
            transform: translateY(-3px);
            border-color: #ffd700;
        }
        
        .terms-link {
            color: #007bff;
            text-decoration: none;
        }
        
        .terms-link:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .contact-header {
                font-size: 2rem;
            }
            
            .contact-info {
                text-align: center;
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
        }