/* Contact Page Styles */

:root {
    --vcr-velvet-plum: #160B1E;
    --vcr-burgundy-stage: #221028;
    --vcr-room-panel: #2B1432;
    --vcr-text: #FAF3FF;
    --vcr-muted: #D6C2E3;
    --vcr-gold: #F7C97A;
    --vcr-copper: #D47A4C;
    --vcr-satin: #0B0A0D;
    --vcr-lilac: #BDA8FF;
    --vcr-border: rgba(250, 243, 255, 0.10);
    --vcr-shadow-soft: 0 8px 32px rgba(11, 10, 13, 0.4);
    --vcr-shadow-glow: 0 0 40px rgba(247, 201, 122, 0.15);
}

/* Contact Hero */
.vcr-contact-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.vcr-contact-title {
    font-family: 'Italiana', serif;
    font-size: 56px;
    color: var(--vcr-gold);
    margin-bottom: 16px;
}

.vcr-contact-subtitle {
    font-size: 18px;
    color: var(--vcr-muted);
}

@media (max-width: 768px) {
    .vcr-contact-hero {
        padding: 140px 0 60px;
    }
    .vcr-contact-title {
        font-size: 40px;
    }
}

/* Contact Main Section */
.vcr-contact-main {
    padding: 60px 0 120px;
}

.vcr-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 992px) {
    .vcr-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Info Section */
.vcr-contact-info {
    background: linear-gradient(180deg, rgba(43, 20, 50, 0.4) 0%, rgba(34, 16, 40, 0.4) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 16px;
    padding: 40px;
}

.vcr-contact-info-title {
    font-family: 'Italiana', serif;
    font-size: 32px;
    color: var(--vcr-gold);
    margin-bottom: 12px;
}

.vcr-contact-info-desc {
    color: var(--vcr-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.vcr-contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.vcr-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(11, 10, 13, 0.3);
    border: 1px solid var(--vcr-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vcr-contact-item:hover {
    border-color: rgba(247, 201, 122, 0.2);
    transform: translateX(8px);
}

.vcr-contact-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(247, 201, 122, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcr-contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vcr-contact-item-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--vcr-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vcr-contact-item-value {
    color: var(--vcr-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* Response Time Box */
.vcr-contact-response {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(247, 201, 122, 0.05);
    border: 1px solid rgba(247, 201, 122, 0.2);
    border-radius: 12px;
}

.vcr-response-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(247, 201, 122, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcr-response-content h3 {
    font-family: 'Italiana', serif;
    font-size: 18px;
    color: var(--vcr-gold);
    margin-bottom: 4px;
}

.vcr-response-content p {
    color: var(--vcr-muted);
    font-size: 14px;
}

/* Contact Form Section */
.vcr-contact-form-wrapper {
    background: linear-gradient(180deg, rgba(43, 20, 50, 0.4) 0%, rgba(34, 16, 40, 0.4) 100%);
    border: 1px solid var(--vcr-border);
    border-radius: 16px;
    padding: 40px;
}

.vcr-contact-form-title {
    font-family: 'Italiana', serif;
    font-size: 32px;
    color: var(--vcr-gold);
    margin-bottom: 12px;
}

.vcr-contact-form-desc {
    color: var(--vcr-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.vcr-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vcr-form-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--vcr-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vcr-form-input,
.vcr-form-select,
.vcr-form-textarea {
    background: rgba(11, 10, 13, 0.5);
    border: 1px solid var(--vcr-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--vcr-text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.vcr-form-input::placeholder,
.vcr-form-textarea::placeholder {
    color: var(--vcr-muted);
    opacity: 0.5;
}

.vcr-form-input:focus,
.vcr-form-select:focus,
.vcr-form-textarea:focus {
    outline: none;
    border-color: var(--vcr-gold);
    box-shadow: 0 0 0 3px rgba(189, 168, 255, 0.1);
}

.vcr-form-select {
    cursor: pointer;
    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 1.5L6 6.5L11 1.5' stroke='%23F7C97A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.vcr-form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.vcr-btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Success Message */
.vcr-form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.vcr-form-success.vcr-visible {
    display: block;
}

.vcr-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(247, 201, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcr-success-title {
    font-family: 'Italiana', serif;
    font-size: 28px;
    color: var(--vcr-gold);
    margin-bottom: 12px;
}

.vcr-success-text {
    color: var(--vcr-muted);
    margin-bottom: 24px;
}

/* Contact CTA */
.vcr-contact-cta {
    padding: 60px 0 120px;
}

@media (max-width: 768px) {
    .vcr-contact-info,
    .vcr-contact-form-wrapper {
        padding: 24px;
    }

    .vcr-contact-info-title,
    .vcr-contact-form-title {
        font-size: 24px;
    }

    .vcr-contact-item {
        flex-direction: column;
        text-align: center;
    }

    .vcr-contact-response {
        flex-direction: column;
        text-align: center;
    }
}
