/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — Cronus Steel  |  Full Redesign
   Theme: #ce2121 red · #1a1a1a dark · #f5f5f5 light
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. HERO ─────────────────────────────────────────────────────── */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 100px 0 140px;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bg/bg2.jpg') center/cover no-repeat;
    opacity: 0.08;
}
.contact-hero::after {
    content: '';
    position: absolute;
    left: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(206,33,33,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.contact-hero .container { position: relative; z-index: 2; }

.hero-tag {
    display: inline-block;
    background: rgba(206,33,33,0.15);
    border: 1px solid rgba(206,33,33,0.4);
    color: #ce2121;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.contact-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -1px;
}
.contact-hero h1 span {
    color: #ce2121;
}
.contact-hero p.hero-lead {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    line-height: 1.75;
    margin: 0 0 35px;
}
.hero-cta-strip {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.hero-cta-item i {
    width: 36px;
    height: 36px;
    background: rgba(206,33,33,0.2);
    border: 1px solid rgba(206,33,33,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ce2121;
    font-size: 14px;
    flex-shrink: 0;
}
.hero-cta-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}
.hero-cta-item a:hover { color: #ce2121; }
.hero-cta-item span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1px;
}

/* Right side: response promise card */
.hero-promise {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px 30px;
    height: 100%;
}
.hero-promise h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 17px;
    margin: 0 0 24px;
}
.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.promise-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.promise-num {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #ce2121, #a01a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.promise-text strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}
.promise-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ── 2. OFFICE STRIP ─────────────────────────────────────────────── */
.offices-strip {
    margin-top: -55px;
    position: relative;
    z-index: 20;
    padding-bottom: 0;
}
.office-tile {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.office-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.office-tile-top {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 22px 24px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.office-tile-top .icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ce2121, #a01a1a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.office-tile-top .icon-wrap i {
    font-size: 18px;
    color: #fff;
}
.office-tile-top h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    margin: 0 0 2px;
}
.office-tile-top .badge-tag {
    display: inline-block;
    background: rgba(206,33,33,0.2);
    color: #ce2121;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}
.office-tile-body {
    padding: 20px 24px 24px;
    flex: 1;
}
.office-tile-body address {
    font-style: normal;
    font-size: 13.5px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}
.office-tile-body a.tile-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ce2121;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.office-tile-body a.tile-phone:hover { color: #a01a1a; }

/* ── 3. MAIN CONTACT BODY ────────────────────────────────────────── */
.contact-body {
    background: #f7f7f7;
    padding: 80px 0 90px;
}

/* ── 3a. Section header ── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ce2121;
    margin-bottom: 10px;
    display: block;
}
.section-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.2;
}
.section-sub {
    font-size: 15px;
    color: #888;
    margin: 0 0 40px;
    line-height: 1.6;
}

/* ── 3b. Left info column ── */
.info-col { padding-right: 40px; }

.info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.info-block:hover .info-icon {
    border-color: #ce2121;
}
.info-icon i {
    font-size: 20px;
    color: #ce2121;
}
.info-content label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}
.info-content p, .info-content a {
    font-size: 14.5px;
    color: #222;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
}
.info-content a {
    color: #ce2121;
    font-weight: 600;
    transition: color 0.2s;
}
.info-content a:hover { color: #a01a1a; }
.info-content .secondary {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* Divider line */
.info-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 28px 0;
}

/* Social row */
.social-row label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 16px;
    margin-right: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    text-decoration: none;
}
.social-link:hover { transform: translateY(-3px); color: #fff; }
.social-link.fb:hover  { background: #1877f2; }
.social-link.tw:hover  { background: #1da1f2; }
.social-link.yt:hover  { background: #ff0000; }
.social-link.li:hover  { background: #0a66c2; }

/* Map */
.map-frame {
    margin-top: 30px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.10);
}
.map-frame iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: none;
}

/* ── 3c. Form card ── */
.form-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.10);
    overflow: hidden;
}
.form-card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 28px 35px;
    position: relative;
    overflow: hidden;
}
.form-card-header::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(206,33,33,0.15);
}
.form-card-header h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    margin: 0 0 5px;
    position: relative;
    z-index: 1;
}
.form-card-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    position: relative;
    z-index: 1;
}
.form-card-body { padding: 32px 35px; }

/* Floating label inputs */
.field-wrap {
    position: relative;
    margin-bottom: 22px;
}
.field-wrap input,
.field-wrap textarea,
.field-wrap select {
    width: 100%;
    border: 2px solid #ebebeb;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #222;
    background: #fafafa;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: none;
    -webkit-appearance: none;
    font-family: 'Open Sans', sans-serif;
}
.field-wrap textarea {
    resize: vertical;
    min-height: 130px;
}
.field-wrap input:focus,
.field-wrap textarea:focus,
.field-wrap select:focus {
    border-color: #ce2121;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(206,33,33,0.08);
}
.field-wrap input::placeholder,
.field-wrap textarea::placeholder {
    color: #bbb;
}
.field-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 7px;
}
.field-label .req { color: #ce2121; margin-left: 2px; }

/* Input icon prefix */
.field-icon-wrap { position: relative; }
.field-icon-wrap i.prefix-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.25s;
}
.field-icon-wrap textarea ~ i.prefix-icon { top: 16px; transform: none; }
.field-icon-wrap input:focus ~ i.prefix-icon,
.field-icon-wrap textarea:focus ~ i.prefix-icon { color: #ce2121; }
.field-icon-wrap input,
.field-icon-wrap textarea { padding-left: 42px; }

/* Select */
.field-wrap select {
    padding-left: 42px;
    cursor: pointer;
    color: #bbb;
}
.field-wrap select.selected { color: #222; }

/* reCAPTCHA */
.recaptcha-wrap {
    margin-bottom: 20px;
}
.recaptcha-wrap .g-recaptcha {
    transform-origin: left top;
}
@media (max-width: 360px) {
    .recaptcha-wrap .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Submit */
.btn-send {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ce2121 0%, #a01a1a 100%);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-send::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-send:hover::before { opacity: 1; }
.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(206,33,33,0.35);
}
.btn-send:active { transform: translateY(0); }
.btn-send:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Form alert */
#form-result {
    border-radius: 10px;
    font-size: 14px;
    padding: 13px 18px;
    margin-bottom: 20px;
    display: none;
}
#form-result.alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}
#form-result.alert-danger {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ── 4. OFFICES MAP ──────────────────────────────────────────────── */
.offices-map-section {
    background: #111;
}
.map-label-bar {
    padding: 50px 0 28px;
}
.map-label-bar .section-heading {
    font-size: 28px;
    margin-top: 6px;
}
#offices-map {
    width: 100%;
    height: 440px;
    display: block;
}
/* Override Leaflet popup font */
.leaflet-popup-content-wrapper {
    border-radius: 10px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18) !important;
}
.map-pins-legend {
    background: #1a1a1a;
    padding: 16px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.map-pins-legend strong { color: rgba(255,255,255,0.85); }
.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ce2121;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
@media (max-width: 767px) {
    #offices-map { height: 300px; }
    .map-pins-legend .col-md-4 { margin-bottom: 6px; }
}

/* ── 5. TRUST STRIP ──────────────────────────────────────────────── */
.trust-strip {
    background: #1a1a1a;
    padding: 40px 0;
}
.trust-item {
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-num {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ce2121;
    line-height: 1;
    display: block;
}
.trust-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    display: block;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .contact-hero { padding: 80px 0 130px; }
    .contact-hero h1 { font-size: 38px; }
    .hero-promise { margin-top: 40px; }
    .info-col { padding-right: 15px; margin-bottom: 40px; }
    .offices-strip { margin-top: -40px; }
    .office-tile { margin-bottom: 20px; }
    .contact-body { padding: 60px 0 70px; }
}
@media (max-width: 767px) {
    .contact-hero { padding: 60px 0 120px; }
    .contact-hero h1 { font-size: 30px; letter-spacing: -0.5px; }
    .contact-hero p.hero-lead { font-size: 15px; }
    .hero-cta-strip { gap: 18px; }
    .offices-strip { margin-top: -30px; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 15px; }
    .trust-item:last-child { border-bottom: none; }
    .form-card-header { padding: 24px 24px; }
    .form-card-body { padding: 24px 24px; }
    .section-heading { font-size: 26px; }
}
