/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    background-color: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding: 6rem 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 150%, rgba(255, 215, 0, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% -50%, rgba(255, 215, 0, 0.35) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.2s forwards;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.contact-form-wrapper {
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.4s forwards;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(26, 42, 68, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    padding: 0.75rem;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Contact Info Cards */
.contact-info {
    margin-top: 4rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(26, 42, 68, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
}

.contact-card:nth-child(1) {
    animation: fadeUp 0.6s ease-out 0.6s forwards;
}

.contact-card:nth-child(2) {
    animation: fadeUp 0.6s ease-out 0.8s forwards;
}

.contact-card:nth-child(3) {
    animation: fadeUp 0.6s ease-out 1s forwards;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    color: var(--gold);
    font-size: 24px;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.25;
}

.floating-shape.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--gold);
}

.floating-shape.square {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    transform: rotate(45deg);
}

.floating-shape.top-left {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape.top-right {
    top: 15%;
    right: 5%;
    animation: float 6s ease-in-out infinite 1s;
}

.floating-shape.bottom-left {
    bottom: 10%;
    left: 8%;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-shape.bottom-right {
    bottom: 15%;
    right: 8%;
    animation: float 6s ease-in-out infinite 3s;
}

/* Submit Button */
.btn-submit {
    background-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .floating-shape {
        display: none;
    }
}