/* Contact Page Styles */

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 120px;
    right: 40px;
    background-color: var(--black);
    color: var(--white);
    padding: 18px 28px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    min-width: 280px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.toast-notification.success {
    background-color: var(--black);
    border-left: 4px solid #4CAF50;
}

.toast-notification.error {
    background-color: var(--black);
    border-left: 4px solid #f44336;
}

.toast-notification-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-notification-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.toast-notification-message {
    flex: 1;
    line-height: 1.4;
}

.toast-notification-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.toast-notification-close:hover {
    opacity: 1;
}

.toast-notification-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .toast-notification {
        top: 100px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
    }
}

.contact-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background-color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--grey-darker);
    letter-spacing: 1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background-color: var(--white);
}

.section-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grey-medium);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    padding: 12px 15px;
    border: 1px solid var(--grey-medium);
    background-color: var(--white);
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Gothic A1', sans-serif;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-submit-button {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 40px;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.contact-submit-button:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Contact Information */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grey-light);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.contact-icon svg {
    filter: grayscale(100%);
}

.contact-info-content h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-info-content p {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-darker);
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 20px 40px;
    }

    .contact-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

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

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info-item {
        flex-direction: column;
        gap: 15px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 100px 15px 30px;
    }

    .contact-title {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

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

    .section-title {
        font-size: 18px;
    }

    .contact-submit-button {
        width: 100%;
    }
}

