 :root {
    --navy: #0d1b3e;
    --navy-mid: #122050;
    --navy-dark: #091430;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --white: #ffffff;
    --light-blue: #4a7cc7;
}

* { box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: var(--navy-dark);
    color: var(--white);
    margin: 0;
    padding: 0;
}

/* ── HERO SECTION ── */
.hero-section {
    position: relative;
    min-height: 200px;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(9, 20, 48, 0.92) 0%,
    rgba(9, 20, 48, 0.82) 45%,
    rgba(9, 20, 48, 0.10) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 40px 40px 40px;
    /* max-width: 520px; */
    
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.55rem;
    font-weight: 700;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--white);
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0 18px 0;
}

.hero-content .sub-text {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.65;
    margin-bottom: 22px;
}

.hero-content .presenter-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.6;
}

.hero-content .presenter-text strong {
    font-weight: 700;
    font-style: normal;
    color: var(--white);
}

/* ── FORM CARD ── */
.form-card {
    background: rgba(12, 24, 60, 0.97);
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    padding: 28px 26px 24px 26px;
    position: relative;
    z-index: 2;
}

.form-card h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.form-card label {
    font-size: 1.00rem;
    color: #fff;
    font-weight: 500;
    display: block;
}

.form-card .form-control,
.form-card .form-select {
    background: #ffffff;
    border: 1px solid #ccd5e0;
    border-radius: 3px;
    font-size: 0.88rem;
    color: #1a2540;
    height: 42px;
    padding: 4px 10px;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 124, 199, 0.45);
    border-color: var(--light-blue);
}

.radio-group label {
    font-size: 1.00rem;
    color: #fff;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    accent-color: var(--light-blue);
    width: 15px;
    height: 15px;
}

.radio-section-label {
    font-size: 1.00rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
}

.investment-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
}

.investment-range-grid .form-select {
    font-size: 1.0rem;
}

.btn-request {
    background: #2356b8;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.22rem;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 3px;
    width: 100%;
    padding: 11px;
    margin-top: 14px;
    transition: background 0.2s;
}

.btn-request:hover {
    background: #1b44a0;
    color: #fff;
}

.seat-note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.0rem;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

/* ── FEATURES ROW ── */
.features-row {
    background: rgba(12, 24, 60, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 28px 0 24px 0;
    position: absolute;
    margin-top: -209px;
}

.feature-item {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.feature-item h6 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 1.0rem;
    color: #fff;
    line-height: 1.55;
    margin: 0;
}

/* ── TOPICS SECTION ── */
.topics-section {
    background: var(--navy-dark);
    padding: 44px 0 44px 0;
}

.topics-section h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.topics-section h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

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

.topics-list li {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 13px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.topics-list li::before {
    content: '';
    width: 9px;
    height: 9px;
    min-width: 9px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
}

/* ── CTA BOTTOM ── */
.cta-bottom {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 48px 0 44px 0;
    text-align: center;
}

.cta-bottom h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-bottom h3::before,
.cta-bottom h3::after {
    content: '';
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

.cta-bottom p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 24px;
}

.btn-cta-main {
    background: #2356b8;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 3px;
    padding: 13px 52px;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-cta-main:hover {
    background: #1b44a0;
    color: #fff;
}

.cta-bottom .bottom-note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 14px;
}

/* responsive tweaks */
@media (max-width: 991px) {
    .hero-content { padding: 32px 20px 24px 20px; }
    .hero-content h1 { font-size: 2rem; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); padding: 16px 0; }
    .feature-item:last-child { border-bottom: none; }
    .features-row {position: relative; margin-top: 10px;}
}

@media (max-width: 767px) {
    .hero-section { min-height: auto; }
    .investment-range-grid { grid-template-columns: 1fr; }
}
.investment-range-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
/* Hide radio buttons */
.investment-range-grid input[type="radio"] {
  display: none;
}

/* Card style */
.investment-range-grid label {
  display: block;
  padding: 14px;
  background: #dcdcdc;
  border-radius: 4px;
  color: #1a2540;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* Hover */
.investment-range-grid label:hover {
  background: #cfcfcf;
}

/* Selected state */
.investment-range-grid input[type="radio"]:checked + label {
  background: #1e3a8a;   /* blue */
  color: #fff;
  font-weight: 500;
}
.form-select,.form-select option {
  font-size: 1rem; /* adjust as needed */
}
.font-sm-12{
    font-size: 12px;
}
.contact-row {
    gap: .75rem;
    margin-bottom: 1rem;
}
.contact-row svg {
    color: var(--gold);
    width: 16px;
    height: 16px;
}
#brand-logos img.img-fluid{
    width: auto !important;
    height: auto;
    max-height: 75px;
}