/* ============================================================
   HOTPACK TRACKER — Corporate Professional Theme
   Color Palette: Deep Navy + Amber Gold + Clean White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --hp-navy:       #0D1B2A;
    --hp-navy-mid:   #1A3251;
    --hp-navy-light: #243F63;
    --hp-gold:       #F0A500;
    --hp-gold-light: #F7C244;
    --hp-gold-pale:  #FDF3D8;
    --hp-white:      #FFFFFF;
    --hp-off-white:  #F4F6FA;
    --hp-border:     #DDE3EF;
    --hp-text:       #1C2B3A;
    --hp-muted:      #6B7A8D;
    --hp-success:    #1E8C5A;
    --hp-danger:     #C0392B;
    --hp-warning:    #E67E22;
    --hp-shadow-sm:  0 2px 8px rgba(13,27,42,0.08);
    --hp-shadow-md:  0 4px 20px rgba(13,27,42,0.14);
    --hp-shadow-lg:  0 8px 40px rgba(13,27,42,0.18);
    --hp-radius:     6px;
    --hp-radius-lg:  12px;
    --transition:    all 0.2s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--hp-text);
    background-color: var(--hp-off-white);
    padding-top: 64px;
    padding-bottom: 40px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    color: var(--hp-navy);
    letter-spacing: 0.01em;
    margin-top: 0;
}

h2 {
    font-size: 26px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--hp-gold);
    display: inline-block;
    margin-bottom: 24px;
}

h4 {
    font-size: 17px;
    color: var(--hp-navy-mid);
}

a {
    color: var(--hp-navy-mid);
    transition: var(--transition);
    text-decoration: none;
}
a:hover { color: var(--hp-gold); text-decoration: none; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
    background: linear-gradient(135deg, var(--hp-navy) 0%, var(--hp-navy-mid) 100%) !important;
    border: none !important;
    border-bottom: 3px solid var(--hp-gold) !important;
    box-shadow: var(--hp-shadow-md);
    min-height: 64px;
    padding: 0 20px;
}

.navbar-brand {
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

/* The actual logo image inside the navbar */
.navbar-logo {
    height: 38px;
    width: auto;
    display: block;
    /* White background pill so the logo is readable on dark navy */
    background: var(--hp-white);
    border-radius: 6px;
    padding: 3px 8px;
    object-fit: contain;
}

/* "Tracker" word-badge next to the logo */
.navbar-tracker-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--hp-gold);
    color: var(--hp-navy);
    padding: 2px 10px;
    border-radius: 4px;
    line-height: 1.4;
}

.navbar-nav > li > a {
    color: rgba(255,255,255,0.80) !important;
    font-weight: 500;
    font-size: 13.5px;
    padding: 22px 16px !important;
    letter-spacing: 0.3px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    color: var(--hp-gold) !important;
    background: rgba(240,165,0,0.08) !important;
}

/* User info in navbar */
.navbar-nav > li > a[title="Manage"] {
    color: var(--hp-gold-light) !important;
    font-weight: 600;
}

.navbar-toggle {
    border-color: rgba(255,255,255,0.3) !important;
}
.navbar-toggle .icon-bar { background-color: var(--hp-white) !important; }

/* ── Main Container ───────────────────────────────────────── */
.body-content {
    padding: 30px 24px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* ── Cards / Panels ───────────────────────────────────────── */
.card-panel {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    box-shadow: var(--hp-shadow-sm);
    padding: 28px 30px;
    margin-bottom: 24px;
    border: 1px solid var(--hp-border);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--hp-radius);
    padding: 7px 18px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--hp-navy-mid), var(--hp-navy));
    color: var(--hp-white) !important;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--hp-navy), var(--hp-navy-mid)); }

.btn-default {
    background: var(--hp-white);
    color: var(--hp-navy) !important;
    border: 1.5px solid var(--hp-border) !important;
    box-shadow: none;
}
.btn-default:hover { border-color: var(--hp-navy-mid) !important; background: var(--hp-off-white); }

.btn-success {
    background: linear-gradient(135deg, #27AE60, var(--hp-success));
    color: var(--hp-white) !important;
}

.btn-warning {
    background: linear-gradient(135deg, var(--hp-gold), #E6950A);
    color: var(--hp-navy) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #E74C3C, var(--hp-danger));
    color: var(--hp-white) !important;
}

.btn-sm { padding: 5px 12px; font-size: 11px; }
.btn-lg { padding: 11px 28px; font-size: 14px; }

/* ── Forms ────────────────────────────────────────────────── */
.form-control {
    height: 38px;
    font-family: 'Barlow', sans-serif;
    font-size: 13.5px;
    color: var(--hp-text);
    background: var(--hp-white);
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius);
    box-shadow: none !important;
    transition: border-color 0.15s ease;
    max-width: 100%;
    padding: 6px 12px;
}

.form-control:focus {
    border-color: var(--hp-navy-mid);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,50,81,0.10) !important;
}

label,
.control-label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hp-muted);
    margin-bottom: 5px;
}

input[type="date"].form-control { max-width: 100%; }

select.form-control { cursor: pointer; }
textarea.form-control { height: auto; min-height: 90px; }

/* ── Tables ───────────────────────────────────────────────── */
.table {
    font-size: 13.5px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    box-shadow: var(--hp-shadow-sm);
    border: 1px solid var(--hp-border);
    margin-top: 16px !important;
}

.table thead th {
    background: var(--hp-navy);
    color: var(--hp-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 15px;
    border: none !important;
    white-space: nowrap;
}

.table thead th:first-child { border-radius: var(--hp-radius-lg) 0 0 0; }
.table thead th:last-child  { border-radius: 0 var(--hp-radius-lg) 0 0; }

.table tbody tr {
    transition: background 0.15s ease;
}

.table tbody tr:hover td {
    background-color: #EDF2FA !important;
}

.table-striped tbody tr:nth-child(odd) td  { background-color: #FAFBFD; }
.table-striped tbody tr:nth-child(even) td { background-color: var(--hp-white); }

.table tbody td {
    padding: 11px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--hp-border) !important;
    border-top: none !important;
    color: var(--hp-text);
}

.table tbody tr:last-child td { border-bottom: none !important; }

/* Status badges in table */
.table td .badge-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.badge-open   { background: #E8F5E9; color: #1E8C5A; }
.badge-closed { background: #F0F0F0; color: #6B7A8D; }

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
    border: none;
    border-radius: var(--hp-radius);
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px 18px;
    border-left: 4px solid transparent;
}

.alert-success {
    background: #EAF7F0;
    color: var(--hp-success);
    border-left-color: var(--hp-success);
}

.alert-warning {
    background: #FEF5E4;
    color: var(--hp-warning);
    border-left-color: var(--hp-warning);
}

.alert-danger {
    background: #FDEDEC;
    color: var(--hp-danger);
    border-left-color: var(--hp-danger);
}

.alert-info {
    background: #EBF5FB;
    color: var(--hp-navy-mid);
    border-left-color: var(--hp-navy-mid);
}

/* ── Search / Filter Bar ──────────────────────────────────── */
.filter-bar {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 20px 22px;
    margin-bottom: 18px;
    box-shadow: var(--hp-shadow-sm);
}

.filter-bar label {
    display: block;
    margin-bottom: 4px;
}

/* ── Action Bar ───────────────────────────────────────────── */
.action-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
    text-align: center;
    font-size: 12px;
    color: var(--hp-muted);
    padding-top: 16px;
    border-top: 1px solid var(--hp-border);
    margin-top: 30px;
    letter-spacing: 0.3px;
}

footer strong { color: var(--hp-navy); }

/* ── Login / Auth Pages ───────────────────────────────────── */
.login-wrapper {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    box-shadow: var(--hp-shadow-lg);
    padding: 44px 44px 36px;
    width: 100%;
    max-width: 440px;
    border-top: 4px solid var(--hp-gold);
}

.login-logo {
    text-align: center;
    margin-bottom: 28px;
}

.login-logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin: 0 auto 10px;
    object-fit: contain;
}

.login-logo .app-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--hp-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 4px;
}

.login-logo .app-name span {
    color: var(--hp-gold);
    background: var(--hp-navy);
    padding: 1px 8px;
    border-radius: 3px;
    font-size: 13px;
}

.login-card h2 {
    font-size: 20px;
    border-bottom: none;
    margin-bottom: 22px;
    color: var(--hp-navy-mid);
    display: block;
}

.login-card .form-group { margin-bottom: 16px; }

.login-card .btn-primary {
    width: 100%;
    height: 42px;
    font-size: 13px;
}

/* ── Validation ───────────────────────────────────────────── */
.text-danger {
    font-size: 12px;
    color: var(--hp-danger);
    margin-top: 3px;
    display: block;
}

.field-validation-error { font-size: 12px; color: var(--hp-danger); }

.validation-summary-errors {
    background: #FDEDEC;
    border-left: 4px solid var(--hp-danger);
    border-radius: var(--hp-radius);
    padding: 10px 16px;
    margin-bottom: 16px;
}

.validation-summary-errors ul { margin: 0; padding-left: 18px; }
.validation-summary-errors li { font-size: 13px; color: var(--hp-danger); }

/* ── History Section ──────────────────────────────────────── */
#historyBlock {
    margin-top: 24px;
}

#historyBlock h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hp-muted);
    margin-bottom: 14px;
}

/* ── Checkbox Styling ─────────────────────────────────────── */
.checkbox label {
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--hp-text);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .body-content { padding: 20px 14px; }
    .login-card { padding: 32px 24px; }
    .filter-bar { padding: 16px 14px; }
    h2 { font-size: 22px; }

    .table { font-size: 12.5px; }
    .table thead th, .table tbody td { padding: 9px 10px; }
}

/* ── Utility ──────────────────────────────────────────────── */
.dl-horizontal dt { white-space: normal; }
.mt-0  { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.gap-8 { gap: 8px; }

/* Gold highlight bar used on page top headings */
.page-header-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.page-header-bar::before {
    content: '';
    display: block;
    width: 5px;
    height: 32px;
    background: var(--hp-gold);
    border-radius: 3px;
    flex-shrink: 0;
}
.page-header-bar h2 {
    margin: 0;
    border: none;
    padding: 0;
    font-size: 26px;
}


/* ============================================================
   HOME LANDING PAGE
   ============================================================ */

/* ── Hero Banner ─────────────────────────────────────────── */
.home-hero {
    position: relative;
    background: linear-gradient(135deg, var(--hp-navy) 0%, var(--hp-navy-mid) 60%, var(--hp-navy-light) 100%);
    border-radius: var(--hp-radius-lg);
    padding: 56px 48px 52px;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
}

/* Watermark logo */
.home-hero-watermark {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}
.home-hero-watermark img {
    height: 220px;
    width: auto;
    opacity: 0.06;
    filter: grayscale(1) brightness(5);
    object-fit: contain;
}

.home-hero-content { position: relative; z-index: 2; max-width: 640px; }

.home-hero-sub {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--hp-gold);
    margin: 0 0 12px;
}

.home-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--hp-white);
    line-height: 1.12;
    margin: 0 0 16px;
    border: none;
    padding: 0;
}
.home-hero-title span { color: var(--hp-gold); }

.home-hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0;
    max-width: 500px;
}

/* ── Stats Strip ─────────────────────────────────────────── */
.home-stats-strip {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-top: none;
    border-radius: 0 0 var(--hp-radius-lg) var(--hp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    margin-bottom: 32px;
    box-shadow: var(--hp-shadow-sm);
    flex-wrap: wrap;
    gap: 0;
}

.home-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 36px;
}

.home-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--hp-navy);
    line-height: 1;
}

.home-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hp-muted);
    margin-top: 3px;
    text-align: center;
}

.home-stat-div {
    width: 1px;
    height: 40px;
    background: var(--hp-border);
    flex-shrink: 0;
}

/* ── Section Header ─────────────────────────────────────── */
.home-section { margin-bottom: 32px; }

.home-section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
}
.home-section-header h2 {
    margin: 0;
    border: none;
    padding: 0;
    font-size: 22px;
    color: var(--hp-navy);
}
.home-section-header p {
    font-size: 13px;
    color: var(--hp-muted);
    margin: 0;
}

/* ── App Cards Grid ─────────────────────────────────────── */
.app-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.app-card {
    background: var(--hp-white);
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--hp-shadow-sm);
}

.app-card--active {
    border-color: var(--hp-navy-mid);
    cursor: pointer;
}

.app-card--active:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-lg);
    border-color: var(--hp-gold);
}

.app-card--coming {
    opacity: 0.68;
    cursor: default;
    filter: grayscale(0.3);
}

/* Icon area */
.app-card-icon {
    background: linear-gradient(135deg, var(--hp-navy) 0%, var(--hp-navy-light) 100%);
    color: var(--hp-white);
    padding: 22px 24px 18px;
    display: flex;
    align-items: flex-start;
}

.app-card--coming .app-card-icon {
    background: linear-gradient(135deg, #8A97A8 0%, #B0BAC6 100%);
}

/* Body */
.app-card-body {
    padding: 18px 22px 10px;
    flex: 1;
}

.app-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 2px 9px;
    border-radius: 20px;
    background: #E8F5E9;
    color: var(--hp-success);
    margin-bottom: 10px;
}

.app-card-tag--soon {
    background: #FEF5E4;
    color: var(--hp-warning);
}

.app-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-navy);
    margin: 0 0 8px;
}

.app-card-desc {
    font-size: 12.5px;
    color: var(--hp-muted);
    line-height: 1.55;
    margin: 0;
}

/* Footer */
.app-card-footer {
    padding: 12px 22px 16px;
    border-top: 1px solid var(--hp-border);
    margin-top: 12px;
}

.app-card-launch {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hp-navy-mid);
    transition: var(--transition);
}

.app-card--active:hover .app-card-launch {
    color: var(--hp-gold);
}

.app-card-launch--dim {
    color: var(--hp-muted);
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-lead {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-navy-mid);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-stats-box {
    background: var(--hp-off-white);
    border: 1px solid var(--hp-border);
    border-left: 4px solid var(--hp-gold);
    border-radius: var(--hp-radius);
    padding: 20px 22px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--hp-border);
}
.about-stat:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.about-stat span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--hp-navy);
    line-height: 1;
}
.about-stat label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--hp-muted);
    margin-top: 3px;
}

/* Values grid */
.about-values-row { margin-bottom: 10px; }

.about-value-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 22px 20px;
    height: 100%;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: var(--hp-shadow-sm);
}

.about-value-icon {
    font-size: 22px;
    color: var(--hp-gold);
    margin-bottom: 10px;
    display: block;
}

.about-value-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-navy);
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 12.5px;
    color: var(--hp-muted);
    line-height: 1.55;
    margin: 0;
}

/* Vision / Mission */
.about-vm-card { position: relative; overflow: hidden; }

.about-vm-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.about-vision { border-left: 4px solid var(--hp-gold); }
.about-vision .about-vm-label { color: var(--hp-gold); }

.about-mission { border-left: 4px solid var(--hp-navy-mid); }
.about-mission .about-vm-label { color: var(--hp-navy-mid); }

/* Industries tags */
.about-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-industries span {
    display: inline-block;
    background: var(--hp-off-white);
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hp-navy-mid);
    letter-spacing: 0.3px;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-intro {
    font-size: 14px;
    color: var(--hp-muted);
    margin-bottom: 24px;
    max-width: 620px;
}

.contact-info-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 6px 0;
    margin-bottom: 18px;
    box-shadow: var(--hp-shadow-sm);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 22px;
    border-bottom: 1px solid var(--hp-border);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
    font-size: 18px;
    color: var(--hp-gold);
    flex-shrink: 0;
    width: 26px;
    text-align: center;
    margin-top: 1px;
}

.contact-info-item label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--hp-muted);
    display: block;
    margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 13.5px;
    color: var(--hp-text);
    line-height: 1.5;
}
.contact-info-item a { color: var(--hp-navy-mid); }
.contact-info-item a:hover { color: var(--hp-gold); }

/* Social buttons */
.contact-social { margin-bottom: 20px; }
.contact-social label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hp-muted);
}

.contact-social-links { display: flex; gap: 8px; flex-wrap: wrap; }

.social-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    border: 1.5px solid var(--hp-border);
    color: var(--hp-text) !important;
    background: var(--hp-white);
}
.social-btn:hover { transform: translateY(-1px); box-shadow: var(--hp-shadow-sm); border-color: var(--hp-navy-mid); }

/* Map card */
.contact-map-panel { }

.contact-map-embed {
    border-radius: var(--hp-radius);
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--hp-border);
}

.contact-website-link {
    font-size: 13px;
    color: var(--hp-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-website-link a {
    font-weight: 700;
    color: var(--hp-navy-mid);
    font-size: 13.5px;
}
.contact-website-link a:hover { color: var(--hp-gold); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .home-hero { padding: 36px 24px 32px; }
    .home-hero-title { font-size: 30px; }
    .home-stats-strip { padding: 14px 16px; }
    .home-stat { padding: 6px 18px; }
    .home-stat-num { font-size: 22px; }
    .app-cards-grid { grid-template-columns: 1fr 1fr; }
    .home-hero-watermark img { height: 140px; }
}

@media (max-width: 480px) {
    .app-cards-grid { grid-template-columns: 1fr; }
    .home-stat-div { display: none; }
}
