:root {
    --page-bg: #FFF7F2;
    --surface: #ffffff;
    --surface-soft: #fff0e8;
    --text: #101c44;
    --muted: #62708d;
    --accent: #2FA7A0;
    --accent-dark: #1d7a74;
    --accent-soft: #7FAF8F;
    --accent-soft-strong: #5d9470;
    --accent-btn: #F28B82;
    --accent-btn-hover: #e06b60;
    --primary: #7FAF8F;
    --secondary: #2FA7A0;
    --border: #e8d5c8;
    --footer-bg: #1d7a74;
    --footer-text: #e8f5f4;
    --shadow: 0 24px 60px rgba(47, 167, 160, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(127, 175, 143, 0.2), transparent 20%),
        radial-gradient(circle at top right, rgba(47, 167, 160, 0.08), transparent 24%),
        linear-gradient(180deg, #fffaf7 0%, var(--page-bg) 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(215, 222, 242, 0.9);
    box-shadow: 0 12px 28px rgba(16, 21, 133, 0.06);
}

.pre-header {
    color: #fff;
    background: linear-gradient(90deg, var(--accent-dark) 0%, var(--secondary) 100%);
}

.pre-header-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
}

.pre-header-item i {
    font-size: 0.9rem;
    color: var(--accent-soft);
}

.pre-header-item strong {
    color: var(--accent-soft);
    font-weight: 700;
}

.pre-header-badge {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(223, 249, 148, 0.18);
    border: 1px solid rgba(223, 249, 148, 0.35);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-top {
    border-bottom: 1px solid rgba(215, 222, 242, 0.8);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.site-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: 72px;
    object-fit: contain;
}

.brand-tagline {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.header-search-group {
    position: relative;
    min-width: min(100%, 310px);
}

.header-search-group i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--accent);
    pointer-events: none;
}

.header-search-control {
    min-height: 56px;
    padding-left: 46px;
    border: 1px solid rgba(16, 21, 133, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-search-control:focus {
    border-color: rgba(16, 21, 133, 0.28);
    box-shadow: 0 0 0 0.2rem rgba(16, 21, 133, 0.08);
}

.header-summary {
    gap: 6px;
    text-align: right;
}

.header-summary-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.header-summary-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.header-contact-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    min-height: 62px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(223, 249, 148, 0.6);
    color: var(--accent-dark);
    font-weight: 800;
}

.header-contact-copy {
    display: grid;
    gap: 3px;
}

.header-contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.header-contact-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.btn.btn-primary,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-btn), var(--accent-btn-hover));
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(242, 139, 130, 0.35);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--accent-btn-hover), var(--accent-btn));
    transform: translateY(-1px);
}

.site-cta-btn {
    white-space: nowrap;
}

.site-navbar {
    min-height: 72px;
}

.site-navbar .navbar-toggler {
    margin: 12px 0;
    padding: 10px 12px;
    border: 1px solid rgba(16, 21, 133, 0.14);
    border-radius: 14px;
    box-shadow: none;
}

.site-nav-list {
    width: 100%;
}

.site-navbar .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 22px 14px;
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.show {
    color: var(--accent);
}

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after,
.site-navbar .nav-link.show::after {
    transform: scaleX(1);
}

.site-navbar .dropdown-toggle::before {
    display: none;
}

.site-navbar .dropdown-toggle::after {
    display: none;
}

.nav-link-icon {
    font-size: 0.78rem;
    color: #8895b4;
    transition: transform 0.2s ease, color 0.2s ease;
}

.site-dropdown-menu {
    min-width: 260px;
    padding: 14px 0;
    border: 1px solid rgba(16, 21, 133, 0.08);
    border-radius: 20px;
    box-shadow: 0 26px 50px rgba(16, 21, 133, 0.12);
}

.site-dropdown-menu .dropdown-item {
    padding: 10px 18px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

.site-dropdown-menu .dropdown-item:not(.dropdown-title) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-dropdown-menu .dropdown-item:hover,
.site-dropdown-menu .dropdown-item:focus {
    color: var(--accent);
    background: rgba(16, 21, 133, 0.04);
}

.site-dropdown-menu .dropdown-item:not(.dropdown-title):hover::after,
.site-dropdown-menu .dropdown-item:not(.dropdown-title):focus::after {
    color: var(--accent);
    transform: translateX(3px);
}

.site-dropdown-menu .dropdown-title {
    color: var(--accent);
    font-weight: 800;
}

.page-content {
    min-height: calc(100vh - 520px);
    padding: 0;
}

/* ===== HOMEPAGE SHARED ===== */
.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(16, 21, 133, 0.07);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hp-section-title {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hp-section-sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 600px;
}

.hp-section {
    padding: 90px 0;
}

.hp-section-head {
    margin-bottom: 52px;
}

.hp-section-head .hp-section-sub {
    margin: 0 auto;
}

/* ===== HERO ===== */
.hp-hero {
    padding: 80px 0 90px;
    background:
        radial-gradient(ellipse at top left, rgba(127, 175, 143, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(47, 167, 160, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #fffaf7 0%, var(--page-bg) 100%);
    overflow: hidden;
}

.hp-hero-title {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text);
}

.hp-hero-sub {
    margin: 0 0 32px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 520px;
}

.hp-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hp-btn-main {
    min-height: 54px;
    padding: 0 28px;
    font-size: 0.9rem;
}

.hp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.hp-btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

.hp-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
}

.hp-trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* Hero visual */
.hp-hero-visual {
    position: relative;
    padding: 20px 20px 20px 0;
}

.hp-hero-img-wrap {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(16, 21, 133, 0.16);
}

.hp-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hp-hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 21, 133, 0.14);
    border: 1px solid var(--border);
}

.hp-hero-badge i {
    font-size: 1.4rem;
    color: var(--accent);
}

.hp-hero-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.hp-hero-badge span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

.hp-badge-1 {
    bottom: 40px;
    left: -20px;
}

.hp-badge-2 {
    top: 40px;
    right: -10px;
}

/* ===== QUICK BENEFITS ===== */
.hp-benefits {
    padding: 90px 0;
    background: #fff;
}

.hp-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hp-benefit-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(16, 21, 133, 0.08);
    transform: translateY(-2px);
}

.hp-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-soft-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-dark);
    flex-shrink: 0;
}

.hp-benefit-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.hp-benefit-item span {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.hp-how {
    background: var(--surface-soft);
}

.hp-step-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(16, 21, 133, 0.06);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(16, 21, 133, 0.1);
}

.hp-step-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(16, 21, 133, 0.06);
    line-height: 1;
}

.hp-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-soft-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-dark);
    margin-bottom: 18px;
}

.hp-step-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
}

.hp-step-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== SERVICES ===== */
.hp-services {
    background: #fff;
}

.hp-service-card {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hp-service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 36px rgba(16, 21, 133, 0.1);
    transform: translateY(-3px);
}

.hp-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-soft-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-dark);
    margin-bottom: 14px;
}

.hp-service-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}

.hp-service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.hp-why {
    background: var(--surface-soft);
}

.hp-why-card {
    padding: 32px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(16, 21, 133, 0.09);
}

.hp-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 21, 133, 0.08), rgba(16, 21, 133, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.hp-why-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}

.hp-why-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== STATS ===== */
.hp-stats {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--secondary) 100%);
}

.hp-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hp-stat-num {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hp-stat-plus {
    font-size: 1.6rem;
    color: var(--accent-soft);
}

.hp-stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== TESTIMONIALS ===== */
.hp-testimonials {
    background: #fff;
}

.hp-testi-card {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hp-testi-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hp-testi-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0;
    flex: 1;
    font-style: italic;
}

.hp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.hp-testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.hp-testi-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.hp-testi-author span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ===== HOST HOME CTA ===== */
.hp-host-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #1d7a74 0%, #2FA7A0 60%, #3dbdb5 100%);
    position: relative;
    overflow: hidden;
}

.hp-host-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hp-host-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hp-host-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin: 0 0 24px;
    max-width: 500px;
}

.hp-host-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-host-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.hp-host-perks li i {
    color: var(--accent-soft);
    font-size: 0.85rem;
}

.hp-host-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.hp-host-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* ===== CONTACT ===== */
.hp-contact {
    background: var(--surface-soft);
}

.hp-contact-card {
    background: #fff;
    border-radius: 28px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(16, 21, 133, 0.08);
}

.hp-input {
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--surface-soft);
    padding: 12px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hp-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 21, 133, 0.08);
    background: #fff;
    outline: none;
}

textarea.hp-input {
    min-height: auto;
    resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    color: var(--footer-text);
    background: linear-gradient(160deg, #1d7a74 0%, #155c57 50%, #0d3d3a 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
}

.footer-main-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

/* Col 1 */
.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: var(--accent-soft);
    border-color: var(--accent-soft);
    color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Link columns */
.footer-title {
    margin: 0 0 18px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Legal bar */
.footer-legal {
    position: relative;
    z-index: 1;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.footer-legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #fff;
}

@media (max-width: 1199.98px) {
    .site-header {
        position: static;
    }

    .header-tools {
        justify-content: flex-start;
    }

    .site-navbar .navbar-collapse {
        padding: 12px 0 20px;
    }

    .site-navbar .nav-link {
        padding: 12px 0;
    }

    .site-navbar .nav-link::after {
        left: 0;
        right: auto;
        width: 72px;
        bottom: 2px;
    }

    .site-dropdown-menu {
        min-width: 100%;
        margin-top: 4px;
        border-radius: 16px;
        box-shadow: none;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .site-navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .site-navbar .dropdown:hover > .nav-link,
    .site-navbar .dropdown:focus-within > .nav-link {
        color: var(--accent);
    }

    .site-navbar .dropdown:hover > .nav-link::after,
    .site-navbar .dropdown:focus-within > .nav-link::after {
        transform: scaleX(1);
    }

    .site-navbar .dropdown:hover > .nav-link .nav-link-icon,
    .site-navbar .dropdown:focus-within > .nav-link .nav-link-icon,
    .site-navbar .dropdown > .nav-link.show .nav-link-icon {
        color: var(--accent);
        transform: rotate(180deg);
    }
}

@media (max-width: 991.98px) {
    .site-logo {
        height: 60px;
    }

    .header-contact-card {
        width: 100%;
        justify-content: flex-start;
    }

    .header-search-group {
        width: 100%;
    }

    .hp-hero {
        padding: 60px 0 70px;
    }

    .hp-hero-img {
        height: 340px;
    }

    .hp-badge-1,
    .hp-badge-2 {
        display: none;
    }

    .hp-host-img {
        height: 280px;
    }

    .hp-contact-card {
        padding: 32px 24px;
    }
}

@media (max-width: 767.98px) {
    .site-logo {
        height: 52px;
    }

    .pre-header-right,
    .header-tools,
    .site-cta-btn {
        width: 100%;
    }

    .footer-legal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .hp-hero {
        padding: 48px 0 56px;
        text-align: center;
    }

    .hp-hero-btns {
        justify-content: center;
    }

    .hp-hero-trust {
        justify-content: center;
    }

    .hp-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hp-hero-visual {
        padding: 0;
    }

    .hp-hero-img {
        height: 260px;
    }

    .hp-section {
        padding: 60px 0;
    }

    .hp-stats {
        padding: 50px 0;
    }

    .hp-host-cta {
        padding: 60px 0;
    }

    .hp-host-sub {
        max-width: 100%;
    }

    .hp-contact-card {
        padding: 28px 20px;
    }
}

/* ================================================
   CONTACT PAGE
   ================================================ */

/* Page Hero */
.pg-hero {
    padding: 72px 0 60px;
    background:
        radial-gradient(ellipse at top left, rgba(127, 175, 143, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(47, 167, 160, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #fffaf7 0%, var(--page-bg) 100%);
    border-bottom: 1px solid var(--border);
}

.pg-hero-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text);
}

.pg-hero-sub {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
}

/* Info Cards */
.ct-info-section {
    padding: 60px 0;
    background: #fff;
}

.ct-info-card {
    padding: 32px 28px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    text-align: center;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ct-info-card:hover {
    border-color: var(--accent);
    box-shadow: 0 14px 40px rgba(16, 21, 133, 0.09);
    transform: translateY(-3px);
}

.ct-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-soft-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-dark);
    margin: 0 auto 18px;
}

.ct-info-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}

.ct-info-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 12px;
    line-height: 1.6;
}

.ct-info-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.6;
}

a.ct-info-link:hover {
    color: var(--accent-dark);
}

/* Main Contact Section */
.ct-main-section {
    padding: 80px 0 90px;
    background: var(--surface-soft);
}

/* Form Card */
.ct-form-card {
    background: #fff;
    border-radius: 28px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(16, 21, 133, 0.07);
}

.ct-form-head {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.ct-form-head h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.ct-form-head p {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

.ct-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ct-label span {
    color: #e53e3e;
}

/* Sidebar Cards */
.ct-sidebar-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(16, 21, 133, 0.05);
}

.ct-sidebar-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
}

.ct-sidebar-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

/* Quick Contact Card */
.ct-quick-card {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--secondary) 100%);
    border-color: transparent;
}

.ct-quick-card h4 {
    color: #fff;
}

.ct-quick-card p {
    color: rgba(255, 255, 255, 0.75);
}

.ct-quick-card .hp-btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.ct-quick-card .hp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* Social Row */
.ct-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ct-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ct-social-btn i {
    font-size: 1rem;
    color: var(--accent);
    width: 18px;
    text-align: center;
}

.ct-social-btn:hover {
    border-color: var(--accent);
    background: rgba(16, 21, 133, 0.04);
    color: var(--accent);
}

/* FAQ List */
.ct-faq-card {
    background: var(--surface-soft);
}

.ct-faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ct-faq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.ct-faq-item:hover {
    background: rgba(16, 21, 133, 0.05);
}

.ct-faq-item i {
    font-size: 0.7rem;
    color: var(--accent);
    flex-shrink: 0;
}

.ct-faq-item a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s ease;
}

.ct-faq-item a:hover {
    color: var(--accent);
}

/* Map Section */
.ct-map-section {
    padding: 80px 0 0;
    background: #fff;
}

.ct-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 16px 50px rgba(16, 21, 133, 0.08);
}

/* Contact Page Responsive */
@media (max-width: 991.98px) {
    .ct-form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 767.98px) {
    .pg-hero {
        padding: 52px 0 44px;
    }

    .ct-form-card {
        padding: 28px 20px;
    }

    .ct-social-row {
        grid-template-columns: 1fr 1fr;
    }

    .ct-map-section {
        padding: 60px 0 0;
    }
}

/* ================================================
   OUR BRANDS PAGE
   ================================================ */

.brand-row {
    padding-bottom: 20px;
}

.brand-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0 60px;
}

.brand-visual-wrap {
    position: relative;
    border-radius: 28px;
    overflow: visible;
}

.brand-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    box-shadow: 0 24px 60px rgba(47, 167, 160, 0.15);
}

.brand-badge {
    position: absolute;
    bottom: -18px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(47, 167, 160, 0.3);
}

.brand-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.brand-name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--text);
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.brand-name span {
    color: var(--secondary);
}

.brand-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}

.brand-features li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(47, 167, 160, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ================================================
   HISTORY & MISSION PAGE
   ================================================ */

.mv-card {
    padding: 36px 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(47, 167, 160, 0.1);
}

.mv-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(47, 167, 160, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.mv-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
}

.mv-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.story-img-wrap {
    position: relative;
}

.story-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    box-shadow: 0 28px 70px rgba(47, 167, 160, 0.15);
}

.story-img-badge {
    position: absolute;
    bottom: -18px;
    right: 28px;
    padding: 16px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 36px rgba(47, 167, 160, 0.12);
    text-align: center;
}

.story-img-badge strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.story-img-badge span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 40px;
    position: relative;
}

.timeline-item.timeline-right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--secondary);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-year {
    position: absolute;
    top: 18px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.timeline-item:not(.timeline-right) .timeline-year {
    right: calc(50% + 52px);
}

.timeline-item.timeline-right .timeline-year {
    left: calc(50% + 52px);
}

.timeline-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 6px 24px rgba(47, 167, 160, 0.07);
    max-width: 380px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(47, 167, 160, 0.12);
}

.timeline-card-active {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(47,167,160,0.04), rgba(127,175,143,0.06));
}

.timeline-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}

.timeline-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767.98px) {
    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item.timeline-right {
        justify-content: flex-start;
        padding-left: 56px;
        padding-right: 0;
    }
    .timeline-dot { left: 20px; }
    .timeline-year { left: 56px !important; right: auto !important; top: -22px; }
    .timeline-card { max-width: 100%; }
    .timeline-item { margin-bottom: 50px; }
}

/* ================================================
   FAQ PAGE
   ================================================ */

.faq-search-wrap .header-search-group {
    min-width: unset;
}

.faq-cat-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.faq-cat-list {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.faq-cat-list::-webkit-scrollbar { display: none; }

.faq-cat-btn {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-cat-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.faq-cat-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.faq-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.faq-group-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(47, 167, 160, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-group-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.faq-accordion {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-item {
    border: none;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-btn {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    background: #fff;
    padding: 20px 24px;
    box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
    color: var(--secondary);
    background: rgba(47, 167, 160, 0.04);
}

.faq-btn::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232FA7A0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-body {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    padding: 4px 24px 22px;
    background: rgba(47, 167, 160, 0.02);
}

.faq-sidebar {
    position: sticky;
    top: 80px;
}

@media (max-width: 991.98px) {
    .brand-img { height: 280px; }
    .story-img { height: 300px; }
    .faq-sidebar { position: static; }
}

@media (max-width: 767.98px) {
    .brand-img { height: 220px; }
    .brand-badge { bottom: -14px; left: 16px; }
}

/* ================================================
   RESOURCES PAGE
   ================================================ */

.rs-cat-section {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.rs-cat-list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 14px 0;
    scrollbar-width: none;
}

.rs-cat-list::-webkit-scrollbar { display: none; }

.rs-cat-btn {
    white-space: nowrap;
    padding: 8px 22px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rs-cat-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.rs-cat-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Main Section */
.rs-main-section {
    padding: 70px 0 80px;
    background: var(--surface-soft);
}

/* Featured Card */
.rs-featured-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(47, 167, 160, 0.08);
}

.rs-featured-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.rs-featured-title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 900;
    color: var(--text);
    margin: 12px 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.rs-featured-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 16px;
}

/* Tags */
.rs-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rs-tag-caregiver { background: rgba(47, 167, 160, 0.12); color: var(--accent-dark); }
.rs-tag-family    { background: rgba(242, 139, 130, 0.12); color: #c0392b; }
.rs-tag-host      { background: rgba(127, 175, 143, 0.18); color: var(--accent-soft-strong); }
.rs-tag-health    { background: rgba(16, 21, 133, 0.08);  color: #1a237e; }
.rs-tag-legal     { background: rgba(245, 166, 35, 0.12); color: #b7770d; }

/* Meta */
.rs-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
}

.rs-meta i { color: var(--accent); }

/* Resource Cards */
.rs-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(47, 167, 160, 0.12);
}

.rs-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.rs-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rs-card:hover .rs-card-img {
    transform: scale(1.04);
}

.rs-card-img-wrap .rs-tag {
    position: absolute;
    top: 14px;
    left: 14px;
}

.rs-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.rs-card-body h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

.rs-card-body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.rs-read-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: auto;
    transition: color 0.2s ease, gap 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rs-read-link:hover { color: var(--accent-dark); }

/* Tools Section */
.rs-tools-section {
    background: #fff;
}

.rs-tool-card {
    padding: 32px 28px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    text-align: center;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rs-tool-card:hover {
    border-color: var(--accent);
    box-shadow: 0 14px 40px rgba(47, 167, 160, 0.1);
    transform: translateY(-3px);
}

.rs-tool-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-soft-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-dark);
    margin: 0 auto 18px;
}

.rs-tool-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}

.rs-tool-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 18px;
}

.rs-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.rs-download-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* Subscribe Form */
.rs-subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.rs-subscribe-input {
    flex: 1;
    min-width: 240px;
    border-radius: 999px !important;
}

/* Resources Responsive */
@media (max-width: 991.98px) {
    .rs-featured-img { min-height: 260px; }
}

@media (max-width: 767.98px) {
    .rs-main-section { padding: 50px 0 60px; }
    .rs-featured-img { min-height: 220px; }
    .rs-subscribe-form { flex-direction: column; align-items: stretch; }
    .rs-subscribe-input { min-width: unset; }
}

/* ================================================
   LEADERSHIP TEAM PAGE
   ================================================ */

/* Mission Strip */
.lt-mission-strip {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.lt-mission-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lt-mission-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(47, 167, 160, 0.1);
}

.lt-mission-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-soft-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-dark);
    flex-shrink: 0;
}

.lt-mission-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
}

.lt-mission-item span {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Executive Section */
.lt-section {
    padding: 90px 0 70px;
    background: var(--surface-soft);
}

.lt-exec-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 40px rgba(47, 167, 160, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lt-exec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(47, 167, 160, 0.14);
}

.lt-exec-img-wrap {
    position: relative;
    overflow: hidden;
}

.lt-exec-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.3s ease;
}

.lt-exec-card:hover .lt-exec-img {
    transform: scale(1.04);
}

.lt-exec-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(47, 167, 160, 0.35);
}

.lt-exec-body {
    padding: 28px;
}

.lt-exec-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.lt-exec-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
}

.lt-exec-bio {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 16px;
}

.lt-exec-creds {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}

.lt-exec-creds span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
}

.lt-exec-creds i {
    color: var(--accent);
    width: 14px;
}

.lt-social-row {
    display: flex;
    gap: 8px;
}

.lt-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 0.85rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lt-social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Team Section */
.lt-team-section {
    background: #fff;
}

.lt-team-card {
    background: var(--surface-soft);
    border-radius: 22px;
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lt-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(47, 167, 160, 0.1);
    border-color: var(--accent);
}

.lt-team-avatar-wrap {
    overflow: hidden;
}

.lt-team-avatar {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.3s ease;
}

.lt-team-card:hover .lt-team-avatar {
    transform: scale(1.05);
}

.lt-team-body {
    padding: 22px 20px;
}

.lt-team-body h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 4px;
}

.lt-team-role {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.lt-team-body p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 14px;
}

.lt-team-contact {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.lt-team-contact:hover { color: var(--accent-dark); }

/* Leadership Responsive */
@media (max-width: 991.98px) {
    .lt-section { padding: 60px 0 50px; }
    .lt-exec-img { height: 240px; }
}

@media (max-width: 767.98px) {
    .lt-mission-strip { padding: 30px 0; }
    .lt-exec-img { height: 220px; }
    .lt-team-avatar { height: 180px; }
}
