/* Bouddi AI Training Portal - Corporate Brand Identity Convergence */
/* Styled to align perfectly with the live bouddiatelier.com branding */

:root {
    /* Differentiated SME Palette - Pacific Ocean & Coastal Teal */
    /* Reflects Bouddi meaning: deep rock blue and water breaking over sandstone rocks */
    --bg: #F4F6F8;                  /* Light sea-salt mist grey */
    --bg-2: #E6EAEF;                /* Cool sandstone grey */
    --surface: #FFFFFF;             /* Crisp white cards */
    --ink: #0F172A;                 /* Deep Pacific rock blue-black */
    --ink-2: #334155;               /* Cool dark slate charcoal */
    --muted: #64748B;               /* Muted slate-grey */
    --line: #CBD5E1;                /* Light rock grey borders */
    
    /* Primary Accent: Deep Pacific Slate Blue (Sandstone rock anchor) */
    --accent: #1E3A5F;
    --accent-2: #0F172A;
    --accent-soft: rgba(30, 58, 95, 0.08);
    --accent-glow: rgba(30, 58, 95, 0.15);
    
    /* Highlight/Waves Accent: Beautiful Coastal Teal (Water breaking) */
    --teal-wave: #00A896;
    --teal-wave-hover: #008F80;
    --teal-wave-glow: rgba(0, 168, 150, 0.15);
    
    /* Functional Colors */
    --success: #2F855A;
    --success-glow: rgba(47, 133, 90, 0.1);
    --error: #B23A3A;
    --error-glow: rgba(178, 58, 58, 0.08);
    
    /* Premium Typography */
    --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    
    /* Sleek Corporate Geometry */
    --radius: 4px;
    --radius-lg: 4px;
    --radius-md: 4px;
    --radius-sm: 4px;
    
    /* Soft shadows matching high-end corporate sites */
    --shadow-premium: 0 4px 20px rgba(30, 58, 95, 0.05), 0 1px 3px rgba(0, 0, 0, 0.05);
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & fonts */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
}

h3 {
    font-size: 22px;
    line-height: 1.25;
}

h4 {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
}

p {
    margin-bottom: 1em;
    color: var(--ink-2);
}

.portal-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation Header Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: rgba(248, 245, 242, 0.85);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.brand-logo:hover {
    opacity: 0.85;
    text-decoration: none;
}

.brand-logo img {
    display: block;
    height: 44px;
    width: auto;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--ink-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 14.5px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--accent);
    text-decoration: none;
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    border-radius: 1px;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14.5px;
    font-weight: 500;
    font-family: var(--font-body);
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background-color: var(--accent-2);
}

.btn-secondary {
    background-color: var(--teal-wave);
    color: #FFFFFF !important;
}

.btn-secondary:hover {
    background-color: var(--teal-wave-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: var(--ink);
    background-color: rgba(30, 58, 95, 0.03);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12.5px;
}

.btn-lg {
    padding: 14px 24px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 96px 0 72px;
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.hero h1 {
    max-width: 20ch;
    margin: 0 auto 28px auto;
}

.hero p {
    font-size: 19.5px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 64ch;
    margin: 0 auto 40px auto;
}

/* Pillars Section */
.hero-transform {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px 0 72px 0;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    text-align: left;
}

.transform-item {
    border-top: 2px solid var(--accent);
    padding-top: 20px;
}

.transform-n {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.transform-label {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
}

.transform-hook {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 10px;
}

.transform-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
}

/* Course Track Section Grid */
.section-title-row {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-row h2 {
    margin-bottom: 14px;
}

.section-title-row p {
    font-size: 19px;
    color: var(--muted);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.course-card {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: 4px;
    background-color: var(--accent);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    opacity: 0.7;
}

.course-card.has-image::before {
    display: none;
}

.course-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-premium);
}

.course-badge {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.course-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.course-price-row {
    margin: 18px 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-currency {
    font-size: 18px;
    color: var(--ink);
    font-family: var(--font-heading);
}

.price-amount {
    font-size: 36px;
    font-weight: 500;
    color: var(--ink);
    font-family: var(--font-heading);
}

.price-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
    margin-left: 4px;
}

.course-features {
    list-style: none;
    margin: 24px 0;
    flex-grow: 1;
}

.course-features li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    font-size: 14.5px;
    color: var(--ink-2);
    padding: 8px 0;
    border-top: 1px solid var(--line);
}

.course-features li:first-child {
    border-top: none;
}

.course-features li svg {
    width: 14px;
    height: 10px;
    margin-top: 6px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Interactive Wizard / Booking Layout */
.booking-card {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    margin-bottom: 80px;
}

.booking-header {
    background-color: var(--bg-2);
    padding: 28px 36px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-header h3 {
    font-size: 20px;
}

.wizard-steps {
    display: flex;
    gap: 24px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
}

.step-indicator.active {
    color: var(--accent);
}

.step-indicator.completed {
    color: var(--success);
}

.step-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background-color: var(--surface);
}

.step-indicator.active .step-circle {
    border-color: var(--accent);
    background-color: var(--accent-soft);
    color: var(--accent);
}

.step-indicator.completed .step-circle {
    border-color: var(--success);
    background-color: var(--success-glow);
    color: var(--success);
}

.booking-body {
    padding: 36px;
}

.wizard-step-panel {
    display: none;
}

.wizard-step-panel.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

input, select, textarea {
    background-color: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 14px;
    color: var(--ink);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

input::placeholder, textarea::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background-color: #FFFFFF;
}

/* Track Selector radio cards */
.track-selectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.track-radio-card {
    border: 1px solid var(--line);
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.track-radio-card input {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.track-radio-card:hover {
    border-color: var(--teal-wave);
}

.track-radio-card.selected {
    border-color: var(--teal-wave);
    background-color: var(--teal-wave-glow);
}

.track-radio-card h4 {
    font-size: 16px;
    color: var(--ink);
}

.track-radio-card span {
    font-size: 12.5px;
    color: var(--muted);
}

/* Payment split sandbox & Stripe details */
.payment-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
}

.stripe-elements-mock {
    border: 1px solid var(--line);
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stripe-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    margin-bottom: 8px;
}

.stripe-card-field {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    background: #FFFFFF;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stripe-card-field input {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--ink);
    width: 100%;
}

.stripe-card-field input:focus {
    background-color: transparent;
}

.summary-pane {
    background-color: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-pane h4 {
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    margin-bottom: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--ink-2);
}

.summary-row.total {
    border-top: 1px solid var(--line);
    padding-top: 12px;
    margin-top: 6px;
    font-size: 18px;
    font-weight: 500;
    color: var(--accent);
    font-family: var(--font-heading);
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 20px;
}

/* Dashboard / Attendee Portal Details */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-bottom: 80px;
}

.profile-summary-card {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.profile-summary-card h3 {
    margin-bottom: 4px;
}

.profile-summary-card span {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 20px;
}

.profile-stats-row {
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
}

.profile-stat-box {
    text-align: center;
}

.profile-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.profile-stat-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bookings-list-card {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
}

.bookings-list-card h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.bookings-grid-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-item {
    background-color: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.booking-item:hover {
    border-color: var(--accent);
}

.booking-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-item-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
}

.booking-item-meta {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 16px;
}

.booking-item-meta-span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.booking-item-badge {
    padding: 4px 10px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-item-badge.virtual {
    background-color: var(--accent-soft);
    color: var(--accent);
}

.booking-item-badge.in-person {
    background-color: var(--success-glow);
    color: var(--success);
}

.no-bookings {
    text-align: center;
    padding: 40px;
    color: var(--muted);
    font-size: 14.5px;
}

/* Modals & Invoices (Corporate aesthetics) */
.invoice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(49, 29, 52, 0.7); /* Custom plum translucent background */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 20px;
    backdrop-filter: blur(4px);
}

.invoice-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.invoice-modal {
    background-color: #FFFFFF;
    color: var(--ink);
    max-width: 700px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.invoice-header-row {
    background-color: var(--accent);
    color: #FFFFFF;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.invoice-header-row h3 {
    color: #FFFFFF;
}

.invoice-btn-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.15s ease;
    display: flex;
    align-items: center;
}

.invoice-btn-close:hover {
    opacity: 1;
}

.invoice-body {
    padding: 32px;
    overflow-y: auto;
    max-height: 70vh;
}

.tax-invoice-container {
    border: 1px solid var(--line);
    padding: 24px;
    background: #FFFFFF;
}

.tax-invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.tax-invoice-title {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--ink);
    letter-spacing: -0.01em;
}

.tax-invoice-meta {
    text-align: right;
    font-size: 12px;
    color: var(--muted);
}

.tax-invoice-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.tax-invoice-column h5 {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.tax-invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.tax-invoice-table th {
    background-color: var(--bg-2);
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.tax-invoice-table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
}

.tax-invoice-totals {
    margin-left: auto;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 2px solid var(--ink);
    padding-top: 12px;
}

.tax-invoice-totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
}

.tax-invoice-totals-row.grand-total {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    border-top: 1px solid var(--line);
    padding-top: 8px;
    font-family: var(--font-heading);
}

.invoice-footer-actions {
    background-color: var(--bg-2);
    padding: 16px 32px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    border-top: 1px solid var(--line);
}

/* Aussie AI Bot Widget Styles */
.aussie-bot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.aussie-bot-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--teal-wave);
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: var(--transition);
}

.aussie-bot-bubble:hover {
    transform: scale(1.06) rotate(6deg);
    background-color: var(--teal-wave-hover);
}

.aussie-bot-panel {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 350px;
    height: 470px;
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.aussie-bot-panel.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.aussie-bot-header {
    background-color: var(--accent);
    color: #FFFFFF;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aussie-bot-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aussie-bot-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
}

.aussie-bot-title {
    font-weight: 600;
    font-size: 13.5px;
}

.aussie-bot-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.aussie-bot-body {
    flex-grow: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--bg);
}

.aussie-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 13.5px;
    line-height: 1.45;
}

.aussie-msg.agent {
    background-color: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink);
    align-self: flex-start;
}

.aussie-msg.user {
    background-color: var(--teal-wave);
    color: #FFFFFF;
    align-self: flex-end;
}

.aussie-bot-footer {
    padding: 12px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 8px;
    background-color: var(--surface);
}

.aussie-bot-input {
    flex-grow: 1;
    padding: 8px 12px !important;
    font-size: 13.5px !important;
    background-color: var(--bg);
}

/* Success View overlay details */
.success-overlay {
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--success-glow);
    border: 2px solid var(--success);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.success-icon svg {
    width: 28px;
    height: 28px;
}

/* Responsive breakdowns */
@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .track-selectors {
        grid-template-columns: 1fr;
    }
    
    .payment-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-transform {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Footer Styling convergence */
footer {
    background-color: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 64px 0 48px;
    font-size: 14.5px;
    margin-top: 80px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 820px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

footer h4 {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer ul a {
    color: var(--ink-2);
    transition: var(--transition);
}

footer ul a:hover {
    color: var(--accent);
    text-decoration: none;
}

footer .copy {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}

/* Print Overrides */
@media print {
    body * {
        visibility: hidden;
    }
    .invoice-overlay, .invoice-overlay * {
        visibility: visible;
    }
    .invoice-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: transparent;
        padding: 0;
        backdrop-filter: none;
    }
    .invoice-modal {
        box-shadow: none;
        max-width: 100%;
    }
    .invoice-header-row, .invoice-footer-actions {
        display: none !important;
    }
}

/* Pillars Grid Hover Effects */
.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--teal-wave) !important;
    box-shadow: var(--shadow-premium);
}
