/* ======================================
   STICKY FOOTER LAYOUT
   ====================================== */
html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content-wrapper {
    flex: 1 0 auto;
}

footer {
    margin-top: auto;
}

/* ======================================
   CONTACT PAGE LAYOUT ONLY
   ====================================== */
.contact-main {
    max-width: 1100px;
}

.page-content-card {
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    padding: 1rem;
}

/* Fix contrast for links and small text in info cards */
.info-card a,
.info-card a.small {
    color: #002244;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.info-card a:hover,
.info-card a:focus {
    color: #00152e;
    text-decoration-thickness: 2px;
}

.info-card .small,
.info-card .text-muted {
    color: #555555;
}



.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0.5rem 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 0.3rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.trust-row span::before {
    content: "✔";
    color: #198754;
    font-weight: bold;
    margin-right: 0.25rem;
}

.contact-fast-response {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-fast-response .label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    opacity: 0.8;
}

.contact-fast-response strong {
    font-size: 0.95rem;
}

/* ======================================
   FORM LABEL UTILITY (shared)
   ====================================== */
.form-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem; /* similar visual weight to h6 */
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* ======================================
   INSTAGRAM PREVIEW ROW
   ====================================== */
.ig-preview-row {
    display: flex;
    gap: 0.5rem;
}

.ig-preview-row a {
    display: inline-block;
}

.ig-preview-row img {
    display: block;
    max-width: 100px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* Ensure hero has a stable height on contact page */
.hero {
    min-height: 380px; /* adjust to taste: 360–420px range is usually good */
}
.hero-subtitle {
    line-height: 1.5;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}