.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Section Title */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.section-title p {
    font-size: 1.1rem;
    color: #555;
}

/* Info Boxes */
.info-box {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    position: relative;
}

.info-box i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    transition: transform 0.5s ease;
}

.info-box h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.info-box p a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.info-box p a:hover {
    color: #ffc107;
}

.info-box:hover i {
    transform: rotate(20deg) scale(1.2);
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 30px;
    transition: all 0.3s ease;
}

/* Floating Inputs */
.floating-input {
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 15px 20px;
    transition: all 0.4s ease;
}

.floating-input:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 12px rgba(255,193,7,0.3);
    transform: scale(1.02);
}

/* Gradient Pulse Button */
.btn-gradient {
    background: linear-gradient(45deg, #ffc107, #ff5722);
    color: #fff;
    border: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 10%, transparent 10.01%);
    background-size: 10px 10px;
    opacity: 0;
    transition: all 0.4s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
}

.btn-gradient:hover::after {
    opacity: 1;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(0); opacity: 0.6; }
    50% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Scroll Animations */
.animate-title, .animate-p, .info-box, .contact-form {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s ease-out;
}

.show-animation {
    opacity: 1;
    transform: translateY(0) scale(1);
}
