/* ═══════════════════════════════════════════════
   EVERBOLT FOODS – CONTACT PAGE
   contact.css
   Premium Self-contained Design
═══════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────── */
.ct-hero {
    padding: 120px 24px 64px;
    background: linear-gradient(135deg, #fff8f7 0%, #fff 60%, #fafafa 100%);
    text-align: center;
    border-bottom: 1px solid #f2f2f7;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ct-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 14px;
}

.ct-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.ct-hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── LAYOUT ───────────────────────────────────── */
.ct-section {
    padding: 80px 24px 100px;
    background: #ffffff;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* ── LEFT: CONTACT INFO ───────────────────────── */
.ct-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ct-info-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.ct-info-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ct-card {
    background: #fafafa;
    border: 1px solid #f2f2f7;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    background: #ffffff;
    border-color: rgba(192,57,43,0.15);
}

.ct-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-red-light);
    color: var(--brand-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.ct-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ct-card p, .ct-card a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
}

.ct-card a:hover {
    color: var(--brand-red);
}

/* Single column card for address to span full width */
.ct-card.full-width {
    grid-column: 1 / -1;
}

/* ── RIGHT: CONTACT FORM ──────────────────────── */
.ct-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
}

.ct-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ct-form-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.ct-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ct-input-group input,
.ct-input-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fafafa;
    border: 1.5px solid #e5e5ea;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.25s ease;
}

.ct-input-group textarea {
    min-height: 140px;
    resize: vertical;
}

.ct-input-group input:focus,
.ct-input-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(192,57,43,0.08);
}

.ct-input-group input::placeholder,
.ct-input-group textarea::placeholder {
    color: var(--text-light);
}

.ct-submit {
    margin-top: 10px;
    padding: 16px 32px;
    background: var(--brand-red);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.ct-submit:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(192,57,43,0.25);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
    .ct-container {
        grid-template-columns: 1fr;
        gap: 64px;
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .ct-hero {
        padding: 100px 24px 48px;
    }
    
    .ct-section {
        padding: 48px 24px 64px;
    }

    .ct-form-card {
        padding: 32px 24px;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-grid {
        grid-template-columns: 1fr;
    }
}