/* Professional Color Variables - Format2Publish Inspired */
/* New Premium Color Palette - From User's Color Scheme */
/* Premium Professional Color Palette - 3 Complementary Colors */
:root {
    /* Primary Brand Colors - Deep Professional Blue */
    --primary-blue: #1E3A8A;
    --primary-royal: #1D4ED8;
    --primary-light: #3B82F6;
    
    /* Premium Background Colors - Warm Cream & Sophisticated Grays */
    --bg-primary: #FDFDFD;        /* Pure white for main content */
    --bg-secondary: #F8F6F3;      /* Warm cream - premium alternative to white */
    --bg-tertiary: #F1EDE7;       /* Deeper cream for sections */
    --bg-accent: #E8E2DB;         /* Subtle cream accent */
    
    /* Professional Text Colors */
    --text-primary: #1F2937;      /* Dark charcoal for headings */
    --text-secondary: #4B5563;    /* Medium gray for body text */
    --text-light: #6B7280;        /* Light gray for supporting text */
    --text-muted: #9CA3AF;        /* Very light gray for subtle text */
    
    /* Accent Colors from Original Palette */
    --accent-pink: #F8BBD9;       /* Soft pink accent */
    --accent-rose: #FDA4AF;       /* Rose highlight */
    --accent-orange: #EA580C;     /* Bold orange for CTAs */
    --accent-coral: #F97316;      /* Warm coral for hovers */
    
    /* Professional Neutrals - Third Complementary Color */
    --neutral-warm: #A3A08A;      /* Warm taupe */
    --neutral-light: #D4D1C7;     /* Light taupe */
    --neutral-dark: #6B6B47;      /* Dark olive-taupe */
    
    /* Border and UI Elements */
    --border-light: #E8E2DB;      /* Cream borders */
    --border-medium: #D4D1C7;     /* Taupe borders */
    --border-accent: #A3A08A;     /* Dark taupe accents */
    --shadow-light: rgba(30, 58, 138, 0.08);
    --shadow-medium: rgba(30, 58, 138, 0.12);
    --shadow-warm: rgba(163, 160, 138, 0.15);
}

/* Contact Page Specific Styles */

.hero-contact {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #c7e4fb 0%, #a8d5f0 35%, #89c4e8 70%, #6bb3e0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-contact .container {
    position: relative;
    z-index: 1;
}

.hero-contact h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1E3A8A;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
    line-height: 1.2;
}

.hero-contact p {
    font-size: 1.3rem;
    color: #4B5563;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact-section {
    padding: 80px 0;
    background: #c7e4fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: #F8F9FB;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #1A2B4C;
    margin-bottom: 1rem;
}

.contact-form-container > p {
    color: #2E2E2E;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1A2B4C;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group small {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #c3e6cb;
}

.error-message-box {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #f5c6cb;
}

.success-message i,
.error-message-box i {
    font-size: 1.2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #2c3e50;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.method-info small {
    color: #3498db;
    font-style: italic;
}

.response-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.response-info h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.response-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.response-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.contact-faq {
    padding: 80px 0;
    background: #c7e4fb;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: white;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .hero-contact {
        padding: 120px 0 60px;
    }
    
    .hero-contact h1 {
        font-size: 2.8rem;
    }
    
    .hero-contact p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .response-info {
        padding: 2rem;
    }
    
    .response-step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info-card,
    .response-info {
        padding: 1.5rem;
    }
}