/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Header */
.contact-header-section {
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(24, 26, 31, 0.98) 100%);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(209, 47, 47, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.contact-header-subtitle {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.contact-header-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.contact-header-title .contact-accent {
    color: var(--color-accent);
}

.contact-header-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(243, 244, 246, 0.8);
}

/* Main Content */
.contact-main-section {
    background-color: var(--color-primary);
    padding: 80px 0;
    min-height: calc(100vh - 300px);
    position: relative;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 20%, 
        rgba(255, 255, 255, 0.05) 80%, 
        transparent 100%);
    pointer-events: none;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Contact Info */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Contact Cards */
.contact-card-new {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background-color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-card-new:hover {
    border-color: rgba(209, 47, 47, 0.3);
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-card-icon-new {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(209, 47, 47, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 16px;
}

.contact-card-content-new {
    margin-left: 12px;
    flex: 1;
}

.contact-card-title-new {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3px;
}

.contact-card-subtitle-new {
    font-size: 12px;
    color: rgba(243, 244, 246, 0.6);
    margin-bottom: 6px;
}

.contact-card-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-card-info-new {
    color: var(--color-white);
    font-weight: 500;
    font-size: 14px;
    margin-top: 4px;
}

/* Opening Hours */
.opening-hours-card-new {
    background-color: var(--color-secondary);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.opening-hours-card-new::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}

.opening-hours-title-new {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.opening-hours-title-new i {
    color: var(--color-accent);
    font-size: 18px;
}

.opening-hours-content-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.opening-hours-row-new {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-hours-row-new:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opening-hours-day-new {
    font-size: 14px;
    color: rgba(243, 244, 246, 0.7);
}

.opening-hours-time-new {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.opening-hours-note-new {
    padding: 16px;
    background-color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.opening-hours-note-new i {
    color: var(--color-accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.opening-hours-note-new p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(243, 244, 246, 0.7);
    margin: 0;
}

.opening-hours-note-new strong {
    color: var(--color-white);
    font-weight: 700;
}

/* Contact Form */
.contact-form-column {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background-color: var(--color-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.contact-form-title-new {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: rgba(243, 244, 246, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

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

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 8px;
    display: block;
}

.form-label .required {
    color: var(--color-accent);
    margin-left: 2px;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 12px;
    color: rgba(243, 244, 246, 0.4);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.form-input-wrapper .form-input {
    padding-left: 40px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-primary);
    border-radius: 6px;
    transition: var(--transition-normal);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-accent);
    background-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(209, 47, 47, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(243, 244, 246, 0.4);
}

.form-textarea {
    padding-left: 16px;
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Select Dropdown */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f3f4f6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select:hover {
    border-color: rgba(209, 47, 47, 0.3);
    background-color: var(--color-secondary);
}

.form-select option {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 10px;
}

.form-select option:first-child {
    color: rgba(243, 244, 246, 0.5);
}

/* Error States */
.form-input-error,
.form-textarea-error,
.form-select-error {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 3px rgba(209, 47, 47, 0.2) !important;
}

.form-error {
    display: none;
    color: var(--color-accent);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}

.form-error:not(:empty) {
    display: block;
}

/* Submit Button */
.form-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
    background-color: var(--color-accent);
    color: var(--color-white);
    margin-top: 8px;
    font-family: var(--font-primary);
    box-shadow: none;
    text-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover,
.btn.form-submit:hover {
    background-color: #b91c1c;
    color: var(--color-white);
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(209, 47, 47, 0.3) !important;
}

.form-submit i {
    font-size: 14px;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    animation: slideIn 0.3s ease-out;
}

.form-message-success {
    background-color: #10b981;
    color: var(--color-white);
    border: 1px solid #059669;
}

.form-message-error {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 1px solid #b91c1c;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-main-grid {
        gap: 32px;
    }
    
    .contact-form-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-header-section {
        padding: 40px 0 50px;
    }

    .contact-header-title {
        font-size: 2rem;
    }

    .contact-header-description {
        font-size: 14px;
    }

    .contact-main-section {
        padding: 50px 0;
    }

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

    .contact-form-card {
        padding: 24px;
    }

    .contact-form-title-new {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        gap: 12px;
    }

    .contact-card-new {
        padding: 16px;
    }

    .contact-card-icon-new {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-card-title-new {
        font-size: 16px;
    }

    .opening-hours-card-new {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-header-title {
        font-size: 1.75rem;
    }

    .contact-form-card {
        padding: 20px;
    }

    .opening-hours-card-new {
        padding: 20px;
    }
}