/* ============================================================
   THE NEW KITS — Contact Page Stylesheet
   ============================================================ */

.tnk-contact-page {
    --black: #131313;
    --white: #ffffff;
    --red: #E31E24;
    --red-dark: #B81015;
    --grey-50: #fafafa;
    --grey-100: #f5f5f5;
    --grey-150: #ededed;
    --grey-200: #e5e5e5;
    --grey-300: #d4d4d4;
    --grey-400: #a3a3a3;
    --grey-500: #6b6862;
    --grey-700: #404040;
    --section: 80px;
    --pad: 32px;
}

.tnk-contact-page {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.tnk-contact-page .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--pad);
}
@media (max-width: 640px) {
    .tnk-contact-page .container { padding: 0 20px; }
    .tnk-contact-page { --section: 56px; }
}

/* Shared button */
.tnk-contact-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--red);
    color: var(--white) !important;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
}
.tnk-contact-page .btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(227,30,36,0.3);
}
.tnk-contact-page .btn-primary svg { transition: transform 0.2s; }
.tnk-contact-page .btn-primary:hover svg { transform: translateX(3px); }

/* ============= HERO ============= */
.tnk-contact-page .contact-hero {
    padding: 56px 0 40px;
    background: linear-gradient(180deg, #f7f5f0 0%, #fff 100%);
    border-bottom: 1px solid var(--grey-150);
}
.tnk-contact-page .contact-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--grey-500);
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.tnk-contact-page .contact-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}
.tnk-contact-page .contact-hero__breadcrumb a:hover { color: var(--black); }
.tnk-contact-page .contact-hero__breadcrumb svg { color: var(--grey-400); }
.tnk-contact-page .contact-hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--black);
    margin: 0 0 16px;
}
.tnk-contact-page .contact-hero__lede {
    font-size: 17px;
    line-height: 1.55;
    color: var(--grey-700);
    max-width: 640px;
    margin: 0 0 20px;
}
.tnk-contact-page .contact-hero__promise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--grey-700);
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--grey-200);
    padding: 8px 14px;
    border-radius: 999px;
}
.tnk-contact-page .contact-hero__promise svg { color: var(--red); }
.tnk-contact-page .contact-hero__promise strong { color: var(--black); }

/* ============= BODY GRID ============= */
.tnk-contact-page .contact-body {
    padding: var(--section) 0;
    background: #fff;
}
.tnk-contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 900px) {
    .tnk-contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============= ALERTS ============= */
.tnk-contact-page .contact-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 28px;
    border: 1px solid;
}
.tnk-contact-page .contact-alert svg { flex-shrink: 0; margin-top: 2px; }
.tnk-contact-page .contact-alert strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}
.tnk-contact-page .contact-alert p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.tnk-contact-page .contact-alert--success {
    background: #e6f7ee;
    border-color: #b6e6cd;
    color: #056b35;
}
.tnk-contact-page .contact-alert--success svg { color: #056b35; }
.tnk-contact-page .contact-alert--success strong { color: #034d27; }
.tnk-contact-page .contact-alert--error {
    background: #fdecec;
    border-color: #f5b3b6;
    color: #8a1418;
}
.tnk-contact-page .contact-alert--error svg { color: var(--red); }
.tnk-contact-page .contact-alert--error strong { color: #6b0e11; }

/* ============= FORM ============= */
.tnk-contact-page .contact-form {
    background: var(--grey-50);
    border: 1px solid var(--grey-150);
    border-radius: 16px;
    padding: 36px 32px;
}
@media (max-width: 640px) {
    .tnk-contact-page .contact-form { padding: 24px 20px; }
}
.tnk-contact-page .form-row { margin-bottom: 20px; }
.tnk-contact-page .form-row:last-of-type { margin-bottom: 0; }
.tnk-contact-page .form-row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .tnk-contact-page .form-row--split { grid-template-columns: 1fr; }
}
.tnk-contact-page .form-field { display: flex; flex-direction: column; }
.tnk-contact-page .form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    display: block;
}
.tnk-contact-page .form-field__hint {
    font-weight: 400;
    color: var(--grey-500);
    font-size: 12px;
}
.tnk-contact-page .form-field input,
.tnk-contact-page .form-field select,
.tnk-contact-page .form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid var(--grey-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--black);
    line-height: 1.45;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
    appearance: none;
}
.tnk-contact-page .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.tnk-contact-page .form-field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}
.tnk-contact-page .form-field input:focus,
.tnk-contact-page .form-field select:focus,
.tnk-contact-page .form-field textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(19,19,19,0.1);
}
.tnk-contact-page .form-field.has-error input,
.tnk-contact-page .form-field.has-error select,
.tnk-contact-page .form-field.has-error textarea {
    border-color: var(--red);
    background: #fffaf9;
}
.tnk-contact-page .form-field.has-error input:focus,
.tnk-contact-page .form-field.has-error select:focus,
.tnk-contact-page .form-field.has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(227,30,36,0.15);
}
.tnk-contact-page .form-error {
    display: block;
    margin-top: 6px;
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
}

/* Form actions */
.tnk-contact-page .form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--grey-200);
}
.tnk-contact-page .form-actions__note {
    font-size: 12px;
    color: var(--grey-500);
    margin: 0;
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
}
.tnk-contact-page .form-actions__note a {
    color: var(--grey-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tnk-contact-page .form-actions__note a:hover { color: var(--red); }

/* ============= INFO CARD (RIGHT) ============= */
.tnk-contact-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 88px;
}
@media (max-width: 900px) {
    .tnk-contact-page .contact-info { position: static; }
}
.tnk-contact-page .info-block {
    background: #fff;
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    padding: 24px 22px;
    transition: border-color 0.2s, transform 0.2s;
}
.tnk-contact-page .info-block:hover {
    border-color: var(--black);
    transform: translateY(-2px);
}
.tnk-contact-page .info-block__icon {
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.tnk-contact-page .info-block h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.tnk-contact-page .info-block p {
    margin: 0 0 6px;
    font-size: 14px;
    color: var(--grey-700);
    line-height: 1.5;
}
.tnk-contact-page .info-block a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}
.tnk-contact-page .info-block a:hover {
    color: var(--red-dark);
    text-decoration: underline;
}
.tnk-contact-page .info-block strong { color: var(--black); font-weight: 700; }
.tnk-contact-page .info-block__sub {
    font-size: 12px !important;
    color: var(--grey-500) !important;
}

/* ============= QUICK LINKS ============= */
.tnk-contact-page .contact-quicklinks {
    padding: var(--section) 0;
    background: var(--grey-50);
    border-top: 1px solid var(--grey-150);
}
.tnk-contact-page .contact-quicklinks h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0 0 36px;
    text-align: center;
}
.tnk-contact-page .quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}
.tnk-contact-page .quicklink {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tnk-contact-page .quicklink:hover {
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.tnk-contact-page .quicklink strong {
    font-size: 15px;
    color: var(--black);
    font-weight: 700;
}
.tnk-contact-page .quicklink span {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.45;
}
