/* ========================================
   RW Coldstore — Contact Page Styles
   High-conversion, friction-reducing layout
   ======================================== */

/* ── Active nav ── */
.nav-links a.active {
    color: var(--blue-400) !important;
}

/* ── Contact Hero ── */

.ct-hero {
    position: relative;
    padding: 140px 0 56px;
    overflow: hidden;
}

.ct-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--blue-950);
}

.ct-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

.ct-hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.ct-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s 0.15s var(--ease) forwards;
}

.ct-hero-desc {
    font-size: 1rem;
    color: var(--slate-400);
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 0.6s 0.25s var(--ease) forwards;
}

/* ── Main Contact Layout ── */

.ct-main {
    padding: 80px 0 120px;
    background: var(--blue-900);
    border-top: 1px solid var(--border);
}

.ct-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Form Side ── */

.ct-form-side {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 48px;
}

.ct-form-header {
    margin-bottom: 32px;
}

.ct-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.ct-form-desc {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.65;
}

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

.form-req {
    color: var(--blue-400);
    font-weight: 400;
}

.ct-form-note {
    font-size: 0.78rem;
    color: var(--slate-600);
    line-height: 1.55;
    text-align: center;
    margin-top: 4px;
}

/* ── Info Sidebar ── */

.ct-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}

.ct-info-block {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 28px;
}

.ct-info-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.ct-info-text {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Contact Methods */

.ct-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.25s var(--ease);
}

.ct-method:hover {
    border-color: var(--blue-500);
    background: rgba(59, 130, 246, 0.04);
}

.ct-method-icon {
    width: 20px;
    height: 20px;
    color: var(--blue-400);
    flex-shrink: 0;
}

.ct-method-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-600);
}

.ct-method-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
}

/* What to Expect */

.ct-expect-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-expect-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ct-expect-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--blue-400);
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
    flex-shrink: 0;
}

.ct-expect-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.ct-expect-item span {
    font-size: 0.82rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* Best Suited To */

.ct-info-suited {
    background: rgba(59, 130, 246, 0.03);
    border-color: rgba(59, 130, 246, 0.1);
}

.ct-suited-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-suited-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--slate-300);
    line-height: 1.4;
}

.ct-suited-list li svg {
    color: var(--blue-400);
    flex-shrink: 0;
}

/* Operating Area */

.ct-info-area {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.01);
}

.ct-area-icon {
    width: 22px;
    height: 22px;
    color: var(--slate-500);
    flex-shrink: 0;
    margin-top: 1px;
}

.ct-info-area strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-300);
    margin-bottom: 4px;
}

.ct-info-area span {
    font-size: 0.82rem;
    color: var(--slate-600);
    line-height: 1.55;
}

/* ========================================
   Responsive — Contact Page
   ======================================== */

@media (max-width: 1024px) {
    .ct-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ct-info-side {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ct-info-area {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .ct-hero {
        padding: 110px 0 40px;
    }

    .ct-main {
        padding: 56px 0 80px;
    }

    .ct-form-side {
        padding: 28px 20px;
    }

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

    .ct-info-block {
        padding: 24px 20px;
    }
}