/* @font-face declarations are in style-critical.css (inlined in <head>) */

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ===== Fonts ===== */
body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2d3e4a;
    background-color: #f2f4f7;
}

a {
    color: var(--gold-dark);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    scroll-margin-top: 80px;
}

/* ===== Colors ===== */
:root {
    --gold: #c4a55a;
    --gold-light: #d4bd82;
    --gold-dark: #7a6328;
    --charcoal: #2d3e4a;
    --charcoal-light: #546270;
}

/* ===== Gold Button ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(196, 165, 90, 0.4);
}

.btn-gold-lg {
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    background: transparent;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

/* ===== Navbar ===== */
.sticky-top {
    min-height: 66px;
}

.navbar .nav-link {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--charcoal);
    padding: 0.6rem 1.1rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold-dark);
    background-color: rgba(196, 165, 90, 0.1);
}

/* ===== Hero Sections ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: var(--charcoal);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    contain: layout style;
}

.hero-home {
    min-height: 500px;
}

.hero-section:not(.hero-home) {
    min-height: 350px;
    max-height: 420px;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.hero-section:not(.hero-home) > .container {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.hero-section > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 62, 74, 0.88), rgba(45, 62, 74, 0.72), rgba(45, 62, 74, 0.5));
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d5567 100%);
    color: #fff;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #d4bd82, #7a6328);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Text Colors ===== */
.text-gold {
    color: var(--gold) !important;
}

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

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

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

.bg-light-custom {
    background-color: #f2f4f7;
}

.bg-muted {
    background-color: #edf0f4;
}

/* ===== Gold Icon Circle ===== */
.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(196, 165, 90, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-lg {
    width: 64px;
    height: 64px;
}

/* ===== Cards ===== */
.card-custom {
    background: #fff;
    border: 1px solid #e5e8ec;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
}

.card-custom:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: rgba(196, 165, 90, 0.3);
}

.card-popular {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(196, 165, 90, 0.2);
    position: relative;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 999px;
}

/* ===== Section Heading ===== */
.section-heading {
    margin-bottom: 3rem;
}

.section-heading .gold-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 1rem;
}

.section-heading.text-center .gold-bar {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.footer-logo {
    filter: brightness(1.5);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-link-hover:hover {
    color: var(--gold) !important;
}

.footer-social-icon {
    font-size: 1.1rem;
}

.trust-bar-icon {
    font-size: 2rem;
}

.bg-charcoal .text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

/* ===== FAQ Accordion ===== */
.faq-item {
    background: #fff;
    border: 1px solid #e5e8ec;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-item .accordion-button {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--charcoal);
    background: #fff;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--gold-dark);
    background: #fff;
}

.faq-item .accordion-button::after {
    filter: none;
    color: var(--gold);
}

.faq-item .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d5567 100%);
    color: #fff;
}

.cta-section .btn-gold {
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
}

.cta-section .cta-lead {
    color: rgba(255,255,255,0.8);
    max-width: 540px;
}

.cta-section .cta-lead.cta-lead-muted {
    color: rgba(255,255,255,0.85);
}

.cta-section .cta-subtext {
    color: rgba(255,255,255,0.7);
    max-width: 540px;
}

.cta-section.cta-w-580 .cta-lead,
.cta-section.cta-w-580 .cta-subtext { max-width: 580px; }

.cta-section.cta-w-600 .cta-lead,
.cta-section.cta-w-600 .cta-subtext { max-width: 600px; }

/* ===== Steps connector ===== */
.step-connector {
    width: 2px;
    height: 32px;
    background: rgba(196, 165, 90, 0.2);
    margin-top: 0.5rem;
}

/* ===== Contact form ===== */
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(196, 165, 90, 0.25);
}

/* ===== Guide cards ===== */
.guide-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.guide-card:hover {
    color: inherit;
}

.guide-card:hover h3 {
    color: var(--gold-dark);
}

/* ===== Misc ===== */
.text-muted-custom {
    color: var(--charcoal-light);
}

.hero-btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ===== Max-width utilities ===== */
.mw-600 { max-width: 600px; }
.mw-640 { max-width: 640px; }
.mw-700 { max-width: 700px; }
.mw-720 { max-width: 720px; }
.mw-760 { max-width: 760px; }
.mw-960 { max-width: 960px; }

/* ===== Hero text opacity ===== */
.text-hero-70 { color: rgba(255,255,255,0.7); }
.text-hero-80 { color: rgba(255,255,255,0.8); }
.text-hero-95 { color: rgba(255,255,255,0.95); }

/* ===== Prose reading text ===== */
.prose-lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

.prose-lead-sm {
    font-size: 1.05rem;
}

/* ===== Info callouts ===== */
.callout-info {
    background: #f0f7ff;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.card-custom.card-accent-gold {
    border-left: 4px solid var(--gold);
    background: #fffdf5;
}

/* ===== Home hero padding override ===== */
.hero-home-inner {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.btn-gold.btn-gold-hero {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
}

.btn-gold.btn-gold-final {
    padding: 1.1rem 3rem;
    font-size: 1.2rem;
    border-radius: 0.6rem;
    font-weight: 700;
}

/* ===== Strip section ===== */
.bg-cream {
    background: #fafaf7;
}

/* ===== Comparison table ===== */
.table-compare {
    background: #fff;
}

.table-compare thead tr {
    background: var(--charcoal);
    color: #fff;
}

.table-compare th.col-label { width: 34%; }
.table-compare th.col-option { width: 33%; }

/* ===== Gold-gradient icon circle ===== */
.icon-circle-gold-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
}

/* ===== Dark pricing/highlight card ===== */
.card-custom.card-dark {
    border: 2px solid var(--charcoal);
    background: var(--charcoal);
    color: #fff;
}

.card-custom.card-dark hr {
    border-color: rgba(255,255,255,0.15);
}

.card-custom.card-dark .price-icon { color: var(--gold-light); }
.card-custom.card-dark .price-label { color: var(--gold-light); }
.card-custom.card-dark .price-sub { color: rgba(255,255,255,0.7); }
.card-custom.card-dark .price-row { color: rgba(255,255,255,0.8); }
.card-custom.card-dark .price-total { color: var(--gold-light); }

/* ===== FAQ list line spacing ===== */
.list-line-relaxed { line-height: 2; }

/* ===== Cookie consent banner ===== */
.uklpa-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 340px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    padding: 16px 18px;
    z-index: 9999;
    color: #333;
    line-height: 1.5;
    font-family: inherit;
}
.uklpa-cookie-banner[hidden] { display: none; }
.uklpa-cookie-text { margin: 0 0 12px; font-size: 0.8125rem; }
.uklpa-cookie-text a { color: var(--gold-dark, #b5892a); text-decoration: underline; }
.uklpa-cookie-actions { display: flex; gap: 8px; justify-content: flex-end; }
.uklpa-cookie-btn {
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #555;
    font-family: inherit;
}
.uklpa-cookie-btn:hover { background: #f5f5f5; }
.uklpa-cookie-accept {
    background: var(--charcoal, #1a1a2e);
    color: #fff;
    border-color: var(--charcoal, #1a1a2e);
}
.uklpa-cookie-accept:hover { background: #000; }
@media (max-width: 520px) {
    .uklpa-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}
