/* Contact Section Start */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.contact-header h1 {
    color: var(--active-teal);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 30px;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.contact-header h1::before {
    content: "";
    position: absolute;
    left: 0%;
    bottom: -8px;
    width: 0px;
    height: 2px;
    background-color: var(--active-teal);
    transition: width 1s ease 0.5s;
}

.contact-header>p {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 15px;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.info-card,
.features-card {
    background: var(--navy);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    opacity: 0;
    box-shadow: 0 20px 60px rgba(28,
            39,
            54, 0.15);
}

.info-card:hover,
.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(28,
            39,
            54, 0.2);
}

.info-card h2,
.features-card h2 {
    font-size: 24px;
    color: var(--active-teal);
    margin-bottom: 24px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.info-item:hover {
    background: var(--bg-dark);
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--active-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.info-details h3 {
    font-size: 14px;
    color: var(--active-teal);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-details p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 15px;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--active-teal);
    border-radius: 50%;
    padding: 4px;
}

.contact-form {
    background: var(--navy);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    flex: 1;
    opacity: 0;
}

.contact-form h2 {
    font-size: 28px;
    color: var(--active-teal);
    margin-bottom: 32px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--active-teal);
    margin: 15px 0px 8px 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    outline: none;
    border: none;
    color: var(--bg-dark);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group .submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--active-teal);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 210, 211, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 210, 211, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

/* Contact Section End */
