:root {
    --gold: #d4af37;
    --gold-dark: #c19a2e;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

/* ==================== Buttons ==================== */
.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-weight: 600;
    transition: all .2s ease;
}
.btn-gold:hover, .btn-gold:focus {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--navy);
}
.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    transition: all .2s ease;
}
.btn-outline-gold:hover, .btn-outline-gold:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}
.btn-outline-light-custom {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    font-weight: 600;
    transition: all .2s ease;
}
.btn-outline-light-custom:hover, .btn-outline-light-custom:focus {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}
.text-gold {
    color: var(--gold) !important;
}
.badge-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .85rem;
    padding: .25rem .6rem;
    border-radius: .35rem;
}

/* ==================== Section Backgrounds & Padding ==================== */
.bg-section {
    background-color: var(--bg-light);
}
.bg-dark-section {
    background-color: var(--navy);
    color: #e2e8f0;
}
.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4,
.bg-dark-section h5,
.bg-dark-section h6 {
    color: #ffffff;
}
.bg-dark-section p {
    color: rgba(255, 255, 255, .8);
}
.section-padding {
    padding: 5rem 0;
}
.section-padding-sm {
    padding: 3rem 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    .section-padding-sm {
        padding: 2rem 0;
    }
}

/* ==================== Section Headings ==================== */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gold);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.bg-dark-section .section-title {
    color: #ffffff;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.bg-dark-section .section-subtitle {
    color: rgba(255, 255, 255, .7);
}
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }
}

/* ==================== Hero Sections ==================== */
.hero-slider .carousel-item {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-slider .carousel-item .container {
    position: relative;
    z-index: 2;
}
.hero-section {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 6rem 0;
}
.hero-content {
    max-width: 700px;
    padding: 2rem 0;
    margin: 0 auto;
}
.hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}
.hero-content p {
    color: rgba(255, 255, 255, .92);
    font-size: 1.15rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, .2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: .4rem 1rem;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}
@media (max-width: 768px) {
    .hero-slider .carousel-item,
    .hero-section {
        min-height: 480px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* ==================== Page Hero (sub-page banners) ==================== */
.page-hero {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0 3rem;
}
.page-hero-content {
    max-width: 760px;
    padding: 2rem 0;
    margin: 0 auto;
}
.page-hero-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
    margin-bottom: 1rem;
}
.page-hero-content .hero-desc {
    color: rgba(255, 255, 255, .9);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
.page-hero .breadcrumb {
    margin-bottom: 1rem;
    justify-content: center;
}
.page-hero .breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}
.page-hero .breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, .8);
}
.page-hero .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}
@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        padding: 4rem 0 2rem;
    }
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
}

/* ==================== Stats Section ==================== */
.stats-section {
    padding: 3.5rem 0;
    background: var(--navy);
}
.stat-item {
    text-align: center;
    padding: 1.5rem;
}
.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-label {
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ==================== Cards: Hotel / Blog ==================== */
.hotel-card,
.blog-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0 !important;
    border-radius: .75rem;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease;
}
.hotel-card:hover,
.blog-card:hover {
    box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .12);
    transform: translateY(-4px);
}
.hotel-card-img,
.blog-card-img {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.hotel-card-img img,
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.hotel-card:hover .hotel-card-img img,
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.hotel-card-body,
.blog-card-body {
    padding: 1.75rem;
}
.hotel-card-body h4,
.hotel-card-body h5,
.blog-card-body h4,
.blog-card-body h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: .75rem;
}
.hotel-card-body p,
.blog-card-body p {
    color: var(--text-muted);
    line-height: 1.6;
}
.blog-card-meta {
    display: flex;
    gap: 1.25rem;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}

/* ==================== Feature Items ==================== */
.feature-item {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    padding: 2rem;
    height: 100%;
    transition: box-shadow .25s ease;
}
.feature-item:hover {
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
}
.bg-dark-section .feature-item {
    background: var(--navy-light);
    border-color: rgba(255, 255, 255, .08);
}
.bg-dark-section .feature-item h5 {
    color: #ffffff;
}
.bg-dark-section .feature-item p {
    color: rgba(255, 255, 255, .75);
}
.icon-feature {
    width: 56px;
    height: 56px;
    border-radius: .65rem;
    background: rgba(212, 175, 55, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* ==================== Service Cards ==================== */
.service-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    padding: 2rem;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease;
}
.service-card:hover {
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}
.bg-dark-section .service-card {
    background: var(--navy-light);
    border-color: rgba(255, 255, 255, .08);
}
.bg-dark-section .service-card h4,
.bg-dark-section .service-card h5 {
    color: #ffffff;
}
.bg-dark-section .service-card p {
    color: rgba(255, 255, 255, .75);
}
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: .65rem;
    background: rgba(212, 175, 55, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    margin-bottom: 1.25rem;
}

/* ==================== Testimonials ==================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    padding: 2.25rem;
    height: 100%;
    position: relative;
}
.testimonial-quote {
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .5rem;
    font-family: Georgia, serif;
}
.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.author-name {
    font-weight: 700;
    color: var(--text-dark);
}
.author-role {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ==================== Partners Grid ==================== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.partner-item {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85);
    padding: 1rem 2rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all .2s ease;
}
.partner-item:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==================== CTA Section ==================== */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 5rem 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
}
.cta-section p {
    color: rgba(255, 255, 255, .9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

/* ==================== Icon Panels ==================== */
.icon-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .65rem;
}
.bg-dark-section .icon-panel {
    background: var(--navy-light);
    border-color: rgba(255, 255, 255, .08);
}
.bg-dark-section .icon-panel h6 {
    color: #ffffff;
}
.bg-dark-section .icon-panel p {
    color: rgba(255, 255, 255, .75);
}
.icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: .5rem;
    background: rgba(212, 175, 55, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.icon-panel h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .25rem;
}
.icon-panel p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: .95rem;
}

/* ==================== Forms ==================== */
.site-form.card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .06);
}
.site-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
}
.site-form .form-control {
    padding: .7rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: .4rem;
}
.site-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(212, 175, 55, .15);
}

/* ==================== Map Section ==================== */
.map-section {
    padding: 3rem 0;
    background: var(--bg-light);
}
.map-wrap {
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .08);
}
.map-wrap iframe {
    display: block;
}

/* ==================== Callout Boxes ==================== */
.callout-box {
    background: var(--navy-light);
    border: 1px solid rgba(212, 175, 55, .2);
    border-left: 4px solid var(--gold);
    border-radius: .65rem;
    padding: 2rem;
}
.callout-box h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: .75rem;
}
.callout-box p {
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==================== Timeline ==================== */
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: .35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--bg-light);
    transform: translateX(-6px);
}
.timeline-date {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .35rem;
}
.timeline-content {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .65rem;
    padding: 1.5rem;
}
.timeline-content h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: .5rem;
}
.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==================== Team Cards ==================== */
.team-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .75rem;
    overflow: hidden;
    text-align: center;
}
.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.team-info {
    padding: 1.5rem;
}
.team-info h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: .25rem;
}
.team-role {
    color: var(--gold);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .75rem;
}
.team-info p {
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    line-height: 1.6;
}

/* ==================== Pricing Cards ==================== */
.price-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    padding: 2.25rem;
    height: 100%;
    position: relative;
    transition: box-shadow .25s ease, transform .25s ease;
}
.price-card:hover {
    box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .12);
    transform: translateY(-4px);
}
.bg-dark-section .price-card {
    background: var(--navy-light);
    border-color: rgba(255, 255, 255, .08);
}
.bg-dark-section .price-card h5 {
    color: #ffffff;
}
.price-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin: 1rem 0 1.5rem;
}
.price-amount small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.bg-dark-section .price-amount small {
    color: rgba(255, 255, 255, .6);
}
.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.price-features li {
    padding: .5rem 0;
    color: var(--text-dark);
    font-size: .95rem;
    border-bottom: 1px solid #f1f5f9;
}
.bg-dark-section .price-features li {
    color: rgba(255, 255, 255, .8);
    border-bottom-color: rgba(255, 255, 255, .06);
}
.price-features li i {
    color: var(--gold);
    margin-right: .6rem;
}

/* ==================== Comparison Table ==================== */
.comparison-table {
    color: var(--text-dark);
    border-color: rgba(15, 23, 42, .1);
    border-radius: .5rem;
    overflow: hidden;
}
.comparison-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    border-color: rgba(255, 255, 255, .1);
    padding: 1.25rem 1rem;
    vertical-align: bottom;
}
.comparison-table thead th a {
    color: var(--gold) !important;
    font-size: 1.05rem;
}
.comparison-table tbody td {
    background: #fff;
    color: var(--text-dark);
    border-color: rgba(15, 23, 42, .08);
    padding: 1rem;
    vertical-align: middle;
}
.comparison-table tbody tr:hover td {
    background: rgba(212, 175, 55, .06);
}
.comparison-table tbody tr:first-child td {
    border-top: none;
}
.comparison-table .badge-gold {
    font-size: .9rem;
    padding: .3rem .7rem;
}
.comparison-table .btn-gold {
    border-radius: .35rem;
}
@media (max-width: 768px) {
    .comparison-table thead th {
        min-width: 150px;
    }
    .comparison-table thead img {
        max-width: 120px !important;
        height: 75px !important;
    }
}

/* ==================== FAQ Accordion ==================== */
.faq-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .5rem !important;
    margin-bottom: .75rem;
    overflow: hidden;
}
.bg-dark-section .faq-accordion .accordion-item {
    background: var(--navy-light);
    border-color: rgba(255, 255, 255, .08);
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, .08);
    color: var(--gold-dark);
    box-shadow: none;
}
.bg-dark-section .faq-accordion .accordion-button {
    color: #ffffff;
}
.bg-dark-section .faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.faq-accordion .accordion-body {
    color: var(--text-muted);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.6;
}
.bg-dark-section .faq-accordion .accordion-body {
    color: rgba(255, 255, 255, .75);
}

/* ==================== Gallery ==================== */
.gallery-item {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    color: #ffffff;
    padding: 2rem 1.25rem 1.25rem;
    font-size: .95rem;
    font-weight: 600;
}

/* ==================== Blog Sidebar ==================== */
.blog-sidebar .list-unstyled a,
.col-lg-4 .card .list-unstyled a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}
.blog-sidebar .list-unstyled a:hover,
.col-lg-4 .card .list-unstyled a:hover {
    color: var(--gold-dark);
}

/* ==================== Social Links ==================== */
.social-links {
    display: flex;
    gap: .75rem;
}
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s ease;
}
.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ==================== Legal Content ==================== */
.legal-content {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    padding: 2.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}
.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    margin-bottom: 1rem;
}
.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content ul li {
    margin-bottom: .5rem;
}
.legal-content strong {
    color: var(--gold-dark);
}
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
}

/* ==================== Footer ==================== */
.site-footer {
    background-color: var(--navy) !important;
    padding-top: 4rem;
}
.site-footer .footer-heading {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.site-footer .footer-links a,
.site-footer .footer-legal-links a {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: color .2s ease;
}
.site-footer .footer-links a:hover,
.site-footer .footer-legal-links a:hover {
    color: var(--gold) !important;
}
.site-footer .footer-contact,
.site-footer .footer-contact p {
    color: rgba(255, 255, 255, .8) !important;
}
.site-footer .footer-contact a {
    color: #cbd5e1 !important;
}
.site-footer .footer-contact p {
    margin-bottom: .75rem;
}
.site-footer .footer-contact i {
    color: var(--gold);
    margin-right: .5rem;
}
.site-footer .footer-links li {
    margin-bottom: .5rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: flex-end;
}
.footer-legal-links a {
    font-size: .85rem;
}
@media (max-width: 768px) {
    .footer-legal-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* ==================== Header ==================== */
.site-header {
    background-color: var(--navy) !important;
    padding: .75rem 0;
}
.site-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-weight: 500;
    padding: .5rem 1rem !important;
}
.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
    color: #ffffff !important;
}
.site-header .navbar-toggler {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .5);
}
.site-header .navbar-toggler i {
    color: #ffffff;
}
.site-header .dropdown-menu {
    background-color: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, .1);
}
.site-header .dropdown-item {
    color: #ffffff;
    padding: .6rem 1.25rem;
}
.site-header .dropdown-item:hover {
    background-color: var(--navy);
    color: var(--gold);
}

/* ==================== Cookie Notice ==================== */
.site-cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 1.25rem 2rem;
    z-index: 9999;
    transition: bottom .4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.site-cookie-notice.site-cookie-visible {
    bottom: 0;
}
.site-cookie-text {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
}
.site-cookie-text i {
    color: var(--gold);
    font-size: 1.25rem;
}
.site-cookie-actions {
    display: flex;
    gap: .5rem;
    flex-shrink: 0;
}
.site-cookie-notice .btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
}
.site-cookie-notice .btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--navy);
}
.site-cookie-notice .btn-outline-gold {
    background-color: var(--navy-light);
    border: 1px solid var(--gold);
    color: #ffffff;
}
.site-cookie-notice .btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--navy);
}
@media (max-width: 768px) {
    .site-cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}
