/* ========================================
   REFERRAL PARTNERS PAGE - CLEAN DESIGN
   ======================================== */

/* Hero Section */
#referral-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #080604;
    overflow: hidden;
    padding: 120px 0 40px;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(10, 8, 5, 0.55) 0%,
            rgba(10, 8, 5, 0.35) 40%,
            rgba(10, 8, 5, 0.65) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px;
    height: 100%;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
    padding: 28px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(160deg, #D4B47A 0%, #C9A96E 40%, #A8863E 100%);
    border-radius: 50px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    margin: 0;
    box-shadow: 0 6px 28px rgba(168, 134, 62, 0.45), inset 0 1px 0 rgba(255,255,255,0.35);
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
}

/* Gloss shine overlay */
.hero-badge::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.28), rgba(255,255,255,0));
    border-radius: 50px 50px 0 0;
    pointer-events: none;
}

.hero-badge i {
    font-size: 0.75em;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
    position: relative;
}

.hero-glass-card h1 {
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.3px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-icon {
    color: #C9A96E;
    font-size: 0.75em;
    flex-shrink: 0;
}

.hero-glass-card > p {
    font-size: 16px;
    color: rgba(15, 14, 12, 0.82);
    line-height: 1.65;
    margin-bottom: 32px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    color: #AB966C;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 12px;
    color: rgba(15, 14, 12, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(0, 0, 0, 0.18);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #AB966C;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(171, 150, 108, 0.4);
}

.hero-cta-btn:hover {
    background: #c4a876;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(171, 150, 108, 0.5);
    color: #fff;
}

/* Quick Intro Section */

/* Who Can Refer Section */
#who-can-refer {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #AB966C;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(171, 150, 108, 0.1);
    border-radius: 20px;
}

.section-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.section-intro .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Partner Cards */
.partner-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #AB966C;
}

.partner-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.partner-icon i {
    font-size: 32px;
    color: #fff;
}

.partner-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Transparency Hero Box */
.transparency-hero {
    margin: 60px 0;
    padding: 0;
}

.transparency-content {
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(45, 80, 133, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.transparency-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(171, 150, 108, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.transparency-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
}

.transparency-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #AB966C 0%, #fff 100%);
    border-radius: 2px;
}

.transparency-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.transparency-content strong {
    color: #AB966C;
    font-weight: 700;
}

/* Why Refer Section */
#why-refer {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-refer-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.why-refer-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.why-refer-header .subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.intro-statement {
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 40px 50px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.intro-statement p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2D5085;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
}

/* Advantage Cards */
.advantage-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5085 0%, #AB966C 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: #AB966C;
}

.advantage-card.featured {
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-color: #AB966C;
}

.advantage-card.featured::before {
    display: none;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(45, 80, 133, 0.3);
}

.advantage-card.featured .advantage-icon {
    background: linear-gradient(135deg, #AB966C 0%, #c4a876 100%);
    box-shadow: 0 8px 25px rgba(171, 150, 108, 0.4);
}

.advantage-icon i {
    font-size: 36px;
    color: #fff;
}

.advantage-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-card.featured h4 {
    color: #fff;
}

.advantage-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.advantage-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Closing Banner */
.closing-banner {
    margin-top: 60px;
    padding: 40px 50px;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(45, 80, 133, 0.3);
}

.banner-icon {
    width: 70px;
    height: 70px;
    background: rgba(171, 150, 108, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 36px;
    color: #AB966C;
}

.banner-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* How It Works Section */
#how-it-works {
    padding: 100px 0;
    background: #fff;
}

.how-it-works-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.how-it-works-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.how-it-works-header .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Process Steps */
.process-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 32px;
    color: #fff;
}

.step-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Referral Form Section */
#referral-form {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.form-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.form-header strong {
    color: #AB966C;
    font-size: 20px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2D5085;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

/* Service Type Selector */
.service-type-selector {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-option {
    flex: 1;
    min-width: 200px;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.option-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #ddd;
    transition: all 0.3s ease;
}

.option-card i {
    font-size: 40px;
    color: #2D5085;
    margin-bottom: 15px;
    display: block;
}

.option-card span {
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
}

.service-option input[type="radio"]:checked + .option-card {
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-color: #AB966C;
}

.service-option input[type="radio"]:checked + .option-card i,
.service-option input[type="radio"]:checked + .option-card span {
    color: #fff;
}

.option-card:hover {
    border-color: #AB966C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Form Inputs */
.referral-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.referral-form input,
.referral-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.referral-form input:focus,
.referral-form textarea:focus {
    outline: none;
    border-color: #2D5085;
    box-shadow: 0 0 0 3px rgba(45, 80, 133, 0.1);
}

.referral-form textarea {
    resize: vertical;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ddd;
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.contact-note a {
    color: #2D5085;
    font-weight: 700;
    text-decoration: none;
}

.contact-note a:hover {
    color: #AB966C;
    text-decoration: underline;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 133, 0.4);
}

/* ── Step Badge & Section Label Row ──────────────────── */
.section-label-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e8ecf2;
}

.section-label-row h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
    padding: 0;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    letter-spacing: 0;
    font-family: 'Poppins', sans-serif;
}

/* ── Service Type Selector (2 cards only) ──────────── */
.service-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-option {
    cursor: pointer;
}

.option-card {
    padding: 22px 16px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    background: #fafbfd;
    transition: all 0.25s ease;
    cursor: pointer;
}

.option-card i {
    font-size: 28px;
    color: #2D5085;
    margin-bottom: 10px;
    display: block;
}

.option-card span {
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    display: block;
}

.service-option input[type="radio"]:checked + .option-card {
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    border-color: #AB966C;
    box-shadow: 0 6px 20px rgba(45,80,133,0.25);
}

.service-option input[type="radio"]:checked + .option-card i,
.service-option input[type="radio"]:checked + .option-card span {
    color: #fff;
}

.option-card:hover {
    border-color: #AB966C;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ── Animate-in ──────────────────────────────────────── */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: slideDown 0.35s ease forwards;
}

/* ── Follow-up Question Card ─────────────────────────── */
.followup-question-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8eeff 100%);
    border: 1.5px solid #c8d8f8;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 0;
}

.followup-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #2D5085, #1a3a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(45,80,133,0.25);
}

.followup-body {
    flex: 1;
}

.followup-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2D5085;
    margin-bottom: 4px;
}

.followup-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* ── Yes/No Toggle ───────────────────────────────────── */
.yn-toggle {
    display: flex;
    gap: 12px;
}

.yn-option {
    cursor: pointer;
}

.yn-option input[type="radio"] {
    display: none;
}

.yn-card {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: 8px;
    border: 2px solid #d0daf0;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yn-card:hover {
    border-color: #AB966C;
    transform: translateY(-1px);
}

.yn-option input[type="radio"]:checked + .yes-card {
    background: linear-gradient(135deg, #1e7e34, #155724);
    border-color: #155724;
    color: #fff;
    box-shadow: 0 4px 12px rgba(30,126,52,0.3);
}

.yn-option input[type="radio"]:checked + .no-card {
    background: linear-gradient(135deg, #a71d2a, #721c24);
    border-color: #721c24;
    color: #fff;
    box-shadow: 0 4px 12px rgba(167,29,42,0.3);
}

/* ── Aircraft Details Panel ──────────────────────────── */
.aircraft-details-panel {
    margin-top: 20px;
    background: #fff;
    border: 1.5px solid #dce6f5;
    border-radius: 12px;
    padding: 22px 24px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #2D5085;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #e2e8f0;
}

.panel-header i {
    color: #AB966C;
}

.upgrade-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #AB966C;
    margin: 20px 0 4px;
}

.upgrade-divider::before,
.upgrade-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* ── Form Footer (centered submit) ──────────────────── */
.form-footer {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid #e8ecf2;
}

/* ── Benefits Banner ─────────────────────────────────── */
#benefits-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
}

.banner-content {
    text-align: center;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.banner-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #AB966C;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #c4a876;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(171, 150, 108, 0.4);
    color: #fff;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.success-content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(171, 150, 108, 0.2);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.success-icon i {
    font-size: 40px;
    color: #fff;
}

.success-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.success-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 30px;
}

.next-steps h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2D5085;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.next-steps p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.next-steps .closing {
    font-weight: 600;
    color: #AB966C;
    font-style: italic;
}

.close-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2D5085 0%, #1a3a6b 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.close-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 133, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-glass-card h1 {
        font-size: 20px;
    }

    .hero-glass-card {
        padding: 38px 36px 34px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 26px;
    }

    #quick-intro {
        padding: 60px 0;
    }

    .intro-box {
        padding: 40px 30px;
    }

    .intro-box h2 {
        font-size: 32px;
    }

    #who-can-refer,
    #why-refer,
    #how-it-works,
    #referral-form {
        padding: 70px 0;
    }

    #benefits-banner {
        padding: 60px 0;
    }

    .section-intro h2,
    .why-refer-header h2,
    .how-it-works-header h2,
    .form-header h2,
    .banner-content h2 {
        font-size: 36px;
    }

    .intro-statement {
        padding: 35px 40px;
    }

    .section-subtitle {
        font-size: 28px;
    }

    .closing-banner {
        padding: 35px 40px;
        gap: 25px;
    }

    .banner-text h3 {
        font-size: 22px;
    }

    .form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .hero-glass-card h1 {
        font-size: 18px;
    }

    .hero-glass-card > p {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }


    #who-can-refer,
    #why-refer,
    #how-it-works,
    #referral-form {
        padding: 60px 0;
    }

    #benefits-banner {
        padding: 50px 0;
    }

    .section-intro h2,
    .why-refer-header h2,
    .how-it-works-header h2,
    .form-header h2,
    .banner-content h2 {
        font-size: 32px;
    }

    .partner-card {
        padding: 30px 20px;
    }

    .why-refer-header h2 {
        font-size: 38px;
    }

    .intro-statement {
        padding: 30px 25px;
    }

    .intro-statement p {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 26px;
    }

    .advantage-card {
        padding: 35px 25px;
    }

    .closing-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }

    .banner-text h3 {
        font-size: 20px;
    }

    .service-type-selector {
        flex-direction: column;
    }

    .service-option {
        min-width: 100%;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-glass-card h1 {
        font-size: 16px;
    }

    .hero-glass-card {
        padding: 30px 22px 28px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 7px 16px;
    }

    .stat-value {
        font-size: 24px;
    }

    .section-intro h2,
    .why-refer-header h2,
    .how-it-works-header h2,
    .form-header h2,
    .banner-content h2 {
        font-size: 28px;
    }

    .why-refer-header h2 {
        font-size: 32px;
    }

    .intro-statement p {
        font-size: 15px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .banner-text h3 {
        font-size: 18px;
    }

    .banner-icon {
        width: 60px;
        height: 60px;
    }

    .banner-icon i {
        font-size: 30px;
    }
}


/* ═══════════════════════════════════════
   PARTNER INTRO BANNER — two-column elegant
═══════════════════════════════════════ */

#partner-intro-banner {
    padding: 120px 0 96px !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(201,169,110,0.15) !important;
}

.pib-inner {
    display: flex !important;
    align-items: center !important;
    gap: 80px !important;
}

/* LEFT — text + CTA */
.pib-left {
    flex: 1 1 0 !important;
}

.pib-eyebrow {
    display: inline-block !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #C9A96E !important;
    margin: 0 0 18px !important;
}

.pib-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(28px, 3vw, 44px) !important;
    font-weight: 400 !important;
    color: #111110 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.18 !important;
    margin: 0 0 20px !important;
}

.pib-body {
    font-size: 15px !important;
    color: #6b6560 !important;
    line-height: 1.8 !important;
    margin: 0 0 32px !important;
    font-weight: 300 !important;
}

.pib-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 34px !important;
    background: linear-gradient(135deg, #C9A96E 0%, #A8863E 100%) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 100px !important;
    box-shadow: 0 6px 24px rgba(201,169,110,0.35) !important;
    transition: opacity 0.2s, transform 0.2s !important;
}

.pib-cta:hover {
    opacity: 0.88 !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
}

/* RIGHT — stats elegant */
.pib-right {
    flex: 0 0 300px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.pib-stat-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 28px 0 !important;
    position: relative !important;
}

.pib-stat-card::before {
    content: '' !important;
    display: block !important;
    width: 20px !important;
    height: 1px !important;
    background: #C9A96E !important;
    margin-bottom: 10px !important;
}

.pib-stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(22px, 2.4vw, 30px) !important;
    font-weight: 400 !important;
    color: #111110 !important;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
    margin-bottom: 5px !important;
}

.pib-stat-lbl {
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: #aaa !important;
}

.pib-divider {
    height: 1px !important;
    background: rgba(201,169,110,0.18) !important;
    margin: 0 !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .pib-inner {
        flex-direction: column !important;
        gap: 48px !important;
    }
    .pib-right {
        flex: none !important;
        width: 100% !important;
        flex-direction: row !important;
        align-items: stretch !important;
    }
    .pib-stat-card {
        flex: 1 !important;
        padding: 24px 16px !important;
        align-items: center !important;
    }
    .pib-stat-card::before {
        margin-bottom: 10px !important;
    }
    .pib-divider {
        width: 1px !important;
        height: auto !important;
    }
}

@media (max-width: 575px) {
    #partner-intro-banner {
        padding: 60px 0 !important;
    }
    .pib-right {
        flex-direction: column !important;
    }
    .pib-stat-card {
        align-items: flex-start !important;
        padding: 20px 0 !important;
    }
    .pib-divider {
        width: 100% !important;
        height: 1px !important;
    }
}

/* ═══════════════════════════════════════
   FORM LAYOUT — sidebar + form (desktop)
═══════════════════════════════════════ */

.form-layout {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

/* SIDEBAR */
.form-sidebar {
    display: none; /* hidden on mobile */
}

@media (min-width: 992px) {
    .form-sidebar {
        display: flex;
        flex-direction: column;
        flex: 0 0 280px;
        position: sticky;
        top: 108px;
    }
    .form-layout .form-wrapper {
        flex: 1 1 0;
        min-width: 0;
    }
}

.fs-eyebrow {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #C9A96E !important;
    margin: 0 0 14px !important;
}

.fs-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(32px, 3.5vw, 48px) !important;
    font-weight: 400 !important;
    color: #111110 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    margin: 0 0 16px !important;
}

.fs-sub {
    font-size: 13px !important;
    color: #7a7570 !important;
    line-height: 1.75 !important;
    margin: 0 0 28px !important;
}

.fs-benefits {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.fs-benefits li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 13px !important;
    color: #444 !important;
    font-weight: 400 !important;
}

.fs-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: rgba(201,169,110,0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: #C9A96E !important;
    font-size: 11px !important;
}

.fs-divider {
    height: 1px !important;
    background: rgba(201,169,110,0.2) !important;
    margin: 0 0 24px !important;
}

.fs-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 28px !important;
}

.fs-contact-label {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #aaa !important;
    margin: 0 0 4px !important;
}

.fs-contact-link {
    font-size: 13px !important;
    color: #111110 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 500 !important;
    transition: color 0.2s !important;
}

.fs-contact-link i {
    color: #C9A96E !important;
    font-size: 12px !important;
}

.fs-contact-link:hover {
    color: #C9A96E !important;
}

.fs-quote {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 15px !important;
    font-style: italic !important;
    color: #8a8480 !important;
    border-left: 2px solid #C9A96E !important;
    padding-left: 16px !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* ═══════════════════════════════════════
   REFERRAL FORM — super elegant redesign
═══════════════════════════════════════ */

#referral-form {
    background: #FAFAF8 !important;
    padding: 72px 0 !important;
}

.form-wrapper {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.07) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06) !important;
    padding: 48px 56px !important;
    max-width: 820px !important;
    margin: 0 auto !important;
}

/* Header */
.form-header {
    margin-bottom: 36px !important;
    padding-bottom: 28px !important;
    border-bottom: 1px solid #f0ece4 !important;
}

.form-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 300 !important;
    color: #111110 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 8px !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.form-header p {
    font-size: 13px !important;
    color: #999 !important;
    font-weight: 300 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Form sections */
.form-section {
    margin-bottom: 28px !important;
    padding-bottom: 0 !important;
    border: none !important;
}

.form-section h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: #C9A96E !important;
    margin-bottom: 14px !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

/* Service type selector */
.service-type-selector {
    display: flex !important;
    gap: 10px !important;
}

.service-option {
    flex: 1 !important;
}

.option-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    border: 1px solid #e2ddd5 !important;
    border-radius: 8px !important;
    background: #fafaf8 !important;
    cursor: pointer !important;
    transition: all .2s !important;
    box-shadow: none !important;
}

.option-card i {
    font-size: 13px !important;
    color: #bbb !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.option-card span {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #666 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.option-card:hover {
    border-color: #C9A96E !important;
    background: #fff !important;
    transform: none !important;
    box-shadow: none !important;
}

.service-option input[type="radio"]:checked + .option-card {
    border-color: #C9A96E !important;
    background: rgba(201,169,110,0.07) !important;
    box-shadow: none !important;
}

.service-option input[type="radio"]:checked + .option-card i,
.service-option input[type="radio"]:checked + .option-card span {
    color: #A8863E !important;
}

/* Labels */
.referral-form label {
    font-size: 10.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #888 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* Inputs */
.referral-form input,
.referral-form textarea {
    border: 1px solid #e2ddd5 !important;
    border-radius: 6px !important;
    background: #fafaf8 !important;
    font-size: 13px !important;
    color: #222 !important;
    padding: 11px 14px !important;
    font-weight: 300 !important;
    box-shadow: none !important;
    transition: border-color .2s, box-shadow .2s !important;
    width: 100% !important;
}

.referral-form input:focus,
.referral-form textarea:focus {
    border-color: #C9A96E !important;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12) !important;
    background: #fff !important;
    outline: none !important;
}

.referral-form textarea {
    height: 100px !important;
    resize: vertical !important;
}

/* Form footer */
.form-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding-top: 24px !important;
    border-top: 1px solid #f0ece4 !important;
    margin-top: 4px !important;
    flex-wrap: wrap !important;
}

.contact-note {
    font-size: 12px !important;
    color: #aaa !important;
    font-weight: 300 !important;
    margin: 0 !important;
}

.contact-note a {
    color: #C9A96E !important;
    text-decoration: none !important;
}

/* Submit button — gold */
.submit-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 13px 32px !important;
    background: linear-gradient(135deg, #C9A96E 0%, #A8863E 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 16px rgba(168,134,62,0.3) !important;
    transition: all .25s !important;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #D9B97E 0%, #B8963E 100%) !important;
    box-shadow: 0 6px 24px rgba(168,134,62,0.45) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}

.submit-btn i {
    font-size: 11px !important;
}

@media (max-width: 640px) {
    .form-wrapper { padding: 32px 24px !important; }
    .service-type-selector { flex-direction: column !important; }
    .form-footer { flex-direction: column; align-items: flex-start !important; }
    .submit-btn { width: 100% !important; justify-content: center !important; }
}

/* Form — tighter spacing */
.form-wrapper {
    padding: 36px 44px !important;
}
.form-header {
    margin-bottom: 24px !important;
    padding-bottom: 20px !important;
}
.form-section {
    margin-bottom: 18px !important;
}
.form-section h3 {
    margin-bottom: 10px !important;
}
.referral-form .row {
    --bs-gutter-y: 10px !important;
}
.referral-form input,
.referral-form textarea {
    padding: 9px 12px !important;
    font-size: 12.5px !important;
}
.referral-form textarea {
    height: 80px !important;
}
.referral-form label {
    margin-bottom: 4px !important;
    font-size: 10px !important;
}
.option-card {
    padding: 10px 12px !important;
}
.form-footer {
    padding-top: 18px !important;
    margin-top: 0 !important;
}

/* ── Step Badge & Section Label Row (override) ────── */
.section-label-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f0ece4 !important;
}

.section-label-row h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: #C9A96E !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.step-badge {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    font-size: 9px !important;
    background: rgba(201,169,110,0.15) !important;
    color: #C9A96E !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-family: 'Inter', sans-serif !important;
}

/* ── Service type: 2 columns ────────────────────────── */
.service-type-selector {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}

/* ── Follow-up Question Card (override) ─────────────── */
.dynamic-section {
    margin-bottom: 18px !important;
}

.followup-question-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    background: rgba(201,169,110,0.06) !important;
    border: 1px solid rgba(201,169,110,0.25) !important;
    border-radius: 10px !important;
    padding: 18px 20px !important;
    margin-bottom: 0 !important;
}

.followup-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    background: linear-gradient(135deg, #C9A96E, #A8863E) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 14px !important;
    box-shadow: 0 3px 10px rgba(168,134,62,0.3) !important;
}

.followup-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: #C9A96E !important;
    margin-bottom: 4px !important;
}

.followup-body h4 {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a1816 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    font-family: 'Cormorant Garamond', serif !important;
    letter-spacing: -0.01em !important;
}

/* ── Y/N Toggle (override) ──────────────────────────── */
.yn-toggle {
    display: flex !important;
    gap: 8px !important;
}

.yn-card {
    padding: 7px 18px !important;
    border-radius: 6px !important;
    border: 1px solid #e2ddd5 !important;
    background: #fafaf8 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: #888 !important;
    cursor: pointer !important;
    transition: all .2s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.yn-card:hover {
    border-color: #C9A96E !important;
    background: #fff !important;
    transform: none !important;
}

.yn-option input[type="radio"]:checked + .yes-card {
    background: rgba(25,135,84,0.1) !important;
    border-color: #198754 !important;
    color: #198754 !important;
    box-shadow: none !important;
}

.yn-option input[type="radio"]:checked + .no-card {
    background: rgba(220,53,69,0.08) !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
    box-shadow: none !important;
}

/* ── Aircraft Details Panel (override) ──────────────── */
.aircraft-details-panel {
    margin-top: 14px !important;
    background: #fafaf8 !important;
    border: 1px solid #e8e4dc !important;
    border-radius: 8px !important;
    padding: 18px 20px !important;
}

.panel-header {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: #C9A96E !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f0ece4 !important;
}

.upgrade-divider {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #C9A96E !important;
    margin: 16px 0 4px !important;
}

.upgrade-divider::before,
.upgrade-divider::after {
    content: '' !important;
    flex: 1 !important;
    height: 1px !important;
    background: #f0ece4 !important;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: slideDown 0.3s ease forwards !important;
}

@media (max-width: 575px) {
    .yn-toggle { flex-direction: row !important; }
    .service-type-selector { grid-template-columns: 1fr 1fr !important; }
    .followup-question-card { flex-direction: column !important; gap: 10px !important; }
}

/* ═══════════════════════════════════════
   WHO CAN REFER — elite 5-card redesign
═══════════════════════════════════════ */

#who-can-refer {
    background: #111110 !important;
    padding: 80px 0 !important;
}

#who-can-refer .section-intro {
    text-align: center !important;
    margin-bottom: 52px !important;
}

#who-can-refer .section-label {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 14px;
}

#who-can-refer h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(26px, 3.5vw, 42px) !important;
    font-weight: 300 !important;
    color: #F0EBE0 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 10px !important;
}

#who-can-refer .lead {
    font-size: 13px !important;
    color: rgba(240,235,224,0.45) !important;
    font-weight: 300 !important;
    margin: 0 auto !important;
    max-width: 480px !important;
}

/* Partner grid — desktop: 3 col, tablet: 2 col, mobile: 1 col */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 12px;
    overflow: hidden;
}

.partner-card {
    background: #1A1916 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 36px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    transition: background .3s !important;
    position: relative;
}

.partner-card:hover {
    background: #222018 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Number */
.partner-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(201,169,110,0.4);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

/* Icon */
.partner-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: transparent !important;
}

.partner-icon i {
    font-size: 14px !important;
    color: #C9A96E !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.partner-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #F0EBE0 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
}

.partner-card p {
    font-size: 12px !important;
    color: rgba(240,235,224,0.45) !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* Gold bottom line on hover */
.partner-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #C9A96E, #A8863E);
    transition: width .4s ease;
}
.partner-card:hover::after { width: 100%; }

/* Tablet: 2 sütun */
@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        gap: 1px !important;
        border-radius: 12px !important;
    }
    .partner-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 28px 22px !important;
        gap: 0 !important;
        border-radius: 0 !important;
    }
    .partner-num {
        font-size: 11px !important;
        writing-mode: horizontal-tb !important;
        min-width: unset !important;
        flex-shrink: unset !important;
        margin-bottom: 20px !important;
    }
    .partner-icon {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: unset !important;
        margin-bottom: 18px !important;
    }
    .partner-card h4 { margin-bottom: 8px !important; font-size: 15px !important; }
    .partner-card p { font-size: 12px !important; margin: 0 !important; }
}

/* Mobile: 1 sütun */
@media (max-width: 576px) {
    .partner-grid {
        grid-template-columns: 1fr !important;
        gap: 1px !important;
        border-radius: 12px !important;
    }
    .partner-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 24px 20px !important;
        gap: 10px !important;
        border-radius: 0 !important;
    }
    .partner-num {
        margin-bottom: 0 !important;
        min-width: unset !important;
    }
    .partner-icon {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 0 !important;
        align-self: flex-start !important;
    }
    .partner-card h4 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    .partner-card p {
        font-size: 12px !important;
        margin: 0 !important;
        line-height: 1.55 !important;
    }

    /* Section başlığı */
    #who-can-refer h2 {
        font-size: clamp(22px, 7vw, 30px) !important;
    }
    #who-can-refer .lead {
        font-size: 13px !important;
    }
}

/* ═══════════════════════════════════════
   HOW IT WORKS — compact, no blue, gold
═══════════════════════════════════════ */

#how-it-works {
    background: #F4F1EB !important;
    padding: 64px 0 !important;
}

.how-it-works-header {
    text-align: center !important;
    margin-bottom: 40px !important;
    padding-bottom: 0 !important;
}

.how-it-works-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(24px, 3vw, 38px) !important;
    font-weight: 300 !important;
    color: #111110 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 10px !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.how-it-works-header .lead {
    font-size: 13px !important;
    color: #888 !important;
    font-weight: 300 !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    line-height: 1.65 !important;
}

/* Steps row */
#how-it-works .row {
    --bs-gutter-x: 0 !important;
    position: relative;
}

/* Connector line between steps */
#how-it-works .row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
    z-index: 0;
}

.process-step {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 16px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative;
    z-index: 1;
}

.process-step:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.step-icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid rgba(201,169,110,0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 16px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    transition: all .3s !important;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #C9A96E 0%, #A8863E 100%) !important;
    border-color: transparent !important;
}

.step-icon i {
    font-size: 16px !important;
    color: #C9A96E !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    transition: color .3s !important;
}

.process-step:hover .step-icon i {
    color: #fff !important;
}

.step-content h4 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111110 !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
}

.step-content p {
    font-size: 12px !important;
    color: #888 !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    #how-it-works .row::before { display: none; }
    #how-it-works .row { flex-direction: column !important; }
    #how-it-works .col {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }
    .process-step {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 16px !important;
        padding: 16px 0 !important;
        border-bottom: 1px solid rgba(201,169,110,0.12) !important;
    }
    .process-step .step-icon {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }
    .step-content { flex: 1; }
    #how-it-works .col:last-child .process-step { border-bottom: none !important; }
}

/* ═══════════════════════════════════════
   WHY REFER — elegant, no blue, gold
═══════════════════════════════════════ */

#why-refer {
    background: #fff !important;
    padding: 80px 0 !important;
}

.why-refer-header {
    text-align: center !important;
    max-width: 780px !important;
    margin: 0 auto 52px !important;
}

.why-refer-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(28px, 3.5vw, 44px) !important;
    font-weight: 300 !important;
    color: #111110 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 16px !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.why-refer-header .subtitle {
    font-size: 13.5px !important;
    color: #888 !important;
    font-weight: 300 !important;
    line-height: 1.75 !important;
    max-width: 680px !important;
    margin: 0 auto !important;
}

/* Transparency block — image-based hero */
.transparency-hero {
    margin: 0 0 52px !important;
    padding: 0 !important;
    position: relative !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 56px rgba(0,0,0,0.18) !important;
    min-height: 380px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.transparency-hero-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 40% !important;
    display: block !important;
}

.transparency-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(10,10,9,0.88) 0%, rgba(30,20,8,0.85) 100%) !important;
    z-index: 1 !important;
}

.transparency-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    padding: 72px 60px !important;
    max-width: 780px !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.transparency-content::before {
    display: none !important;
}

.transparency-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(26px, 3.2vw, 42px) !important;
    font-weight: 400 !important;
    color: #F0EBE0 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 20px !important;
    position: relative !important;
    padding-bottom: 20px !important;
    line-height: 1.15 !important;
}

.transparency-content h3::after {
    content: '' !important;
    display: block !important;
    width: 48px !important;
    height: 1px !important;
    background: #C9A96E !important;
    margin: 20px auto 0 !important;
    position: static !important;
}

.transparency-content p {
    font-size: 14px !important;
    color: rgba(240,235,224,0.90) !important;
    font-weight: 300 !important;
    line-height: 1.85 !important;
    margin: 0 auto !important;
    max-width: 640px !important;
}

.transparency-content strong {
    color: #C9A96E !important;
    font-weight: 500 !important;
}

.transparency-glass-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px 28px !important;
    margin-top: 36px !important;
    padding: 16px 28px !important;
    background: rgba(255,255,255,0.07) !important;
    backdrop-filter: saturate(180%) blur(16px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(16px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(201,169,110,0.20) !important;
    width: 100% !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.transparency-glass-bar span {
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(240,235,224,0.75) !important;
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    white-space: nowrap !important;
}

.transparency-glass-bar span i {
    color: #C9A96E !important;
    font-size: 10px !important;
}

/* "What sets us apart" label */
#why-refer .section-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #C9A96E !important;
    text-align: center !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    margin-bottom: 32px !important;
    line-height: 1 !important;
}

/* Advantage Cards */
.advantage-card {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.07) !important;
    border-radius: 10px !important;
    padding: 30px 26px !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04) !important;
    transition: box-shadow .3s, transform .3s !important;
}

.advantage-card::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;
    right: auto !important;
    height: 2px !important;
    width: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(90deg, #C9A96E, #A8863E) !important;
    transition: width .4s ease !important;
    transform: none !important;
    transform-origin: unset !important;
}

.advantage-card:hover::before {
    width: 100% !important;
    transform: none !important;
}

.advantage-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.09) !important;
}

/* Featured card — warm dark */
.advantage-card.featured {
    background: #111110 !important;
    border-color: rgba(201,169,110,0.18) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
}

.advantage-card.featured::before {
    display: block !important;
    width: 0 !important;
}

.advantage-card.featured:hover::before {
    width: 100% !important;
}

/* Icon */
.advantage-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    background: rgba(201,169,110,0.08) !important;
    border: 1px solid rgba(201,169,110,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    box-shadow: none !important;
    transition: background .3s, border-color .3s !important;
}

.advantage-card:hover .advantage-icon {
    background: rgba(201,169,110,0.14) !important;
    border-color: rgba(201,169,110,0.35) !important;
}

.advantage-icon i {
    font-size: 15px !important;
    color: #C9A96E !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.advantage-card.featured .advantage-icon {
    background: rgba(201,169,110,0.12) !important;
    border-color: rgba(201,169,110,0.25) !important;
    box-shadow: none !important;
}

/* Card text */
.advantage-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #111110 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 10px !important;
    line-height: 1.25 !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.advantage-card.featured h4 {
    color: #F0EBE0 !important;
}

.advantage-card p {
    font-size: 12.5px !important;
    color: #888 !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.advantage-card.featured p {
    color: rgba(240,235,224,0.45) !important;
}

/* Closing banner */
.closing-banner {
    margin-top: 52px !important;
    padding: 36px 44px !important;
    background: linear-gradient(135deg, #1a1510 0%, #111110 60%, #1a1510 100%) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(201,169,110,0.15) !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10) !important;
    flex-direction: row !important;
    text-align: left !important;
}

.closing-banner .banner-icon {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(201,169,110,0.12) !important;
    border: 1px solid rgba(201,169,110,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
}

.closing-banner .banner-icon i {
    font-size: 16px !important;
    color: #C9A96E !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.closing-banner .banner-text h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(17px, 2vw, 24px) !important;
    font-weight: 400 !important;
    color: #F0EBE0 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

@media (max-width: 640px) {
    .transparency-content {
        padding: 28px 24px !important;
    }
    .closing-banner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 28px 24px !important;
        gap: 16px !important;
    }
}

/* ═══════════════════════════════════════
   BENEFITS BANNER — gold, no blue
═══════════════════════════════════════ */

#benefits-banner {
    background: linear-gradient(135deg, #1a1510 0%, #111110 50%, #1a1510 100%) !important;
    padding: 72px 0 !important;
}

.banner-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(26px, 3vw, 42px) !important;
    font-weight: 300 !important;
    color: #F0EBE0 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 14px !important;
}

.banner-content p {
    font-size: 13.5px !important;
    color: rgba(240,235,224,0.55) !important;
    font-weight: 300 !important;
    margin-bottom: 32px !important;
    line-height: 1.75 !important;
}

.banner-btn {
    background: linear-gradient(135deg, #C9A96E 0%, #A8863E 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 100px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 4px 20px rgba(168,134,62,0.35) !important;
    text-decoration: none !important;
    transition: box-shadow .25s, transform .25s !important;
}

.banner-btn:hover {
    background: linear-gradient(135deg, #D9B97E 0%, #B8963E 100%) !important;
    box-shadow: 0 8px 32px rgba(168,134,62,0.5) !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
}

/* Transparency content — centered */
.transparency-content {
    text-align: center !important;
}

.transparency-content p {
    max-width: 680px !important;
    margin: 0 auto !important;
}

/* ── Referral Form — Marketing Consent Checkbox ────── */
.ref-consent {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    margin: 14px 0 0;
}

.ref-consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.ref-consent-box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 0;
    border: 2px solid #bbb;
    border-radius: 3px;
    background: #fff;
    transition: background .18s, border-color .18s;
    position: relative;
    display: inline-block;
}

.ref-consent-box::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    opacity: 0;
    transition: opacity .15s;
}

.ref-consent input:checked + .ref-consent-box {
    background: linear-gradient(135deg, #C9A96E, #A8863E);
    border-color: #C9A96E;
}

.ref-consent input:checked + .ref-consent-box::after { opacity: 1; }

.ref-consent-text {
    font-size: 10.5px;
    color: #999;
    line-height: 1.5;
    text-transform: none;
}