/* ===== Heritage On The Air - Shared Page Styles ===== */

:root {
    --hota-khaki: #b49977;
    --hota-khaki-light: #c9b199;
    --hota-khaki-dark: #967a5a;
    --hota-khaki-pale: #f5efe8;
    --hota-dark: #2e3842;
    --hota-dark-light: #3a4752;
    --hota-cream: #faf7f2;
    --hota-gold: #d4a855;
    --hota-text: #4a4a4a;
}

/* ---- Base Resets ---- */
body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hota-text);
    background: var(--hota-cream);
}

a {
    color: var(--hota-khaki-dark);
    text-decoration: none;
    border-bottom: none;
}

a:hover {
    color: var(--hota-khaki);
}

strong, b {
    color: inherit;
}

/* ---- Modern Navbar ---- */
.hota-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(46, 56, 66, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(180, 153, 119, 0.15);
    transition: all 0.3s ease;
}

.hota-navbar.scrolled {
    background: rgba(46, 56, 66, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hota-navbar .navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.hota-navbar .navbar-brand img:hover {
    transform: scale(1.05);
}

.hota-navbar .navbar-toggler {
    border: 1px solid rgba(180, 153, 119, 0.4);
    padding: 0.4rem 0.65rem;
}

.hota-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(180, 153, 119, 0.25);
}

.hota-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(180, 153, 119, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hota-navbar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.3s ease;
    border: none;
}

.hota-navbar .nav-link:hover,
.hota-navbar .nav-link.active {
    color: var(--hota-khaki-light) !important;
    border: none;
}

.hota-navbar .nav-cta {
    background: var(--hota-khaki);
    color: #fff !important;
    border-radius: 50px;
    padding: 0.4rem 1.2rem !important;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.hota-navbar .nav-cta:hover {
    background: var(--hota-khaki-dark);
    color: #fff !important;
}

.hota-navbar .dropdown-menu {
    background: var(--hota-dark);
    border: 1px solid rgba(180, 153, 119, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    min-width: 200px;
}

.hota-navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.hota-navbar .dropdown-item:hover,
.hota-navbar .dropdown-item:focus {
    color: #fff;
    background: rgba(180, 153, 119, 0.15);
}

.hota-navbar .dropdown-item i {
    color: var(--hota-khaki);
    width: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .hota-navbar .navbar-collapse {
        background: var(--hota-dark);
        margin: 0.5rem -1rem -0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(180, 153, 119, 0.15);
    }
    .hota-navbar .nav-link {
        padding: 0.65rem 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .hota-navbar .nav-cta {
        display: inline-block;
        margin: 0.5rem 0 0;
    }
}

/* ---- Page Hero Banner ---- */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--hota-dark) 0%, var(--hota-dark-light) 50%, var(--hota-khaki-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/overlay.webp') repeat;
    opacity: 0.08;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--hota-cream), transparent);
}

.page-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.page-hero .hero-line {
    width: 60px;
    height: 3px;
    background: var(--hota-khaki);
    margin: 0 auto 1.25rem;
}

.page-hero p {
    color: var(--hota-khaki-light);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Content Sections ---- */
.page-content {
    background: var(--hota-cream);
    padding: 5rem 0;
}

.page-content.alt-bg {
    background: #fff;
}

.page-content.dark-bg {
    background: var(--hota-dark);
    color: #fff;
}

.page-content.dark-bg h2,
.page-content.dark-bg h3 {
    color: #fff;
}

.content-card {
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(180, 153, 119, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.content-card h3 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hota-dark);
    margin-bottom: 1.5rem;
}

.content-card h4 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hota-khaki-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hota-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-card p,
.content-card li {
    font-size: 0.95rem;
    color: var(--hota-text);
    line-height: 1.8;
}

.content-card hr {
    border: none;
    height: 2px;
    background: var(--hota-khaki-pale);
    margin: 2.5rem 0;
}

/* ---- Section Headers ---- */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hota-dark);
    margin-bottom: 1rem;
}

.section-header .section-line {
    width: 60px;
    height: 3px;
    background: var(--hota-khaki);
    margin: 0 auto 1.5rem;
}

.section-header p {
    font-size: 1rem;
    color: #777;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- Data Tables ---- */
.hota-table-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(180, 153, 119, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hota-table-wrap .table {
    margin-bottom: 0;
}

.hota-table-wrap .table thead th {
    background: var(--hota-dark);
    color: #fff;
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    border: none;
    white-space: nowrap;
}

.hota-table-wrap .table tbody td {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    color: var(--hota-text);
    vertical-align: middle;
    border-color: rgba(180, 153, 119, 0.1);
}

.hota-table-wrap .table tbody tr:hover {
    background: var(--hota-khaki-pale);
}

.hota-table-wrap .table tbody tr:last-child td {
    border-bottom: none;
}

.hota-table-wrap .table a {
    color: var(--hota-khaki-dark);
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.hota-table-wrap .table a:hover {
    color: var(--hota-khaki);
    border: none;
}

/* ---- Leaderboard Cards ---- */
.leaderboard-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(180, 153, 119, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leaderboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.leaderboard-card .card-header-custom {
    background: var(--hota-dark);
    color: #fff;
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.leaderboard-card .card-header-custom h4 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

.leaderboard-card .card-header-custom.khaki-header {
    background: linear-gradient(135deg, var(--hota-khaki-dark), var(--hota-khaki));
}

.position-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
}

.position-badge.gold {
    background: linear-gradient(135deg, #f7d96e, #d4a855);
    color: #5a4200;
}

.position-badge.silver {
    background: linear-gradient(135deg, #e0e0e0, #b8b8b8);
    color: #444;
}

.position-badge.bronze {
    background: linear-gradient(135deg, #d4a07a, #b27d5a);
    color: #fff;
}

.position-badge.default {
    background: var(--hota-khaki-pale);
    color: var(--hota-text);
}

/* ---- Tabs (Rules bilingual) ---- */
.hota-tabs .nav-tabs {
    border-bottom: 2px solid var(--hota-khaki-pale);
    gap: 0.25rem;
}

.hota-tabs .nav-tabs .nav-link {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hota-text);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.85rem 1.5rem;
    transition: all 0.3s ease;
    background: none;
}

.hota-tabs .nav-tabs .nav-link:hover {
    color: var(--hota-khaki-dark);
    border-bottom-color: var(--hota-khaki-light);
}

.hota-tabs .nav-tabs .nav-link.active {
    color: var(--hota-khaki-dark);
    border-bottom-color: var(--hota-khaki);
    background: none;
}

.hota-tabs .tab-content {
    padding-top: 2rem;
}

/* ---- Contact Form ---- */
.hota-form .form-label {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hota-dark);
    margin-bottom: 0.5rem;
}

.hota-form .form-control {
    border: 2px solid rgba(180, 153, 119, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    color: var(--hota-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.hota-form .form-control:focus {
    border-color: var(--hota-khaki);
    box-shadow: 0 0 0 0.2rem rgba(180, 153, 119, 0.15);
}

.hota-form .form-control::placeholder {
    color: #aaa;
}

.hota-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-hota-primary {
    background: var(--hota-khaki);
    color: #fff;
    border: 2px solid var(--hota-khaki);
    padding: 0.8rem 2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hota-primary:hover {
    background: var(--hota-khaki-dark);
    border-color: var(--hota-khaki-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 153, 119, 0.3);
}

.btn-hota-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-hota-outline {
    background: transparent;
    color: var(--hota-khaki-dark);
    border: 2px solid var(--hota-khaki);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hota-outline:hover {
    background: var(--hota-khaki);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 153, 119, 0.3);
}

/* ---- Info Boxes (About page) ---- */
.info-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.info-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--hota-khaki), var(--hota-khaki-light));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.85rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hota-khaki);
    border: 3px solid var(--hota-cream);
    box-shadow: 0 0 0 3px var(--hota-khaki-light);
}

.timeline-item h4 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hota-dark);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.92rem;
    color: var(--hota-text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ---- Feature Icon Boxes ---- */
.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(180, 153, 119, 0.12);
    transition: all 0.35s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(180, 153, 119, 0.15);
    border-color: var(--hota-khaki-light);
}

.feature-box .icon-wrap {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: var(--hota-khaki-pale);
    color: var(--hota-khaki);
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    transition: all 0.35s ease;
}

.feature-box:hover .icon-wrap {
    background: var(--hota-khaki);
    color: #fff;
}

.feature-box h4 {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hota-dark);
    margin-bottom: 0.75rem;
}

.feature-box p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- News Section ---- */
.facebook-embed-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(180, 153, 119, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.facebook-embed-wrap iframe {
    border: none;
    border-radius: 8px;
    max-width: 100%;
}

/* ---- Site Modal ---- */
.hota-modal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.hota-modal .modal-header {
    background: var(--hota-dark);
    color: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
}

.hota-modal .modal-header .modal-title {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hota-modal .modal-header .btn-close {
    filter: invert(1);
}

.hota-modal .modal-body {
    padding: 2rem;
}

.hota-modal .modal-body p {
    font-size: 0.92rem;
    color: var(--hota-text);
    line-height: 1.8;
}

/* ---- Search/Filter Bar ---- */
.search-bar {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(180, 153, 119, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
}

.search-bar .form-control {
    border: 2px solid rgba(180, 153, 119, 0.2);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

.search-bar .form-control:focus {
    border-color: var(--hota-khaki);
    box-shadow: 0 0 0 0.15rem rgba(180, 153, 119, 0.15);
}

/* ---- Modern Footer ---- */
.hota-footer {
    background: var(--hota-dark);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.hota-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/assets/images/overlay.webp') repeat;
    opacity: 0.03;
}

.footer-top {
    position: relative;
    z-index: 2;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hota-khaki-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s ease;
    border: none;
}

.footer-links a:hover {
    color: var(--hota-khaki-light);
    border: none;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.footer-social a:hover {
    background: var(--hota-khaki);
    color: #fff;
    border: none;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    border: none;
}

.footer-bottom a:hover {
    color: var(--hota-khaki-light);
    border: none;
}

/* ---- Cookie Consent ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(46, 56, 66, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(180, 153, 119, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--hota-khaki-light);
    text-decoration: underline;
    border: none;
}

.cookie-banner .btn-cookie-accept {
    background: var(--hota-khaki);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner .btn-cookie-accept:hover {
    background: var(--hota-khaki-dark);
}

.cookie-banner .btn-cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner .btn-cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
}

/* ---- Site Modal (above navbar z-index 9999) ---- */
#siteModal {
    z-index: 10500 !important;
}
#siteModal + .modal-backdrop,
.modal-backdrop {
    z-index: 10499 !important;
}
.activation-photo {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.activation-photo:hover { opacity: 0.85; }
.activation-row {
    border-bottom: 1px solid rgba(180,153,119,0.15);
    padding: 0.75rem 0;
}
.activation-row:last-child { border-bottom: none; }

/* ---- Alerts ---- */
.hota-alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

.hota-alert.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.hota-alert.alert-danger {
    background: #ffebee;
    color: #c62828;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .page-hero {
        padding: 8rem 0 4rem;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .page-content {
        padding: 3.5rem 0;
    }
    .content-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 7rem 0 3rem;
    }
    .page-hero h1 {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    .page-hero p {
        font-size: 0.9rem;
    }
    .page-content {
        padding: 2.5rem 0;
    }
    .content-card {
        padding: 1.5rem;
    }
    .section-header h2 {
        font-size: 1.4rem;
    }
}

/* ---- Utility ---- */
.text-khaki {
    color: var(--hota-khaki) !important;
}

.bg-khaki {
    background-color: var(--hota-khaki) !important;
}

.text-hota-dark {
    color: var(--hota-dark) !important;
}

.btn-site-info{
	width:110px;
}