/* VideoHook Contact Form Styles */
:root {
    --vh-orange: #f69321;
    --vh-coral: #ef3b39;
    --vh-dark: #231f20;
}

.vh-contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 20px 80px;
}

.vh-contact-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

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

.vh-contact-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.vh-contact-header h1 span {
    background: linear-gradient(135deg, var(--vh-orange), var(--vh-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vh-contact-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin: 0;
}

.vh-contact-form-container {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
}

.vh-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.vh-form-group {
    margin-bottom: 22px;
    flex: 1;
}

.vh-form-group label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vh-form-group label .required {
    color: var(--vh-coral);
}

.vh-form-group label .optional-tag {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    text-transform: none;
    font-size: 0.8rem;
}

.vh-form-group input,
.vh-form-group select,
.vh-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.vh-form-group input::placeholder,
.vh-form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.vh-form-group input:focus,
.vh-form-group select:focus,
.vh-form-group textarea:focus {
    outline: none;
    border-color: var(--vh-orange);
    box-shadow: 0 0 0 3px rgba(246,147,33,0.15);
}

.vh-form-group select {
    appearance: none;
    -webkit-appearance: none;
    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='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.vh-form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.vh-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.vh-form-group.vh-error input,
.vh-form-group.vh-error select,
.vh-form-group.vh-error textarea {
    border-color: var(--vh-coral);
    box-shadow: 0 0 0 3px rgba(239,59,57,0.15);
}

.vh-form-group .vh-error-msg {
    color: var(--vh-coral);
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.vh-form-group.vh-error .vh-error-msg {
    display: block;
}

.vh-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.vh-submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--vh-orange), var(--vh-coral));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    position: relative;
}

.vh-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246,147,33,0.4);
}

.vh-submit-btn:active {
    transform: translateY(0);
}

.vh-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.vh-submit-btn .spinner {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vh-spin 0.8s linear infinite;
    margin: 0 auto;
}

.vh-submit-btn.loading .btn-text { display: none; }
.vh-submit-btn.loading .spinner { display: block; }

@keyframes vh-spin {
    to { transform: rotate(360deg); }
}

.vh-form-message {
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
    display: none;
    font-weight: 600;
}

.vh-form-message.success {
    display: block;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
}

.vh-form-message.error {
    display: block;
    background: rgba(239,59,57,0.15);
    border: 1px solid rgba(239,59,57,0.3);
    color: var(--vh-coral);
}

/* Success state */
.vh-success-state {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.vh-success-state.active {
    display: block;
}

.vh-success-state .checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vh-orange), var(--vh-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
}

.vh-success-state h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 12px;
}

.vh-success-state p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin: 0 0 8px;
}

/* Contact info bar */
.vh-contact-info-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.vh-contact-info-item {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.vh-contact-info-item strong {
    display: block;
    color: var(--vh-orange);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.vh-contact-info-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.vh-contact-info-item a:hover {
    color: var(--vh-orange);
}

/* Responsive */
@media (max-width: 600px) {
    .vh-contact-page { padding: 40px 16px 60px; }
    .vh-contact-header h1 { font-size: 1.8rem; }
    .vh-contact-form-container { padding: 24px 20px; }
    .vh-form-row { flex-direction: column; gap: 0; }
    .vh-contact-info-bar { flex-direction: column; gap: 20px; }
}