:root {
    --background-start: #fff;
    --background-end: #f8f9fa;
    --text-primary: #333;
    --text-secondary: #666;
    --card-background: white;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --accent-primary: #207FAC;
    --accent-hover: #1A6D95;
    
    --accent-light: #5AB1D8;
    --accent-light-hover: #E3F2FD;
    --accent-shadow: rgba(214, 51, 132, 0.3);
    --accent-shadow-hover: rgba(214, 51, 132, 0.5);
    --input-border: #eee;
    --input-background: #f8f9fa;
    --white: white;
    --shimmer: rgba(255, 255, 255, 0.1);
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--background-start), var(--background-end));
    position: relative;
    overflow: hidden;
}

.contact-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--card-background);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--input-border);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--input-background);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 10px var(--accent-light);
}

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

.submit-btn {
    background: var(--accent-primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-shadow);
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--accent-shadow-hover);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--card-background);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--accent-primary);
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
    color: var(--white);
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-secondary);
    margin: 0;
}

.info-card a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    .info-card {
        padding: 25px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Animations */
.contact-form,
.info-card {
    animation: fadeIn 0.8s ease-out;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.contact-form,
.info-card {
    animation: floatCard 4s ease-in-out infinite;
    animation-play-state: paused;
}

.contact-form:hover,
.info-card:hover {
    animation-play-state: running;
}

/* Shimmer Effect */
.contact-form::after,
.info-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, var(--shimmer), transparent);
    transform: rotate(30deg);
    animation: shimmerContact 3s infinite;
    pointer-events: none;
}

@keyframes shimmerContact {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}