/* ============================================================================
   ZOOGABOOG! Contact page
   Moved from inline <style> in contact.blade.php for maintainability.
   ============================================================================ */

:root {
    --zoogaboog-blue: #01aade;
    --zoogaboog-dark-blue: #0085ae;
    --dark-gray: #334155;
}

/* HERO */
.contact-hero {
    background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, var(--zoogaboog-dark-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}
.contact-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.contact-hero .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 600;
}

/* SECTION + CARD */
.contact-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* SIDEBAR */
.contact-sidebar {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px 40px;
    height: 100%;
    border-right: 2px solid #e2e8f0;
}
.cat-mascot {
    text-align: center;
    margin-bottom: 30px;
}
.cat-mascot img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    border: 4px solid var(--zoogaboog-blue);
    box-shadow: 0 8px 25px rgba(1, 170, 222, 0.3);
}
.sidebar-title {
    color: var(--dark-gray);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}
.sidebar-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}
.contact-method:hover {
    border-color: var(--zoogaboog-blue);
    transform: translateX(5px);
}
.contact-method-icon {
    width: 42px;
    height: 42px;
    background: var(--zoogaboog-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-method-icon i {
    color: white;
    font-size: 1.2rem;
}
.contact-method-content h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin: 0 0 3px;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.contact-method-content p {
    color: #475569;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}
.contact-method-content a {
    color: var(--zoogaboog-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}
.contact-method-content a:hover {
    color: var(--zoogaboog-dark-blue);
}
.contact-method-content .muted {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* FORM AREA */
.contact-form-area {
    padding: 50px;
}
.contact-form h3 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.contact-form .subtitle {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 35px;
}
.form-label {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-label .required {
    color: #ef4444;
}
.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--zoogaboog-blue);
    box-shadow: 0 0 0 4px rgba(1, 170, 222, 0.10);
    outline: none;
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 5px;
}

/* FILE UPLOAD */
.file-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f8fafc;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}
.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--zoogaboog-blue);
    background: #f0f9ff;
}
.file-upload-icon {
    font-size: 2.5rem;
    color: var(--zoogaboog-blue);
    margin-bottom: 10px;
}
.file-upload-text {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 5px;
}
.file-upload-hint {
    color: #94a3b8;
    font-size: 0.85rem;
}
.uploaded-files {
    margin-top: 15px;
}
.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 8px;
}
.uploaded-file-name {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
}
.remove-file {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.remove-file:hover {
    background: #fee2e2;
}

/* PRIMARY BUTTON */
.contact-form .btn-primary {
    background: var(--zoogaboog-blue);
    border: none;
    border-radius: 12px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 170, 222, 0.3);
}
.contact-form .btn-primary:hover {
    background: var(--zoogaboog-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(1, 170, 222, 0.4);
}
.contact-form .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-hero {
        padding: 56px 0;
    }
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    .contact-hero .lead {
        font-size: 1.05rem;
    }
    .contact-section {
        padding: 40px 0 56px;
    }
    .contact-sidebar {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
        padding: 40px 24px;
    }
    .contact-form-area {
        padding: 40px 24px;
    }
    .contact-form h3 {
        font-size: 1.5rem;
    }
    .contact-form .btn-primary {
        width: 100%;
        padding: 14px 24px;
    }
}
