/* ============================================
   Contact Page Styles - Redesigned
   ============================================ */

/* ---------- Breadcrumb ---------- */
.ct-breadcrumb {
    background: linear-gradient(to right, #F9FAFB, #fff);
    border-bottom: 1px solid #F3F4F6;
    margin-top: 80px;
    padding: 0 24px;
}

.ct-breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
}

.ct-breadcrumb-inner a {
    color: #6B7280;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 6px;
}

.ct-breadcrumb-inner a:hover {
    color: #E85A24;
    background: rgba(232, 90, 36, 0.06);
}

.ct-breadcrumb-inner a:first-child::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.ct-bc-sep {
    margin: 0 4px;
    color: #D1D5DB;
    font-size: 11px;
}

.ct-bc-current {
    color: #E85A24;
    font-weight: 600;
    padding: 4px 8px;
}

/* ---------- Main Content ---------- */
.ct-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* Page Title */
.ct-page-title {
    text-align: center;
    margin-bottom: 40px;
}

.ct-page-title h1 {
    font-size: 30px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 8px;
}

.ct-page-title p {
    font-size: 15px;
    color: #6B7280;
}

/* ---------- Contact Info Cards ---------- */
.ct-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.ct-info-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}

.ct-info-card:hover {
    border-color: #E55D25;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.ct-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.ct-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: #E55D25;
    fill: none;
    stroke-width: 2;
}

.ct-info-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ct-info-value {
    font-size: 14px;
    color: #1A2B4A;
    font-weight: 600;
    line-height: 1.4;
}

.ct-info-value a {
    color: #2B6CB0;
    text-decoration: none;
    transition: color 0.2s;
}

.ct-info-value a:hover {
    color: #E55D25;
}

/* ---------- Contact Form Section ---------- */
.ct-form-section {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 32px;
}

.ct-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 8px;
    text-align: center;
}

.ct-form-subtitle {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}

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

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

.ct-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

.ct-form-group input,
.ct-form-group textarea,
.ct-form-group select {
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fafbfc;
    transition: all 0.3s;
    box-sizing: border-box;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus,
.ct-form-group select:focus {
    outline: none;
    border-color: #2B6CB0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.08);
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.ct-form-group-full {
    grid-column: 1 / -1;
}

.ct-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 48px;
    background: #2B6CB0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 8px auto 0;
}

.ct-form-submit:hover {
    background: #245a9a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.3);
}

.ct-form-submit svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1100px) {
    .ct-info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ct-main {
        padding: 24px 16px 40px;
    }

    .ct-page-title h1 {
        font-size: 24px;
    }

    .ct-info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .ct-info-card {
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .ct-info-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .ct-form-section {
        padding: 20px;
    }

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

    .ct-form-group-full {
        grid-column: auto;
    }

    .ct-form-submit {
        width: 100%;
        margin: 0;
    }
}
