:root {
    --primary-color: #fe5ade;
    --secondary-color: #460080;
    --dark-green: #1e3a2f;
    --light-green: #f1f8f5;
    --white: #ffffff;
    --text-color: #333;
}

.contact-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #fcecfc 0%, #f1f8f5 100%);
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-header-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-header-content .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.contact-header-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(254, 90, 222, 0.2);
    z-index: -1;
}

.contact-header-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form Styling */
.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(70, 0, 128, 0.08);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 2px solid #eee;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group select {
    cursor: pointer;
    color: #666;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    color: #999;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-color);
}

.btn-submit {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(70, 0, 128, 0.2);
}

.btn-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(254, 90, 222, 0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* Info Column Styling */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideInRight 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.info-card:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.info-text p {
    color: #666;
    margin-bottom: 5px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.social-links-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsiveness */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-hero {
        padding-top: 140px;
    }
}

/* Form Status Messages */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-status.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}