/* Contact Page Styles */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 120px;
}

.contact-content-wrapper {
    display: flex;
    gap: 32px;
}

/* Form Section */
.contact-form-section {
    flex: 2;
    opacity: 0;
    transform: translateX(-20px);
}

.contact-form-section.fade-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.7s cubic-bezier(.4,2,.6,1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--menu-social-hover);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    background: var(--menu-border);
    border: 2px solid #232323;
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--menu-social-hover);
}

.submit-btn {
    background: var(--menu-social-hover);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: #ffc107;
}

/* Info Section */
.contact-info-section {
    flex: 1;
    margin-bottom: 10px;
    /* transform: translateX(20px); */
}

.contact-info-section.fade-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.7s cubic-bezier(.4,2,.6,1);
}

.info-card {
    background: var(--sidebar-bg);
    border-radius: 16px;
    padding: 32px;
}

.info-card h3 {
    color: var(--menu-social-hover);
    font-size: 1.8em;
    margin: 0 0 16px 0;
}

.info-card > p {
    color: var(--dark-text);
    margin-bottom: 32px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--menu-social-hover);
}

.info-text h4 {
    color: var(--dark-text);
    margin: 0 0 4px 0;
}

.info-text p {
    color: var(--dark-text);
    margin: 0;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 48px;
    background: #181818;
    border-radius: 16px;
}

.checkmark {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.checkmark-circle {
    stroke: var(--menu-social-hover);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--menu-social-hover);
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-content-wrapper {
        flex-direction: column;
    }
    
    .info-card {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .submit-btn {
        width: 100%;
    }
}