/* VARS Royal Palace - Hotel Stay Reservation Stylesheet (hotel_reservation.css) */
:root {
    --royal-navy: #152551;
    --royal-navy-light: #1d3a7a;
    --royal-gold: #C5A059;
    --royal-gold-dark: #a8843c;
    --royal-gold-light: #f7f2e7;
    --royal-cream: #fbfbf9;
    --royal-dark: #081228;
    --card-border: rgba(197, 160, 89, 0.25);
    --royal-success: #16a34a;
    --royal-success-bg: #f0fdf4;
    --royal-warn: #b45309;
}

body {
    background: linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    margin: 0;
}

.reservation-page-wrapper {
    padding: 2rem 1rem 6rem 1rem;
    max-width: 1320px;
    margin: 0 auto;
}

/* ROYAL HERO BANNER */
.hero-banner-royal {
    background: linear-gradient(135deg, rgba(8, 18, 40, 0.95) 0%, rgba(21, 37, 81, 0.92) 100%), url("../images/Hotel_Hall.jpg") center/cover no-repeat;
    color: #ffffff;
    border-radius: 20px;
    padding: 2.8rem 2rem 2.4rem;
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 4px solid var(--royal-gold);
    box-shadow: 0 15px 35px rgba(8, 18, 40, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-banner-royal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-crest {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-banner-royal h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hero-banner-royal p.subtitle {
    color: #e2e8f0;
    font-size: 0.96rem;
    max-width: 700px;
    margin: 0 auto 18px;
    line-height: 1.55;
}

.hero-features-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.hero-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: #f8fafc;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* STEP WIZARD BAR */
.step-wizard-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    white-space: nowrap;
}

.step-item.active {
    color: var(--royal-navy);
}

.step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.step-item.active .step-num {
    background: var(--royal-navy);
    color: var(--royal-gold);
    border: 1.5px solid var(--royal-gold);
}

.step-sep {
    color: #cbd5e1;
    font-weight: 300;
    margin: 0 4px;
}

/* MAIN GRID LAYOUT */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION CARD */
.section-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 25px rgba(21, 37, 81, 0.04);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--royal-navy);
    color: var(--royal-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid var(--royal-gold);
    flex-shrink: 0;
}

.section-card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--royal-navy);
    margin: 0;
    font-weight: 700;
}

.section-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 2px;
}

/* FORM ELEMENTS */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

@media (max-width: 650px) {
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}

.fgroup {
    margin-bottom: 12px;
}

.flabel {
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.flabel span.req {
    color: #dc2626;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    font-size: 1rem;
    color: #94a3b8;
    pointer-events: none;
}

.finput,
.fselect,
.ftextarea {
    width: 100%;
    padding: 11px 14px 11px 36px;
    border: 1.5px solid #cbd5e1;
    border-radius: 9px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #1e293b;
    background: #ffffff;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.finput.no-icon,
.fselect.no-icon,
.ftextarea.no-icon {
    padding-left: 14px;
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
    border-color: var(--royal-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
    background: #fffdfa;
}

/* STAY PACKAGES GRID */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.pkg-card-label {
    cursor: pointer;
    display: block;
}

.pkg-card-label input[type="radio"] {
    display: none;
}

.pkg-box {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    background: #ffffff;
    transition: all 0.2s ease;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.pkg-box:hover {
    border-color: var(--royal-gold);
    background: #fffdf8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.12);
}

.pkg-card-label input[type="radio"]:checked + .pkg-box {
    border-color: var(--royal-navy);
    background: #f0f4fc;
    box-shadow: 0 0 0 2px var(--royal-gold);
}

.pkg-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pkg-icon {
    font-size: 1.4rem;
}

.pkg-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--royal-navy);
}

.pkg-badge {
    font-size: 0.65rem;
    background: #e0e7ff;
    color: #3730a3;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: auto;
}

.pkg-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
    margin: 0;
}

/* CUSTOM BESPOKE PACKAGE BUILDER PANEL */
.custom-pkg-panel {
    background: linear-gradient(135deg, #fffcf5 0%, #fbf7ee 100%);
    border: 2px solid var(--royal-gold);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 18px;
    margin-top: 6px;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.12);
}

.custom-pkg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.4);
    padding-bottom: 8px;
}

.custom-pkg-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--royal-navy);
}

.custom-inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

@media (max-width: 650px) {
    .custom-inclusions-grid {
        grid-template-columns: 1fr;
    }
}

.custom-inc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #334155;
    font-weight: 600;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.custom-inc-label:hover {
    border-color: var(--royal-gold);
    background: #fffbf2;
}

.custom-inc-label input {
    accent-color: var(--royal-navy);
}

/* TOTAL STAY TIME CALCULATION BANNER */
.stay-calc-banner {
    background: linear-gradient(135deg, #081228 0%, #152551 100%);
    border: 1.5px solid var(--royal-gold);
    border-radius: 14px;
    color: #ffffff;
    padding: 18px 22px;
    margin-top: 14px;
    margin-bottom: 8px;
    box-shadow: 0 8px 24px rgba(8, 18, 40, 0.15);
}

.calc-metrics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.calc-metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.2);
    border: 1.5px solid var(--royal-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--royal-gold);
    flex-shrink: 0;
}

.calc-metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
}

.calc-metric-label {
    font-size: 0.72rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-timeline-card {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(197, 160, 89, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: #f1f5f9;
}

.calc-timeline-chip {
    background: rgba(255, 255, 255, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--royal-gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* SUITE FILTER TABS */
.suite-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.suite-tab-btn {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suite-tab-btn:hover {
    border-color: var(--royal-gold);
    background: #fffcf5;
    color: var(--royal-navy);
}

.suite-tab-btn.active {
    background: var(--royal-navy);
    color: #ffffff;
    border-color: var(--royal-gold);
    box-shadow: 0 4px 12px rgba(21, 37, 81, 0.15);
}

/* ROOM & SUITE CARDS */
.rooms-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 10px;
}

@media (max-width: 800px) {
    .rooms-list-grid {
        grid-template-columns: 1fr;
    }
}

.suite-card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.suite-card:hover {
    border-color: var(--royal-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.suite-card.selected {
    border-color: var(--royal-navy);
    background: #fffdfa;
    box-shadow: 0 0 0 2.5px var(--royal-navy), 0 10px 30px rgba(21, 37, 81, 0.12);
}

.suite-img-holder {
    position: relative;
    height: 185px;
    overflow: hidden;
    background: #081228;
}

.suite-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.suite-card:hover .suite-img-holder img {
    transform: scale(1.05);
}

.suite-hotel-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(8, 18, 40, 0.88);
    color: var(--royal-gold);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.suite-price-badge-wrap {
    position: absolute;
    bottom: 10px;
    right: 10px;
    text-align: right;
}

.suite-rate-pill {
    background: var(--royal-navy);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    border: 1.5px solid var(--royal-gold);
    display: inline-block;
}

.suite-offer-tag {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.suite-check-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: transparent;
    transition: all 0.2s;
}

.suite-card.selected .suite-check-indicator {
    background: var(--royal-navy);
    border-color: var(--royal-gold);
    color: var(--royal-gold);
}

.suite-details {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.suite-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--royal-navy);
    margin-bottom: 4px;
}

.suite-specs-row {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.suite-desc {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 10px;
    flex: 1;
}

/* SUITE INCLUDED PACKAGES CHIPS */
.suite-pkg-synergy-row {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 12px;
    font-size: 0.74rem;
    color: #334155;
}

.suite-pkg-synergy-tag {
    font-weight: 700;
    color: var(--royal-navy);
    margin-right: 4px;
}

.suite-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.amenity-chip {
    background: #f1f5f9;
    color: #334155;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
}

.btn-suite-action {
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    border: 1.5px solid var(--royal-navy);
    background: transparent;
    color: var(--royal-navy);
    transition: all 0.2s;
}

.suite-card.selected .btn-suite-action {
    background: var(--royal-navy);
    color: #ffffff;
    border-color: var(--royal-navy);
}

/* PRIVILEGES ADDONS */
.privileges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 650px) {
    .privileges-grid {
        grid-template-columns: 1fr;
    }
}

.priv-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
}

.priv-card:hover {
    border-color: var(--royal-gold);
    background: #fffcf5;
}

.priv-card.selected {
    border-color: var(--royal-navy);
    background: #f4f7fc;
    box-shadow: 0 0 0 1.5px var(--royal-navy);
}

.priv-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.priv-info {
    flex: 1;
}

.priv-cat-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #C5A059;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.priv-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--royal-navy);
    margin-top: 1px;
}

.priv-desc {
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 2px;
}

.priv-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 3px;
}

/* QUICK REQUEST CHIPS */
.quick-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.req-chip {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.req-chip:hover {
    border-color: var(--royal-gold);
    background: #fffbf2;
    color: var(--royal-navy);
}

/* COUPONS */
.coupon-card-wrap {
    background: linear-gradient(135deg, #f8fafc 0%, #fdfaf5 100%);
    border: 1.5px dashed var(--royal-gold);
    border-radius: 12px;
    padding: 16px;
    margin-top: 14px;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.coupon-presets-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.coupon-tag-chip {
    background: #ffffff;
    border: 1.5px solid var(--royal-gold);
    padding: 4px 10px;
    border-radius: 18px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--royal-navy);
    cursor: pointer;
    transition: all 0.15s;
}

.coupon-tag-chip:hover {
    background: var(--royal-gold);
    color: #ffffff;
}

/* SIDEBAR SUMMARY */
.sidebar-sticky {
    position: sticky;
    top: 90px;
    background: #ffffff;
    border: 2px solid var(--royal-gold);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(21, 37, 81, 0.08);
    padding: 24px;
}

.sb-crest-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.sb-crest-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.sb-crest-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--royal-navy);
    margin: 0;
}

.sb-crest-sub {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 1px;
    font-weight: 600;
}

.sb-room-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.sb-room-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--royal-gold);
}

.sb-room-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--royal-navy);
}

.sb-room-rate {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--royal-gold-dark);
    margin-top: 2px;
}

.sb-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    padding: 6px 0;
    color: #475569;
}

.sb-line.bold {
    font-weight: 700;
    color: var(--royal-navy);
    font-size: 0.9rem;
}

.sb-line.green {
    color: var(--royal-success);
    font-weight: 700;
}

/* DYNAMIC ITEMIZED ADDONS LIST IN BILL STATEMENT */
.sb-addons-container {
    background: #fafaf9;
    border-radius: 8px;
    border: 1px solid #e7e5e4;
    padding: 8px 10px;
    margin: 6px 0 8px 0;
}

.sb-addon-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding: 4px 0;
    color: #334155;
    border-bottom: 1px dashed #e2e8f0;
}

.sb-addon-item-row:last-child {
    border-bottom: none;
}

.sb-addon-name {
    font-weight: 600;
    color: var(--royal-navy);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sb-addon-price {
    font-weight: 700;
    color: #0f172a;
}

.sb-total-line {
    border-top: 2px dashed #cbd5e1;
    margin-top: 12px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--royal-navy);
}

.btn-confirm-stay {
    width: 100%;
    padding: 15px 24px;
    margin-top: 18px;
    background: linear-gradient(135deg, var(--royal-navy) 0%, #1d3a7a 100%);
    border: 2px solid var(--royal-gold);
    border-radius: 30px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(21, 37, 81, 0.28);
}

.btn-confirm-stay:hover {
    background: var(--royal-gold);
    color: var(--royal-dark);
    border-color: var(--royal-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
}

.trust-footer {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
    font-size: 0.72rem;
    color: #64748b;
}
