/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding-top: 80px;
    
    position: relative;
    overflow: hidden;
}

.contact-hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.contact-hero-image img {
    max-width: 80%;
    height: auto;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.contact-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Contact Information Section */
.contact-info {
    background-color: var(--gray-color);
}

.contact-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 1.5rem;
    line-height: 35px;
}

.contact-card .social-links i:hover {
    color: white;
}

.contact-card h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* Contact Form Section */
.form-container {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Social Links in Contact Cards */
.contact-card .social-links {
    margin-top: 1rem;
}

.contact-card .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--gray-color);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.contact-card .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-color) !important;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        text-align: center;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
}

/* Form Button Styles */
.btn-primary {
    color: white;
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.contact-icon {
    color: var(--primary-color);
}