/* ============================================================
   Contact Us Page
   ============================================================ */

.cu-page {
    background: #fff;
}

/* ── Shared ── */
.cu-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #368420;
    margin-bottom: 10px;
}
.cu-eyebrow--light { color: #a8d08d; }

.cu-section-head {
    text-align: center;
    margin-bottom: 48px;
}
.cu-section-head--light .cu-section-heading,
.cu-section-head--light .cu-section-desc { color: #fff; }
.cu-section-desc--light { color: rgba(255,255,255,0.8); }

.cu-section-heading {
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.25;
}
.cu-section-heading--light { color: #fff; }

.cu-section-desc {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ── Hero ── */
.cu-hero {
    padding: 80px 0 56px;
    background: #f8fbf6;
    border-bottom: 1px solid #e5efe0;
    text-align: center;
}
.cu-hero__heading {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.15;
}
.cu-hero__sub {
    font-size: 1.0625rem;
    color: #555;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Stats bar ── */
.cu-stats-bar {
    background: #2a6a18;
    padding: 32px 0;
}
.cu-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.cu-stats-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.cu-stats-bar__item:last-child { border-right: none; }
.cu-stats-bar__num {
    font-size: clamp(1.875rem, 1.5rem + 1vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}
.cu-stats-bar__label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
    font-weight: 500;
}

/* ── Contact section ── */
.cu-contact-section {
    padding: 72px 0;
}
.cu-contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Form card */
.cu-form-card {
    background: #fff;
    border: 1px solid #e5efe0;
    border-radius: 14px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.cu-form-card__heading {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.cu-form-card__sub {
    font-size: 0.9375rem;
    color: #777;
    margin-bottom: 28px;
}
.cu-alert {
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.cu-alert--success {
    background-color: #368420;
    color: #fff;
    border: none;
}
.cu-form { display: flex; flex-direction: column; gap: 0; }
.cu-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cu-form__group { display: flex; flex-direction: column; }
.cu-form__group--full { margin-bottom: 20px; }
.cu-form__input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde8d6;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #1a1a1a;
    background: #fafcf8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.cu-form__input::placeholder { color: #aaa; }
.cu-form__input:focus {
    border-color: #368420;
    box-shadow: 0 0 0 3px rgba(54,132,32,0.1);
    background: #fff;
}
.cu-form__textarea {
    resize: vertical;
    min-height: 140px;
}
.cu-form__submit {
    background: #368420;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s ease;
    letter-spacing: 0.02em;
}
.cu-form__submit:hover { background: #2a6a18; color: #fff; }
.cu-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Info card */
.cu-info-card {
    background: #f4f9f2;
    border: 1px solid #ddefd6;
    border-radius: 14px;
    padding: 36px 28px;
}
.cu-info-card__heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}
.cu-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cu-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.cu-info-item__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddefd6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #368420;
}
.cu-info-item__icon svg { width: 18px; height: 18px; }
.cu-info-item__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cu-info-item__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #368420;
}
.cu-info-item__val {
    font-size: 0.9375rem;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    line-height: 1.5;
}
.cu-info-item__val:hover { color: #368420; }

.cu-cities-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #368420;
    margin-bottom: 10px;
}
.cu-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cu-city-chip {
    background: #fff;
    border: 1px solid #ddefd6;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2a6a18;
}

/* ── Branches ── */
.cu-branches-section {
    background: #f4f9f2;
    padding: 72px 0;
}
.cu-branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cu-branch-card {
    background: #fff;
    border: 1px solid #ddefd6;
    border-radius: 12px;
    padding: 22px 20px;
    position: relative;
    transition: box-shadow 0.2s ease;
}
.cu-branch-card:hover {
    box-shadow: 0 6px 20px rgba(54,132,32,0.1);
}
.cu-branch-card--head {
    border-color: #368420;
    border-width: 2px;
}
.cu-branch-card__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #368420;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.cu-branch-card__city {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #368420;
    margin-bottom: 4px;
}
.cu-branch-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.cu-branch-card__address {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 8px;
}
.cu-branch-card__phone {
    font-size: 0.8125rem;
    color: #368420;
    font-weight: 600;
    text-decoration: none;
}
.cu-branch-card__phone:hover { text-decoration: underline; }

/* ── Transparency ── */
.cu-transparency-section {
    background: #1d4d0e;
    padding: 80px 0;
}
.cu-transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cu-transparency-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px 24px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.cu-transparency-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-3px);
}
.cu-transparency-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #a8d08d;
}
.cu-transparency-card__icon svg { width: 22px; height: 22px; }
.cu-transparency-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.cu-transparency-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Map ── */
.cu-map-section { line-height: 0; }

/* ── Responsive ── */
@media (max-width: 1199px) {
    .cu-branches-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .cu-contact-grid { grid-template-columns: 1fr; }
    .cu-info-col { order: -1; }
    .cu-stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
    .cu-stats-bar__item:nth-child(2) { border-right: none; }
    .cu-branches-grid { grid-template-columns: repeat(2, 1fr); }
    .cu-transparency-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .cu-form-card { padding: 28px 20px; }
    .cu-form__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .cu-form__group { margin-bottom: 14px; }
    .cu-branches-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .cu-stats-bar__grid { grid-template-columns: 1fr 1fr; }
    .cu-stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 16px; }
    .cu-stats-bar__item:nth-last-child(-n+2) { border-bottom: none; }
    .cu-branches-grid { grid-template-columns: 1fr; }
    .cu-transparency-grid { grid-template-columns: 1fr; }
}
