/* ============================================
   Contact Page Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Onest', sans-serif;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    cursor: pointer;
}

.instagram-link {
    display: flex;
    align-items: center;
    color: #6c5ce7;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.instagram-link:hover {
    color: #5f3dc4;
    background: rgba(108, 92, 231, 0.1);
    transform: translateY(-2px);
}

.instagram-link svg {
    width: 32px;
    height: 32px;
}

/* Main Content */
.contact-section {
    padding: 80px 20px;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 600px;
    width: 100%;
    padding: 50px;
    animation: slideIn 0.6s ease-out;
}

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

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

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c5ce7;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6c5ce7;
    background: white;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group select {
    cursor: pointer;
    font-weight: 400;
}

.form-group select option[disabled] {
    color: #6c757d;
}

.form-group select:invalid {
    color: #6c757d;
    font-weight: 400;
}

.form-group select:valid {
    color: #333;
    font-weight: 500;
}

/* Make placeholder text color match inputs */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-group textarea {
    min-height: 200px;
    resize: vertical;
    font-weight: 500;
}

.submit-button {
    background: #6c5ce7;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Onest', sans-serif;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    background: #5f3dc4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

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

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}

.back-link a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link a:hover {
    color: #5f3dc4;
}

.back-arrow {
    font-size: 2.5rem;
    line-height: 0.8;
    display: inline-flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }

    .instagram-link svg {
        width: 24px;
        height: 24px;
    }

    .contact-container {
        padding: 30px 25px;
    }

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

    .contact-header p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 40px 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.95rem;
    }

    .submit-button {
        font-size: 1.1rem;
    }
}
