/**
 * BÚHO Insurance - Unified Styles for Experience Site
 * Static Resource for Salesforce LWC Components and Standalone HTML
 * Location: buhoAssets/css/buhoStyles.css
 */

/* =============================================================================
   Reset and Base Styles
   ============================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #13203D;
    --buho-primary-blue: #13203D;
    --accent-pink: #E53C7B;
    --buho-accent-pink: #E53C7B;
    --light-blue: #89DBEF;
    --buho-light-blue: #89DBEF;
    --white: #ffffff;
    --buho-white: #ffffff;
    --gray-text: #6B7280;
    --buho-gray-text: #6B7280;
    --input-border: #D1D5DB;
    --buho-input-border: #D1D5DB;
    --input-bg: #F9FAFB;
    --buho-input-bg: #F9FAFB;
    --buho-background: #F5F5F5;
    
    /* Typography */
    --buho-font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --buho-spacing-xs: 4px;
    --buho-spacing-sm: 8px;
    --buho-spacing-md: 16px;
    --buho-spacing-lg: 24px;
    --buho-spacing-xl: 32px;
    --buho-spacing-2xl: 48px;
    
    /* Border Radius */
    --buho-radius-sm: 4px;
    --buho-radius-md: 8px;
    --buho-radius-lg: 16px;
    --buho-radius-xl: 24px;
    
    /* Shadows */
    --buho-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --buho-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --buho-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --buho-transition-fast: 0.15s ease;
    --buho-transition-normal: 0.3s ease;
}

community_layout-section[data-layout-direction="desktop-direction-column tablet-direction-column mobile-direction-column"] {
    display: none !important;
}

community_layout-section[data-layout-direction="desktop-direction-row tablet-direction-column mobile-direction-column"] {
    padding:0 !important;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #F5F5F5;
}

.flatpickr-input {
    padding-left: 35px !important;
}
/* Base Styles for LWC */
.buho-container {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.buho-container *,
.buho-container *::before,
.buho-container *::after {
    box-sizing: border-box;
}

/* =============================================================================
   Login Page Styles
   ============================================================================= */

/* Main Container */
.login-container,
.buho-login-container {
    display: flex;
    min-height: 100vh;
    background-color: #F5F5F5;
}

/* Left Section - Login Form */
.login-section,
.buho-login-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #F5F5F5;
}

.login-content,
.buho-login-content {
    width: 100%;
    max-width: 480px;
}

/* Logo */
.logo,
.buho-logo {
    margin-bottom: 50px;
}

.logo-icon,
.buho-logo-icon {
    width: 172px;
    height: auto;
    display: block;
}

/* Welcome Text */
.welcome-text,
.buho-welcome-text {
    margin-bottom: 40px;
}

.welcome-text h2,
.buho-welcome-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.2;
    margin: 0;
}

.welcome-text .highlight,
.buho-highlight {
    color: var(--accent-pink);
}

/* Form Styles */
.login-form,
.buho-form {
    width: 100%;
}

.form-group,
.buho-form-group {
    margin-bottom: 24px;
}

.form-group label,
.buho-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.form-group input,
.buho-form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.buho-form-group input::placeholder {
    color: #9CA3AF;
}

.form-group input:focus,
.buho-form-group input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

/* Forgot Password */
.forgot-password,
.buho-forgot-password {
    margin-bottom: 28px;
}

.forgot-link,
.buho-forgot-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-pink);
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.forgot-link:hover,
.buho-forgot-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Sign In Button */
.btn-signin,
.buho-btn-signin {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.btn-signin:hover,
.buho-btn-signin:hover {
    background-color: #1a2d52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3);
}

.btn-signin:active,
.buho-btn-signin:active {
    transform: translateY(0);
}

.btn-signin.loading,
.buho-btn-signin:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.btn-signin.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

/* Social Login Buttons */
.btn-social,
.buho-btn-social {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-social:hover,
.buho-btn-social:hover {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-social:active,
.buho-btn-social:active {
    transform: translateY(0);
}

.btn-social .social-icon,
.buho-social-icon {
    width: 18px;
    height: 18px;
    display: block;
}

/* Sign Up Text */
.signup-text,
.buho-signup-text {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #6B7280;
}

.signup-link,
.buho-signup-link {
    color: var(--accent-pink);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.signup-link:hover,
.buho-signup-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* =============================================================================
   Carousel Section
   ============================================================================= */

.carousel-section,
.buho-carousel-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D946A6 0%, #8B2F65 100%);
    padding: 60px;
    position: relative;
}

.carousel-container,
.buho-carousel-container {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    position: relative;
    border-radius:  0px !important;
}

.carousel-slide,
.buho-carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active,
.buho-carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buhoFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-image,
.buho-carousel-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.carousel-image img,
.buho-carousel-image img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-content h3,
.buho-carousel-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

/* Carousel Controls */
.carousel-controls,
.buho-carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.carousel-counter,
.buho-carousel-counter {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.carousel-buttons,
.buho-carousel-buttons {
    display: flex;
    gap: 12px;
}

.carousel-btn,
.buho-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover,
.buho-carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.carousel-btn:active,
.buho-carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn .arrow-icon,
.carousel-btn i,
.buho-carousel-btn svg,
.buho-carousel-btn i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    color: var(--white);
    fill: var(--white);
    display: block;
}

/* =============================================================================
   Error & Success Messages
   ============================================================================= */

.buho-error-message {
    background-color: #FEF2F2;
    border: 1px solid #EF4444;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #DC2626;
    font-size: 14px;
}

.buho-success-message {
    background-color: #F0FDF4;
    border: 1px solid #10B981;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #059669;
    font-size: 14px;
}

/* =============================================================================
   Loading Spinner
   ============================================================================= */

.buho-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: buhoSpin 0.6s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes buhoSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =============================================================================
   Theme Wrapper Styles
   ============================================================================= */

.buho-theme-wrapper {
    font-family: var(--buho-font-family);
    color: var(--buho-text-primary, #1F2937);
    background-color: var(--buho-background);
    min-height: 100%;
}

/* Light Theme (Default) */
.buho-theme-wrapper[data-theme="light"] {
    --buho-background: #F5F5F5;
    --buho-text-primary: #1F2937;
    --buho-text-secondary: #6B7280;
    --buho-surface: #FFFFFF;
}

/* Dark Theme */
.buho-theme-wrapper[data-theme="dark"] {
    --buho-background: #1F2937;
    --buho-text-primary: #FFFFFF;
    --buho-text-secondary: #9CA3AF;
    --buho-surface: #374151;
}

/* =============================================================================
   Reset Password & Auth Card Styles
   ============================================================================= */

/* Centered Layout - for standalone auth pages */
.centered-layout {
    background: linear-gradient(135deg, #F8F9FA 0%, #EDF1F5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.centered-layout .auth-logo img {
    width: 207px;
    height: auto;
}

/* Auth Card Component */
.auth-card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(180deg, #E8ECF4 0%, #FDF2F5 100%);
    border-radius: 24px;
    padding: 48px 56px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Auth Logo */
.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo .logo-icon {
    width: 140px;
    height: auto;
}
.forgotpassword .auth-logo img{
    width: 220px;
    height: auto;
}
.auth-header {
    margin-bottom: 32px;
}

.auth-content {
    width: 100%;
}

/* Auth Title Section */
.auth-title {
    text-align: center;
    margin-bottom: 36px;
}

.auth-title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.auth-title .highlight {
    color: var(--accent-pink);
}

.auth-subtitle {
    font-size: 15px;
    color: var(--gray-text);
    margin: 0;
    font-weight: 400;
    text-align: center;
}

/* Auth Form */
.auth-form {
    width: 100%;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

/* Password Input with Toggle */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--accent-pink);
}

.toggle-password .eye-icon {
    width: 20px;
    height: 20px;
}

.toggle-password i {
    font-size: 18px;
}

/* Back to Login Link */
.back-to-login {
    margin-bottom: 24px;
}

.back-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-pink);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Primary Button */
.btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a2d52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

/* Password Match Indicator */
.password-match-indicator {
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.password-match-indicator.match {
    color: #10B981;
}

.password-match-indicator.no-match {
    color: #EF4444;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
    width: 0%;
}

.strength-bar-fill.weak {
    width: 25%;
    background-color: #EF4444;
}

.strength-bar-fill.fair {
    width: 50%;
    background-color: #F59E0B;
}

.strength-bar-fill.good {
    width: 75%;
    background-color: #10B981;
}

.strength-bar-fill.strong {
    width: 100%;
    background-color: #059669;
}

.strength-text {
    font-size: 11px;
    color: var(--gray-text);
}

/* Input States */
.form-group input.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.form-group input.success {
    border-color: #10B981;
    background-color: #F0FDF4;
}

/* Error Message */
.error-message {
    font-size: 12px;
    color: #EF4444;
    margin-top: 6px;
    display: none;
}

.error-message.visible {
    display: block;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 16px;
    background-color: #F0FDF4;
    border: 1px solid #10B981;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message.visible {
    display: block;
}

.success-message p {
    color: #059669;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* =============================================================================
   Forgot Password Page Styles
   ============================================================================= */

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 45px;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 18px;
    z-index: 1;
    pointer-events: none; /* Allow clicks to pass through to input */
}

.input-with-icon .form-control {
    padding-left: 48px;
}

.success-state {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.success-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.success-state p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-state .text-muted {
    font-size: 0.9rem;
    color: #999;
}

.btn-secondary {
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    border: 2px solid #89DBEF;
    color: #89DBEF;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #72c9df;
    color: #72c9df;
}

.help-text {
    text-align: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.help-text p {
    color: #666;
    font-size: 0.9rem;
}

.help-text a {
    color: #89DBEF;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

/* Loading spinner */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.12em;
}

.me-2 {
    margin-right: 0.5rem;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* =============================================================================
   Quote Wizard Styles
   ============================================================================= */

/* Header */
.wizard-header {
    background-color: var(--white);
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo .logo-icon {
    width: 140px;
    height: auto;
}

.btn-contact {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-contact:hover {
    background-color: #1a2d52;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3);
}

/* Main Content Area */
.wizard-main {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #FDF2F5 0%, #F8F9FA 100%);
    padding: 0;
}

.wizard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 40px;
}

/* Progress Header */
.wizard-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-pink) !important;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.back-btn:hover {
    opacity: 0.8;
    color: var(--accent-pink);
}

.back-btn i {
    font-size: 18px;
}

.step-counter {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 14px;
}

/* Progress Bar */
.wizard-progress-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.progress-segment {
    flex: 1;
    height: 6px;
    background-color: #E5E7EB;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.progress-segment.active {
    background: linear-gradient(90deg, #89DBEF 0%, #72c9df 100%);
}

.progress-segment.completed {
    background: linear-gradient(90deg, #89DBEF 0%, #72c9df 100%);
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeInStep 0.4s ease-out;
}

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

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Header */
.step-header {
    margin-bottom: 32px;
}

.step-header h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.step-header .highlight {
    color: var(--accent-pink);
}

.step-subtitle {
    font-size: 16px;
    color: var(--gray-text);
    margin: 0;
}

/* Wizard Form */
.wizard-form {
    max-width: 100%;
}

.wizard-form .form-group {
    margin-bottom: 24px;
}

.wizard-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.wizard-form .form-control,
.wizard-form .form-select {
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wizard-form .form-control:focus,
.wizard-form .form-select:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

.wizard-form .form-control::placeholder {
    color: #9CA3AF;
}

.wizard-form .form-text {
    font-size: 13px;
    color: var(--gray-text);
    margin-top: 6px;
}

/* Input Group */
.wizard-form .input-group .input-group-text {
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-weight: 500;
    color: #1F2937;
}

.wizard-form .input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

/* Term Type Selector */
.term-type-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.term-btn {
    padding: 10px 24px;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    cursor: pointer;
    transition: all 0.3s ease;
}

.term-btn:hover {
    border-color: var(--primary-blue);
}

.term-btn.active {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

/* Time Selection */
.time-selection input {
    padding-left: 45px !important;
}

.time-selection.visible {
    display: flex;
}

/* Coverage Terms Section */
.coverage-terms-section {
    margin: 32px 0;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

/* Custom Checkbox */
.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    flex-shrink: 0;
}

.custom-checkbox label {
    cursor: pointer;
    margin-bottom: 0;
}

.custom-checkbox .checkbox-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
}

.custom-checkbox .checkbox-hint {
    display: block;
    font-size: 12px;
    color: var(--accent-pink);
    margin-top: 2px;
}

/* Continue Button */
.btn-continue {
    display: inline-block !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    color: var(--white);
    background-color: var(--primary-blue) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 24px !important;
}

.btn-continue:hover {
    background-color: #1a2d52 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3) !important;
}

/* Step Info Text */
.step-info-text {
    font-size: 14px;
    color: var(--accent-pink);
    margin-top: 24px;
    text-align: center;
}

/* Territory Cards */
.territory-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.territory-card {
    background-color: var(--white);
    border: 2px solid var(--input-border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.territory-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.territory-card.selected {
    border-color: var(--accent-pink);
    background: var(--accent-pink);
}

.territory-card.selected .territory-title {
    color: #fff;
}

.territory-title {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.territory-map {
    border-radius: 8px;
    overflow: hidden;
}

.territory-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Summary Card */
.summary-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.summary-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label {
    font-size: 14px;
    color: var(--gray-text);
}

.summary-value {
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.selected {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.flatpickr-day:hover {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
}

/* =============================================================================
   User Details Card Styles
   ============================================================================= */

.user-details-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.card-header-section {
    padding: 20px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.card-header-section .card-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-text);
    margin: 0;
}

.card-body-section {
    padding: 24px;
}

.card-body-section .form-group {
    margin-bottom: 24px;
}

.card-body-section .form-group:last-child {
    margin-bottom: 0;
}

.card-body-section .row {
    margin-bottom: 24px;
}

.card-body-section .row:last-child {
    margin-bottom: 0;
}

.card-body-section .row .form-group {
    margin-bottom: 0;
}

.card-body-section label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 8px;
}

.card-body-section label .required {
    color: #DC2626;
    margin-right: 2px;
}

.card-body-section .form-control,
.card-body-section .form-select {
    padding: 12px 14px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.card-body-section .form-control:focus,
.card-body-section .form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(19, 32, 61, 0.1);
}

.card-body-section .form-control::placeholder {
    color: #9CA3AF;
}

.card-body-section .form-text {
    font-size: 13px;
    color: var(--gray-text);
    margin-top: 6px;
}

.card-footer-section {
    padding: 20px 24px;
    background-color: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
}

.btn-back {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--gray-text);
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #F3F4F6;
    border-color: #9CA3AF;
}

.card-footer-section .btn-continue {
    margin-top: 0;
    padding: 12px 28px;
    font-size: 14px;
    width: auto;
}

/* Phone input formatting */
#phone {
    letter-spacing: 0.5px;
}

/* Phone Number with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 140px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

.phone-input {
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone-input::placeholder {
    color: #9CA3AF;
}

.phone-input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

/* =============================================================================
   Quote Summary Page Styles
   ============================================================================= */

.summary-back-header {
    margin-bottom: 24px;
}

.summary-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.summary-page-header h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    line-height: 1.3;
}

.summary-page-header .highlight {
    color: var(--accent-pink);
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.term-type-label {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

/* Coverage Cards */
.coverage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.coverage-card {
    background-color: var(--white);
    border: 2px solid var(--input-border);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 280px;
}

.coverage-card:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.coverage-card.selected {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
}

.coverage-card.selected .coverage-card-title,
.coverage-card.selected .coverage-card-price,
.coverage-card.selected .coverage-card-description,
.coverage-card.selected .coverage-card-features li {
    color: var(--white);
}

.coverage-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 8px 0;
    text-align: center;
}

.coverage-card-price {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 16px 0;
    text-align: center;
}

.coverage-card-description {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.coverage-card.selected .coverage-card-description {
    color: rgba(255, 255, 255, 0.9);
}

.coverage-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-card-features li {
    font-size: 13px;
    color: var(--gray-text);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.coverage-card-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gray-text);
}

.coverage-card.selected .coverage-card-features li::before {
    color: var(--white);
}

/* Coverage Options */
.coverage-options {
    margin-bottom: 32px;
}

.coverage-options .form-group {
    margin-bottom: 0;
}

.coverage-options label {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    display: block;
}

.coverage-options .form-select {
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.coverage-options .form-select:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

/* Buy Section */
.buy-section {
    margin-top: 24px;
}

.btn-buy {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: #1a2d52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3);
    color: var(--white);
}

/* =============================================================================
   Responsive Design
   ============================================================================= */

@media (max-width: 1024px) {
    .login-container,
    .buho-login-container {
        flex-direction: column;
    }

    .login-section,
    .buho-login-section {
        padding: 40px 20px;
    }

    .carousel-section,
    .buho-carousel-section {
        padding: 40px 20px;
    }

    .carousel-container,
    .buho-carousel-container {
        max-width: 100%;
    }

    .welcome-text h2,
    .buho-welcome-text h2 {
        font-size: 32px;
    }

    .carousel-content h3,
    .buho-carousel-content h3 {
        font-size: 28px;
    }

    .territory-cards {
        grid-template-columns: 1fr;
    }

    .step-header h1 {
        font-size: 28px;
    }

    .coverage-cards {
        grid-template-columns: 1fr;
    }

    .coverage-card {
        min-height: auto;
    }

    .summary-page-header {
        flex-direction: column;
    }

    .summary-page-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .wizard-container {
        padding: 24px 20px;
    }

    .step-header h1 {
        font-size: 24px;
    }

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

    .term-btn {
        width: 100%;
        text-align: center;
    }

    .card-body-section {
        padding: 20px 16px;
    }

    .card-header-section {
        padding: 16px;
    }

    .card-footer-section {
        padding: 16px;
        flex-direction: column;
    }

    .card-footer-section .btn-back,
    .card-footer-section .btn-continue {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .logo-icon,
    .buho-logo-icon {
        width: 140px;
    }

    .welcome-text h2,
    .buho-welcome-text h2 {
        font-size: 26px;
    }

    .carousel-content h3,
    .buho-carousel-content h3 {
        font-size: 22px;
    }

    .carousel-container,
    .buho-carousel-container {
        padding: 30px 20px;
    }

    .auth-card {
        padding: 32px 24px;
        border-radius: 16px;
        max-width: 100%;
    }

    .auth-logo .logo-icon {
        width: 120px;
    }

    .auth-title h1 {
        font-size: 26px;
    }

    .auth-subtitle {
        font-size: 14px;
    }

    .wizard-progress-bar {
        gap: 8px;
    }

    .progress-segment {
        height: 4px;
    }

    .step-header h1 {
        font-size: 22px;
    }

    .btn-continue {
        width: 100%;
    }

    .summary-card {
        padding: 20px;
    }

    .phone-input-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .country-code-select {
        flex: 1 1 auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-actions {
        width: 100%;
    }

    .btn-download,
    .btn-email {
        flex: 1;
        justify-content: center;
    }

    .btn-buy {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .centered-layout {
        padding: 16px;
    }

    .auth-card {
        padding: 28px 20px;
    }

    .auth-title h1 {
        font-size: 22px;
    }

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

/* =============================================================================
   Email Check Screen Styles
   ============================================================================= */

.email-check-container {
    display: flex;
    min-height: 85vh;
    background-color: #F5F5F5;
}

.image-section {
    flex: 1;
    background: linear-gradient(135deg, #C13584 0%, #833AB4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px !important;
    position: relative;
}

.image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-text {
    text-align: center;
    color: var(--white);
}

.image-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.carousel-counter {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #FFFFFF;
}

.form-header {
    margin-bottom: 40px;
}

.form-header .logo {
    width: 172px;
    height: auto;
    margin-bottom: 24px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-pink);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.step-counter {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 14px;
}

.progress-bar {
    display: flex;
    gap: 16px;
}

.progress-fill {
    flex: 1;
    height: 6px;
    background-color: #E5E7EB;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.progress-fill.active {
    background: linear-gradient(90deg, #89DBEF 0%, #72c9df 100%);
}

.form-content {
    flex: 1;
}

.form-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 32px;
    line-height: 1.3;
}

.form-content h1 sup {
    font-size: 16px;
    top: -1em;
}

.form-content .highlight {
    color: var(--accent-pink);
}

.info-message {
    font-size: 13px;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 6px;
}

.info-message.success {
    color: #059669;
    background-color: #F0FDF4;
    border: 1px solid #10B981;
}

.signup-link {
    text-align: center;
    margin-top: 24px;
}

.signup-link a {
    color: var(--accent-pink);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.signup-link a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 24px;
}

.form-footer a {
    color: var(--gray-text);
    font-size: 14px;
    text-decoration: none;
    margin: 0 16px;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: var(--primary-blue);
}

/* =============================================================================
   Modal Styles
   ============================================================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    margin-bottom: 32px;
}

.modal-icon img {
    width: 280px;
    height: auto;
    margin: 0 auto;
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 32px;
    line-height: 1.3;
}

.modal-content h2 .highlight {
    color: var(--accent-pink);
}

.modal-description {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    width: 100%;
    margin-top: 0;
}

/* Full-Screen Modal for Previous Inquiry */
.modal-overlay-full {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
}

.modal-content-large {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.modal-icon-large {
    margin-bottom: 48px;
}

.modal-icon-large img {
    width: 400px;
    height: auto;
    margin: 0 auto;
}

.modal-content-large h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 48px;
    line-height: 1.3;
}

.modal-content-large h1 .highlight {
    color: var(--accent-pink);
}

.modal-actions-large {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn-dark {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    background-color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #1a2d52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3);
}

.btn-pink {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    background-color: var(--accent-pink);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #D12D6A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 60, 123, 0.3);
}

/* Responsive for Email Check Screen */
@media (max-width: 1024px) {
    .email-check-container {
        flex-direction: column;
    }

    .image-section {
        padding: 40px 20px;
    }

    .image-text h2 {
        font-size: 28px;
    }

    .form-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 24px 20px;
    }

    .form-content h1 {
        font-size: 24px;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .modal-icon img {
        width: 200px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-content-large h1 {
        font-size: 32px;
    }

    .modal-icon-large img {
        width: 280px;
    }

    .modal-actions-large {
        flex-direction: column;
    }

    .btn-dark,
    .btn-pink {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-header .logo {
        width: 140px;
    }

    .form-content h1 {
        font-size: 20px;
    }

    .modal-content {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .modal-icon img {
        width: 150px;
    }

    .modal-content h2 {
        font-size: 20px;
    }

    .step-indicator {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =============================================================================
   LWC Component Specific Styles (Consolidated from individual components)
   ============================================================================= */

/* User Details Component */
.login-notice {
    font-size: 14px;
    color: #E53C7B;
    margin-top: 8px;
}

.login-notice a {
    color: #E53C7B;
    font-weight: 600;
    text-decoration: underline;
}

.is-invalid {
    border-color: #DC2626 !important;
    background-color: #FEF2F2 !important;
}

.btn-continue-full {
    width: 100% !important;
    margin-top: 24px;
}

/* Carousel Component */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-slide {
    display: none;
    flex: 1;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-text {
    padding: 20px;
    text-align: center;
}

.image-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white, #FFFFFF);
    margin: 0;
    line-height: 1.3;
}

/* Forgot Password Component */
.success-state {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.success-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.success-state p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-state .text-muted {
    font-size: 0.9rem;
    color: #999;
}

.btn-secondary {
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    border: 2px solid #89DBEF;
    color: #89DBEF;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #72c9df;
    color: #72c9df;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    z-index: 1;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.help-text {
    text-align: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.help-text p {
    color: #666;
    font-size: 0.9rem;
}

.help-text a {
    color: #89DBEF;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

/* Loading spinner */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.12em;
}

.me-2 {
    margin-right: 0.5rem;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Theme Component */
.buho-theme-layout {
    min-height: 100vh;
    width: 100%;
}

/* Responsive adjustments for consolidated styles */
@media (max-width: 768px) {
    .success-icon {
        font-size: 3rem;
    }

    .success-state h3 {
        font-size: 1.25rem;
    }
}

/* =============================================================================
   Lightning Component Overrides for Bootstrap-like Styling
   ============================================================================= */

/* Vehicle Details Component Wrapper */
.vehicle-details-wrapper {
    max-width: 100%;
}

/* Lightning Combobox Override */
lightning-combobox {
    width: 100%;
}

lightning-combobox .slds-form-element__control {
    width: 100%;
}

lightning-combobox .slds-combobox__form-element {
    width: 100%;
}

lightning-combobox .slds-input {
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

lightning-combobox .slds-input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

lightning-combobox .slds-form-element__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

/* Lightning Input Override */
lightning-input {
    width: 100%;
}

lightning-input .slds-form-element__control {
    width: 100%;
}

lightning-input .slds-input {
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

lightning-input .slds-input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

lightning-input .slds-form-element__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

/* Lightning Checkbox Override */
lightning-input[type="checkbox"] .slds-checkbox {
    width: 20px;
    height: 20px;
}

lightning-input[type="checkbox"] .slds-checkbox__faux {
    width: 20px;
    height: 20px;
    border: 2px solid var(--input-border);
    border-radius: 4px;
}

lightning-input[type="checkbox"] .slds-checkbox [type="checkbox"]:checked + .slds-checkbox__faux {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Remove SLDS spacing for grid layout */
.vehicle-details-wrapper .slds-form-element {
    margin-bottom: 0;
}

/* Towing Section */
.towing-section {
    margin-top: 32px;
    margin-bottom: 24px;
}

/* Error Message Styling */
.error-message {
    font-size: 13px;
    color: #EF4444;
    background-color: #FEF2F2;
    border: 1px solid #EF4444;
    border-radius: 6px;
    padding: 12px 16px;
    margin-top: 16px;
    display: none;
}

.error-message.visible {
    display: block;
}

/* Ensure Bootstrap Grid Works with LWC */
.vehicle-details-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.vehicle-details-wrapper .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

.vehicle-details-wrapper .col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.vehicle-details-wrapper .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .vehicle-details-wrapper .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.vehicle-details-wrapper .g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.vehicle-details-wrapper .g-4 > * {
    margin-top: var(--bs-gutter-y);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.vehicle-details-wrapper .row.g-4 {
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

/* Form spacing */
.vehicle-details-wrapper .form-group {
    margin-bottom: 0;
}

/* =============================================================================
   Loading Overlay Styles
   ============================================================================= */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    width: 100%;
    height: 100vh;
}

.loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

.loading-overlay .loading-icon {
    width: auto;
    height: 100px;
    max-width: 200px;
    display: block;
}

.wizard-container {
    position: relative;
    min-height: 400px;
}

/* =============================================================================
   Modal Styles for User Details Component
   ============================================================================= */

/* Modal Overlay - Full Screen with Dark Background */
.modal-overlay-full {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

/* Modal Content - Large Centered */
.modal-content-large {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal Icon - Large */
.modal-icon-large {
    margin-bottom: 30px;
}

.modal-icon-large img {
    width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Modal Title */
.modal-content-large h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 40px 0;
    line-height: 1.3;
    font-family: 'Poppins', Arial, sans-serif;
}

.modal-content-large h1 .highlight {
    color: #E53C7B;
}

/* Modal Login Form */
.modal-login-form {
    margin: 30px 0;
    text-align: left;
}

.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    font-family: 'Poppins', Arial, sans-serif;
}

.modal-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    color: #1F2937;
    background-color: #ffffff;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-input:focus {
    outline: none;
    border-color: #E53C7B;
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

.modal-input::placeholder {
    color: #9CA3AF;
}

.modal-input:disabled {
    background-color: #F3F4F6;
    cursor: not-allowed;
    opacity: 0.7;
}

.modal-error-message {
    background-color: #FEF2F2;
    border-left: 4px solid #EF4444;
    padding: 12px 16px;
    border-radius: 6px;
    color: #DC2626;
    font-size: 14px;
    margin-top: 16px;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Modal Actions - Large */
.modal-actions-large {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

/* Single button layout */
.modal-actions-single {
    justify-content: stretch;
}

/* Modal Button Styles */
.btn-dark {
    flex: 1;
    padding: 18px 40px;
    background-color: #13203D;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
    white-space: nowrap;
}

.btn-dark:hover:not(:disabled) {
    background-color: #1a2d52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 32, 61, 0.3);
}

.btn-dark:disabled {
    background-color: #6B7280;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-light {
    flex: 1;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #13203D;
    border: 2px solid #D1D5DB;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
    white-space: nowrap;
}

.btn-light:hover:not(:disabled) {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
    color: #1F2937;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-light:disabled {
    background-color: #F3F4F6;
    color: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-pink {
    flex: 1;
    padding: 18px 40px;
    background-color: #E53C7B;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
    white-space: nowrap;
}

.btn-pink:hover:not(:disabled) {
    background-color: #D12D6A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 60, 123, 0.3);
}

.btn-pink:disabled {
    background-color: #F9A8D4;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content-large {
        padding: 40px 30px;
        max-width: 90%;
    }

    .modal-content-large h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .modal-icon-large img {
        width: 140px;
    }

    .modal-login-form {
        margin: 20px 0;
    }

    .modal-form-group {
        margin-bottom: 16px;
    }

    .modal-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .modal-actions-large {
        flex-direction: column;
    }

    .btn-dark,
    .btn-light,
    .btn-pink {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content-large {
        padding: 30px 20px;
    }

    .modal-content-large h1 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .modal-icon-large img {
        width: 120px;
    }

    .modal-login-form {
        margin: 16px 0;
    }

    .modal-form-group {
        margin-bottom: 14px;
    }

    .modal-form-group label {
        font-size: 13px;
    }

    .modal-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .modal-error-message {
        font-size: 13px;
        padding: 10px 14px;
    }

    .modal-actions-large {
        flex-direction: column;
    }

    .btn-dark,
    .btn-light,
    .btn-pink {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
    }
}

/* =============================================================================
   Towed Units Component Styles
   ============================================================================= */

.towed-units-wrapper {
    margin-top: 32px;
}

/* Existing selection grid */
.towed-existing-select {
    margin-bottom: 24px;
}

/* Towed Form Grid - Uses CSS Grid instead of Bootstrap classes */
.towed-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .towed-form-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.towed-header {
    margin-bottom: 24px;
}

.towed-header .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.towed-header .section-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Towed Units Table */
.towed-units-table {
    margin: 24px 0;
    /*background: #ffffff;*/
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-responsive {
    overflow-x: auto;
}

.buho-table {
    width: 100%;
    border-collapse: collapse;
    /*background: #ffffff;*/
}

.buho-table thead {
    background-color: var(--buho-accent-pink);
}

.buho-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #ffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E5E7EB;
}

.buho-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
    transition: background-color 0.2s ease;
}

.buho-table tbody tr:hover {
    background-color: #F9FAFB;
}

.buho-table tbody tr:last-child {
    border-bottom: none;
}

.buho-table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #1F2937;
    vertical-align: middle;
}

.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-icon {
    padding: 8px;
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}

.btn-icon:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.btn-icon.btn-edit:hover {
    color: #13203D;
    border-color: #13203D;
    background-color: rgba(19, 32, 61, 0.05);
}

.btn-icon.btn-delete:hover {
    color: #E53C7B;
    border-color: #E53C7B;
    background-color: rgba(229, 60, 123, 0.05);
}

.btn-icon-img {
    width: 16px;
    height: 16px;
    display: block;
    filter: invert(43%) sepia(8%) saturate(553%) hue-rotate(181deg) brightness(92%) contrast(87%); /* #6B7280 */
}

.btn-icon.btn-edit:hover .btn-icon-img {
    filter: invert(12%) sepia(18%) saturate(2476%) hue-rotate(188deg) brightness(96%) contrast(93%); /* #13203D */
}

.btn-icon.btn-delete:hover .btn-icon-img {
    filter: invert(34%) sepia(92%) saturate(2158%) hue-rotate(319deg) brightness(92%) contrast(92%); /* #E53C7B */
}

/* Towed Form Section */
.towed-form-section {
    margin-top: 24px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.towed-form-section .form-group {
    margin-bottom: 0;
}

.towed-form-section .form-actions {
    justify-content: flex-start;
}

.towed-form-section .form-actions .btn-dark,
.towed-form-section .form-actions .btn-light {
    flex: 0 0 auto;
    min-width: auto;
    width: auto;
    padding: 14px 32px;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: flex-start;
}

.form-actions .btn-dark,
.form-actions .btn-light {
    padding: 14px 32px;
    font-size: 15px;
    flex: 0 0 auto;
    min-width: 150px;
}

.btn-secondary {
    padding: 14px 28px;
    background-color: #ffffff;
    color: #6B7280;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
    color: #1F2937;
}

.required {
    color: #E53C7B;
    margin-left: 2px;
}

/* Info Message */
.info-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background-color: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    color: #1E40AF;
    font-size: 14px;
}

.info-message svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #3B82F6;
}

.info-message .info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: invert(43%) sepia(60%) saturate(2444%) hue-rotate(199deg) brightness(98%) contrast(96%); /* #3B82F6 */
}

.info-message p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Towed Component */
@media (max-width: 768px) {
    .towed-units-table {
        padding: 16px;
    }

    .towed-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .buho-table {
        display: block;
    }

    .buho-table thead {
        display: none;
    }

    .buho-table tbody {
        display: block;
    }

    .buho-table tbody tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        padding: 12px;
    }

    .buho-table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .buho-table tbody td:last-child {
        border-bottom: none;
    }

    .buho-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6B7280;
        font-size: 13px;
    }

    .action-buttons {
        justify-content: flex-end;
        width: 100%;
    }

    .towed-form-section {
        padding: 16px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn-dark,
    .form-actions .btn-light,
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
        flex: 1;
        min-width: auto;
    }

    .towed-form-section .form-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .towed-form-section .form-actions .btn-dark,
    .towed-form-section .form-actions .btn-light {
        width: auto;
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .towed-header .section-title {
        font-size: 18px;
    }

    .towed-header .section-subtitle {
        font-size: 13px;
    }

    .towed-units-table {
        padding: 12px;
    }

    .towed-form-section {
        padding: 12px;
    }
}

/* =============================================================================
   Toast Component Styles
   ============================================================================= */

.buho-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    min-width: 320px;
    max-width: 480px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    z-index: 99999;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.buho-toast .toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.buho-toast .toast-content {
    flex: 1;
}

.buho-toast .toast-title {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.buho-toast .toast-message {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.buho-toast .toast-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #9CA3AF;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s ease;
}

.buho-toast .toast-close:hover {
    color: #4B5563;
}

/* Toast Variants */
.buho-toast-success {
    border-left: 4px solid #10B981;
}

.buho-toast-success .toast-icon {
    color: #10B981;
}

.buho-toast-error {
    border-left: 4px solid #EF4444;
}

.buho-toast-error .toast-icon {
    color: #EF4444;
}

.buho-toast-warning {
    border-left: 4px solid #F59E0B;
}

.buho-toast-warning .toast-icon {
    color: #F59E0B;
}

.buho-toast-info {
    border-left: 4px solid #3B82F6;
}

.buho-toast-info .toast-icon {
    color: #3B82F6;
}

/* Responsive Design for Toast */
@media (max-width: 768px) {
    .buho-toast {
        top: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .buho-toast {
        top: 12px;
        right: 12px;
        left: 12px;
        padding: 14px 16px;
    }

    .buho-toast .toast-icon {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }

    .buho-toast .toast-title {
        font-size: 14px;
    }

    .buho-toast .toast-message {
        font-size: 13px;
    }
}

/* =============================================================================
   Quote Page Styles (buho_quotePage Component)
   ============================================================================= */

/* Main Container */
.quote-page-container {
    width: 100%;
    background-color: #f4f6f9;
    min-height: 100vh;
}

/* Quote Header Section */
.quote-header {
    background-color: white;
    border-bottom: 1px solid #e0e5ee;
    padding: 1.5rem 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.company-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.company-logo-wrapper {
    margin-bottom: 0.5rem;
}

.company-logo {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

.company-name-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16325c;
}

/* Other Companies Section */
.other-companies-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 19px;
}

.other-companies-btn:hover {
    background-color: #2a2f4f;
}

.other-companies-dropdown {
    position: absolute;
    top: 26%;
    right: 0;
    background: white;
    border: 1px solid #e0e5ee;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
    min-width: 200px;
}

.company-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.company-option:hover {
    background-color: #f4f6f9;
}

/* Action Buttons for Quote Page */
.action-buttons-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    position: relative;
}

.action-buttons-horizontal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
}

.action-btn {
    white-space: nowrap;
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-download {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--accent-pink);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-download:hover {
    background-color: #D12D6A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 60, 123, 0.3);
    color: var(--white);
}

.btn-email {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-email:hover {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
}

/* Dropdown Container for Liability/Medical */
.dropdown-container {
    position: relative;
    margin-bottom: 0.75rem;
}

.coverage-dropdown {
    width: 100%;
    padding: 14px 40px 14px 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1F2937;
    background-color: white;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.coverage-dropdown:hover {
    border-color: #9CA3AF;
}

.coverage-dropdown:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
}

/* Button Group for +/- */
.button-group {
    display: flex;
    gap: 0.5rem;
}

.adjust-btn-pink {
    flex: .1;
    background-color: var(--accent-pink);
    color: white;
    border: none;
    padding: 5px 0px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.adjust-btn-pink:hover:not(:disabled) {
    background-color: var(--accent-pink);
    transform: translateY(-1px);
}

.adjust-btn-pink:active:not(:disabled) {
    transform: translateY(0);
}

.adjust-btn-pink:disabled {
    background-color: #F9A8D4;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Quote Page Spinner */
.spinner-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 0.5rem;
}

/* Back Button - Quote Page specific override */
.back-btn {
    color: #e91e8c !important;
    font-weight: 600;
}

/* Quote Page Section Titles */
.quote-page-container .section-title {
    font-size: 2rem;
    font-weight: 400;
    color: #16325c;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.highlight-text {
    color: #e91e8c;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1rem;
    color: #13203D;
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

/* Quote Content */
.quote-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
}

/* Term Coverage Section */
.term-coverage-section {
    background-color: white;
    padding: 0;
    margin-bottom: 2rem;
}

.term-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.term-card {
    background: white;
    border: 2px solid #e0e5ee;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.term-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.term-card.selected {
    background: linear-gradient(135deg, #e91e8c 0%, #ff4da6 100%);
    color: white;
    border-color: #e91e8c;
}

.term-card.upsell {
    background: #fff;
    color: 000;
    border-color: #000;
}

.term-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.term-card.selected .term-title {
    color: white;
}
.term-card.upsell .term-title {
    color: #000;
}

.term-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.term-card.selected .term-price {
    color:#fff;
}
.term-card.upsell .term-price {
    color: #000;
}

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

.term-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.term-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.term-card.selected .term-features li {
    color: rgba(255, 255, 255, 0.95);
}
.term-card.upsell .term-features li {
    color: #000;
}

/* Coverage Adjustment Section */
.coverage-adjustment-section {
    background-color: white;
    padding: 0;
    margin-bottom: 2rem;
}

.coverage-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.coverage-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coverage-label {
    font-size: 15px;
    font-weight: 500;
    color: #1F2937;
    display: block;
    margin-bottom: 0;
}

.checkbox-options-container {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.checkbox-option {
    flex: 0 0 auto;
}

/* Buy Button Container */
.buy-button-container {
    display: flex;
    justify-content: left;
    margin: 2rem 0;
}

/* Buy Button */
.buy-button {
    background-color: #1b1f3b;
    color: white;
    border: none;
    padding: 0.75rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #2a2f4f;
}

/* Coverage Details Section */
.coverage-details-section {
    text-align: left;
    margin: 1rem 0;
    padding: 1rem 0;
}

.coverage-details-link {
    font-size: 0.95rem;
    color: var(--accent-pink);
    margin: 0;
}

.coverage-link {
    color: #0070d2;
    text-decoration: none;
    font-weight: 500;
}

.coverage-link:hover {
    text-decoration: underline;
}

/* Coverage List Section */
.coverage-list-section {
    margin-top: 1rem;
}

.coverage-list-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
}

.no-coverage-message {
    color: var(--accent-pink);
    padding: 1.5rem;
    text-align: center;
}

.coverage-grid {
    display: grid;
    gap: 1rem;
}

.coverage-card {
    background: white;
    border: 1px solid #e0e5ee;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.coverage-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.coverage-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-icon {
    max-width: 100px;
    height: auto;
}

.coverage-content {
    padding-left: 1rem;
}

.coverage-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #16325c;
    margin-bottom: 0.5rem;
}

.coverage-description {
    font-size: 0.95rem;
    color: #54698d;
    line-height: 1.5;
}

.coverage-details-link {
    font-size: 0.9rem;
    color: #54698d;
}

.coverage-details-link a {
    color: #0070d2;
    text-decoration: none;
}

.coverage-details-link a:hover {
    text-decoration: underline;
}

/* Coverage Adjustment Controls */
.coverageAdjustment {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: space-between;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
}

.number-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    text-align: center;
    flex-wrap: wrap;
    align-content: center;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
}

.adjust-btn {
    background-color: #e6f7ff;
    border-color: #91d5ff;
    border: none;
    padding: 1px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.adjust-btn:hover {
    background-color: #0070d2;
    color: #fff;
}

.adjust-btn:disabled {
    background-color: #d8d8d8;
    color: #a0a0a0;
    cursor: not-allowed;
    pointer-events: none;
}

.number-input {
    max-width: 150px;
    padding: 3px 10px;
    text-align: left;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.coverage-image {
    height: 50px;
    width: auto;
    object-fit: cover;
}

.disabled-option {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Styles for Quote Page */
@media only screen and (max-width: 1024px) {
    .quote-content {
        padding: 1.5rem;
    }
    
    .coverage-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .quote-header {
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .action-buttons-vertical {
        align-items: stretch;
    }
    
    .action-buttons-horizontal {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .other-companies-btn {
        width: 100%;
    }
    
    .quote-content {
        padding: 1rem;
    }
    
    .term-options-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .term-price {
        font-size: 1.5rem;
    }
    
    .coverage-grid-container {
        gap: 1.25rem;
    }
    
    .checkbox-options-container {
        flex-direction: column;
        align-items: stretch;
    }
}

@media only screen and (max-width: 480px) {
    .quote-header {
        padding: 0.75rem;
    }
    
    .company-logo {
        max-height: 50px;
        max-width: 120px;
    }
    
    .quote-content {
        padding: 0.75rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .buy-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .coverage-list-title {
        font-size: 1.25rem;
    }
}

/* =============================================================================
   Dashboard Components Styles
   ============================================================================= */

/* Dashboard Container */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background-color: var(--buho-background);
    width: 100%;
}
.dashboard-container .wizard-main {
    background-color: #fff !important;
}

/* Dashboard Header */
.dashboard-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--input-border);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    min-height: 65px;
    box-sizing: border-box;
}

.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: .4;
}

.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.menu-toggle-btn:hover {
    color: var(--accent-pink);
}

.menu-toggle-btn svg {
    width: 24px;
    height: 24px;
}

.dashboard-logo {
    display: flex;
    align-items: center;
}

.dashboard-logo img {
    height: 40px;
    width: auto;
}

.dashboard-search-wrapper {
    flex: 1;
    max-width: 800px;
    position: relative;
}

.dashboard-search-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dashboard-search-input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(229, 60, 123, 0.1);
    background-color: var(--white);
}

.dashboard-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.dashboard-search-icon svg {
    width: 18px;
    height: 18px;
}

.dashboard-search-shortcut {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.dashboard-search-shortcut svg {
    width: 15px;
    height: 15px;
}

.dashboard-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.dashboard-user-profile:hover {
    background-color: var(--input-bg);
}

.dashboard-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--input-border);
}

.dashboard-user-info {
    display: flex;
    flex-direction: column;
}

.dashboard-user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.2;
}

.dashboard-user-role {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.2;
}

.dashboard-user-dropdown-icon {
    color: var(--gray-text);
    font-size: 12px;
}

/* Dashboard Sidebar/Menu */
.dashboard-sidebar {
    background-color: var(--white);
    border-right: 1px solid var(--input-border);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    transition: width 0.3s ease, transform 0.3s ease;
}

.dashboard-sidebar.collapsed {
    width: 80px;
}

.dashboard-sidebar.collapsed .dashboard-nav-text {
    display: none;
}

.dashboard-sidebar.collapsed .dashboard-nav-list {
    width: auto !important;
}

.dashboard-sidebar.collapsed .dashboard-sidebar-logo img {
    height: 32px !important;
}

.dashboard-sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid var(--input-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 65px;
    box-sizing: border-box;
}


.collapsed .dashboard-sidebar-header {
    padding: 1rem .5rem !important;
}

.dashboard-sidebar-logo {
    flex: 1;
}

.dashboard-sidebar-logo img {
    height: 36px !important;
    width: auto;
}

.sidebar-collapse-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-collapse-btn:hover {
    color: var(--accent-pink);
}

.sidebar-collapse-btn i {
    font-size: 18px;
}

.dashboard-nav {
    flex: 1;
    padding: 1rem 0;
}

.dashboard-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 240px;
}

.dashboard-nav-item {
    margin-bottom: 0.25rem;
}

.dashboard-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin: 0 0.5rem;
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dashboard-nav-link:hover {
    background-color: var(--input-bg);
    color: var(--primary-blue);
}

.dashboard-nav-link.active,.dashboard-nav-link.active:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.dashboard-nav-link.active .dashboard-nav-icon svg path {
    fill: var(--white);
    stroke: var(--white);
}

.dashboard-nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-nav-icon svg {
    width: 20px;
    height: 20px;
}

.dashboard-nav-text {
    flex: 1;
}

/* Dashboard Main Content */
.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.dashboard-content {
    flex: 1;
    padding: 2rem;
}

.dashboard-content-no-padding {
    padding: 0 !important;
}

/* Dashboard Stats Cards */
.dashboard-welcome {
    margin-bottom: 2rem;
}

.dashboard-welcome h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
}

.dashboard-welcome p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-stat-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--buho-shadow-sm);
    border: 1px solid var(--input-border);
    transition: box-shadow 0.3s ease;
}

.dashboard-stat-card:hover {
    box-shadow: var(--buho-shadow-md);
}

.dashboard-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dashboard-stat-icon.primary {
    background-color: rgba(19, 32, 61, 0.1);
    color: var(--primary-blue);
}

.dashboard-stat-icon.accent {
    background-color: rgba(229, 60, 123, 0.1);
    color: var(--accent-pink);
}

.dashboard-stat-icon.info {
    background-color: rgba(137, 219, 239, 0.2);
    color: var(--light-blue);
}

.dashboard-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.dashboard-stat-label {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

/* Dashboard Sections */
.dashboard-section {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--buho-shadow-sm);
    border: 1px solid var(--input-border);
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.dashboard-section-action {
    font-size: 14px;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.dashboard-section-action:hover {
    opacity: 0.8;
}
.dashboard-section .bi::before {
    color: #000 !important;
}

/* Mobile Overlay — hidden & non-interactive by default */
.dashboard-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* When sidebar is open: show the overlay and allow clicks (to close) */
.dashboard-sidebar-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .dashboard-header {
        padding: 1rem 1.5rem;
    }

    .dashboard-content {
        padding: 1.5rem;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .dashboard-user-dropdown-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hide the collapse arrow on mobile — sidebar is toggled via hamburger */
    .sidebar-collapse-btn {
        display: none;
    }

    .dashboard-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 100;
        transform: translateX(-100%);
    }

    .dashboard-sidebar.mobile-open {
        transform: translateX(0);
    }

    .dashboard-header {
        padding: 1rem;
    }

    .dashboard-search-wrapper {
        max-width: 300px;
    }

    /* Keep user name visible but compact */
    .dashboard-user-name {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .dashboard-content {
        padding: 1rem;
    }

    .dashboard-welcome h1 {
        font-size: 24px;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .dashboard-logo {
        display: none;
    }

    .dashboard-search-wrapper {
        max-width: 100%;
    }

    .dashboard-search-shortcut {
        display: none;
    }

    .dashboard-header-left {
        gap: 0.75rem;
        flex: 1;
    }

    .dashboard-welcome h1 {
        font-size: 20px;
    }

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

/* Dashboard Card Styles */
.dashboard-policy-card,
.dashboard-vehicle-card {
    padding: 1.5rem;
    background-color: var(--input-bg);
    border-radius: 12px;
    border: 1px solid var(--input-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-policy-card .dashboard-card-content,
.dashboard-vehicle-card .dashboard-card-content {
    flex: 1;
}

/* Make policy and vehicle sections equal height */
.dashboard-section.policy-vehicle-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-section.policy-vehicle-section .dashboard-policy-card,
.dashboard-section.policy-vehicle-section .dashboard-vehicle-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dashboard-card-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dashboard-card-icon {
    margin-top: 0.25rem;
}

.dashboard-card-details {
    flex: 1;
}

.dashboard-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
}

.dashboard-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.dashboard-card-field-label {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0 0 0.25rem 0;
}

.dashboard-card-field-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0;
}

.dashboard-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    margin-top: 1rem;
}

/* Ensure Bootstrap columns stretch to equal height */
.row.g-3.mb-4 > .col-lg-6 {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .dashboard-card-actions {
        flex-wrap: wrap;
    }
    
    .dashboard-policy-grid,
    .dashboard-vehicle-grid {
        grid-template-columns: 1fr;
    }
}

.icon-img {
    width: 24px;
    height: 24px;
}

/* Carousel Navigation */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.carousel-counter {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 500;
}

.carousel-btn {
    background: none;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.carousel-btn:hover:not(:disabled) {
    background-color: var(--input-bg);
    border-color: var(--primary-blue);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn i {
    font-size: 16px;
}

/* Document Item */
.dashboard-document-item {
    padding: 1rem;
    background-color: var(--input-bg);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-document-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.dashboard-document-meta {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
}

/* Resource Card */
.dashboard-resource-card {
    padding: 1.25rem;
    background-color: var(--input-bg);
    border-radius: 12px;
    border: 1px solid var(--input-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-resource-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.dashboard-resource-description {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
    flex: 1;
}

/* Vehicles Grid */
.dashboard-vehicles-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.btn-edit-sm {
    padding: 0.5rem 1.25rem;
    width: auto;
    font-size: 14px;
}

/* Special Dashboard Cards */
.dashboard-action-card {
    height: 100%;
    margin-bottom: 0;
}

.dashboard-action-card-renew {
    background: linear-gradient(135deg, #FFF5F8 0%, #F0F9FF 100%);
}

.dashboard-action-card-claim {
    border-left: 4px solid var(--accent-pink);
}

.dashboard-action-card-title {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.dashboard-action-card-text {
    color: var(--gray-text);
    margin: 0;
    font-size: 13px;
}

.dashboard-action-card-text-lg {
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Policy Card Specific */
.dashboard-policy-title {
    font-size: 18px;
}

.dashboard-policy-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1rem;
}

.dashboard-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Button Variants */
.btn-view-details {
    padding: 0.625rem 1.5rem;
    width: auto;
}

.btn-renew {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.btn-resource {
    padding: 0.5rem 1rem;
    width: auto;
    font-size: 13px;
    background-color: var(--primary-blue);
}

/* Document List */
.dashboard-documents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Resources Grid */
.dashboard-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Section Full Height */
.dashboard-section-full {
    height: 100%;
    margin-bottom: 0;
}

/* =============================================================================
   Reusable Policy Card Component (buhodb_policycard)
   ============================================================================= */

.policy-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--input-border);
    box-shadow: var(--buho-shadow-sm);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.policy-card:hover {
    box-shadow: var(--buho-shadow-md);
}

.policy-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.policy-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(229, 60, 123, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-card-icon .icon-img {
    width: 24px;
    height: 24px;
}

.policy-card-header-info {
    flex: 1;
    min-width: 0;
}

.policy-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 0.125rem 0;
}

.policy-card-subtitle {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
}

.policy-card-body {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.policy-card-details-left,
.policy-card-details-right {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.policy-card-details-left li,
.policy-card-details-right li {
    font-size: 13px;
    color: var(--primary-blue);
    line-height: 1.5;
}

.policy-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--input-border);
}

.policy-card-actions .btn-outline {
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.policy-card-actions .btn-outline:hover {
    border-color: var(--primary-blue);
    background-color: var(--input-bg);
}

@media (max-width: 768px) {
    .policy-card-body {
        flex-direction: column;
        gap: 0.75rem;
    }

    .policy-card-actions {
        flex-direction: column;
    }

    .policy-card-actions .btn-outline {
        text-align: center;
    }
}

/* =============================================================================
   My Policies Page (buhodb_mypolicy)
   ============================================================================= */

.mypolicy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mypolicy-header-left {
    flex: 1;
    min-width: 0;
}

.mypolicy-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.mypolicy-subtitle {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.mypolicy-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Dropdown */
.mypolicy-dropdown {
    position: relative;
}

.btn-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-pink);
    background-color: var(--white);
    border: 1px solid var(--accent-pink);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-dropdown:hover {
    background-color: rgba(229, 60, 123, 0.05);
}

.btn-dropdown svg {
    color: var(--accent-pink);
}

.mypolicy-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    box-shadow: var(--buho-shadow-md);
    z-index: 100;
    min-width: 180px;
    padding: 0.5rem 0;
}

.mypolicy-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mypolicy-dropdown-item:hover {
    background-color: var(--input-bg);
}

/* Filter Button */
.btn-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-filter:hover {
    border-color: var(--primary-blue);
    background-color: var(--input-bg);
}

/* Add Policy Button */
.btn-add-policy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-policy:hover {
    background-color: #1a2d52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3);
}

.btn-add-policy svg {
    color: var(--white);
}

/* Policies Grid */
.mypolicy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 768px) {
    .mypolicy-header {
        flex-direction: column;
    }

    .mypolicy-header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .mypolicy-title {
        font-size: 20px;
    }
}

/* Empty State */
.mypolicy-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--input-border);
    color: var(--gray-text);
    font-size: 15px;
}

/* =============================================================================
   Reusable Vehicle Card Component (buhodb_vehiclecard)
   ============================================================================= */

.vehicle-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--input-border);
    box-shadow: var(--buho-shadow-sm);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-card:hover {
    box-shadow: var(--buho-shadow-md);
}

.vehicle-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.vehicle-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(229, 60, 123, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vehicle-card-icon .icon-img {
    width: 24px;
    height: 24px;
}

.vehicle-card-header-info {
    flex: 1;
    min-width: 0;
}

.vehicle-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.vehicle-card-body {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.vehicle-card-details-left,
.vehicle-card-details-right {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.vehicle-card-details-left li,
.vehicle-card-details-right li {
    font-size: 13px;
    color: var(--primary-blue);
    line-height: 1.5;
}

.vehicle-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--input-border);
}

.vehicle-card-actions .btn-outline {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.vehicle-card-actions .btn-outline:hover {
    border-color: var(--primary-blue);
    background-color: var(--input-bg);
}

@media (max-width: 768px) {
    .vehicle-card-body {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* =============================================================================
   My Vehicles Page (buhodb_myvehicles)
   ============================================================================= */

.myvehicles-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.myvehicles-header-left {
    flex: 1;
    min-width: 0;
}

.myvehicles-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.myvehicles-subtitle {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.myvehicles-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-add-vehicle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-vehicle:hover {
    background-color: #1a2d52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 32, 61, 0.3);
}

.btn-add-vehicle svg {
    color: var(--white);
}

.myvehicles-section-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

/* Stats Grid */
.myvehicles-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.myvehicles-stat-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--buho-shadow-sm);
    border: 1px solid var(--input-border);
    transition: box-shadow 0.3s ease;
}

.myvehicles-stat-card:hover {
    box-shadow: var(--buho-shadow-md);
}

.myvehicles-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.myvehicles-stat-icon.accent {
    background-color: rgba(229, 60, 123, 0.1);
}

.myvehicles-stat-icon.primary {
    background-color: rgba(19, 32, 61, 0.1);
}

.myvehicles-stat-icon .icon-img {
    width: 20px;
    height: 20px;
}

.myvehicles-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.myvehicles-stat-label {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

/* Vehicle Cards Grid */
.myvehicles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .myvehicles-stats-grid,
    .myvehicles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .myvehicles-header {
        flex-direction: column;
    }

    .myvehicles-title {
        font-size: 20px;
    }
}

/* =============================================================================
   Driver Card Styles (buhodb_drivercard)
   ============================================================================= */

.driver-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--input-border);
    box-shadow: var(--buho-shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.driver-card:hover {
    box-shadow: var(--buho-shadow-md);
    transform: translateY(-2px);
}

.driver-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 0.75rem;
}

.driver-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(19, 32, 61, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.driver-card-icon .icon-img {
    width: 22px;
    height: 22px;
}

.driver-card-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.driver-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.driver-badge-primary {
    display: inline-block;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #059669;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    width: fit-content;
}

.driver-card-body {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 1.25rem;
}

.driver-card-details-left,
.driver-card-details-right {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.driver-card-details-left li,
.driver-card-details-right li {
    font-size: 13px;
    color: var(--gray-text);
    padding: 3px 0;
    line-height: 1.5;
}

.driver-card-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 1px solid var(--input-border);
}

.driver-card-actions .btn-outline {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.driver-card-actions .btn-outline:hover {
    border-color: var(--primary-blue);
    background-color: var(--input-bg);
}

@media (max-width: 768px) {
    .driver-card-body {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* =============================================================================
   Vehicle Edit/Detail Form (buhodb_vehicleeditform)
   ============================================================================= */

/* Back Navigation */
.vform-back-nav {
    margin-bottom: 1rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-pink);
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-back:hover {
    opacity: 0.8;
}

.btn-back svg {
    color: var(--accent-pink);
}

/* Form Header */
.vform-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vform-header-left {
    flex: 1;
    min-width: 0;
}

.vform-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.25rem 0;
}

.vform-subtitle {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.vform-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vform-dropdown {
    position: relative;
}

.btn-dropdown-danger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-pink);
    background-color: var(--white);
    border: 1px solid var(--accent-pink);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-dropdown-danger:hover {
    background-color: rgba(229, 60, 123, 0.05);
}

.btn-dropdown-danger svg {
    color: var(--accent-pink);
}

/* Form Sections */
.vform-section {
    margin-bottom: 2rem;
}

.vform-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

/* Form Grid - 2 columns */
.vform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.vform-grid-single {
    grid-template-columns: 1fr;
    max-width: 50%;
}

.vform-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.vform-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.vform-value-box {
    padding: 0.75rem 1rem;
    font-size: 14px;
    color: var(--primary-blue);
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Authorized Drivers */
.vform-driver-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 14px;
    color: var(--primary-blue);
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    min-height: 44px;
}

.vform-driver-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vform-driver-icon svg {
    width: 20px;
    height: 20px;
}

/* Radio Group (Vehicle Identification) */
.vform-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vform-radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.vform-radio-indicator {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid var(--input-border);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.vform-radio-indicator.checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.vform-radio-indicator.checked::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: var(--white);
}

.vform-radio-label {
    font-size: 14px;
    color: var(--primary-blue);
}

/* Checkbox Group (Special Features) */
.vform-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vform-checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.vform-checkbox-indicator {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid var(--input-border);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.vform-checkbox-indicator.checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.vform-checkbox-indicator.checked::after {
    content: '✓';
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.vform-checkbox-label {
    font-size: 14px;
    color: var(--primary-blue);
}

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

    .vform-grid-single {
        max-width: 100%;
    }

    .vform-header {
        flex-direction: column;
    }

    .vform-title {
        font-size: 20px;
    }
}

/* =============================================================================
   Buho Lookup Component Styles (for buho.html template)
   ============================================================================= */

/* Lookup Wrapper */
.buho-lookup-wrapper {
    margin-bottom: 1rem;
    position: relative;
}

.buho-lookup-wrapper .bi-x-circle::before {
    position: absolute;
    right: 0;
}

.buho-lookup-wrapper .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--buho-primary-blue, #13203D);
    font-size: 14px;
}

.buho-lookup-wrapper .required-indicator {
    color: #EF4444;
    margin-right: 4px;
}

.buho-lookup-container {
    position: relative;
}

.buho-combobox-wrapper {
    position: relative;
}

.buho-input-wrapper {
    position: relative;
}

.buho-input-wrapper c-buho_input {
    width: 100%;
}

.buho-lookup-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 14px;
    line-height: 1.5;
    color: var(--buho-primary-blue, #13203D);
    background-color: var(--buho-input-bg, #F9FAFB);
    border: 1px solid var(--buho-input-border, #D1D5DB);
    border-radius: var(--buho-radius-md, 8px);
    transition: border-color var(--buho-transition-fast, 0.15s ease), box-shadow var(--buho-transition-fast, 0.15s ease);
}

.buho-lookup-input:focus {
    outline: none;
    border-color: var(--buho-primary-blue, #13203D);
    box-shadow: 0 0 0 3px rgba(19, 32, 61, 0.1);
    background-color: #ffffff;
}

.buho-lookup-input:disabled {
    background-color: #E5E7EB;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Loading Spinner */
.buho-loading-spinner {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.buho-loading-spinner .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

/* Selected State */
.buho-selected-wrapper {
    position: relative;
}

.buho-selected-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.buho-selected-input-container {
    flex: 1;
    margin: 0;
}

.buho-selected-input-wrapper c-buho_input {
    flex: 1;
}

.buho-selected-icon {
    position: absolute;
    left: 12px;
    color: var(--buho-primary-blue, #13203D);
    font-size: 16px;
    z-index: 1;
    pointer-events: none;
}

.buho-selected-input {
    padding-left: 40px;
    padding-right: 40px;
}

.buho-clear-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--buho-transition-fast, 0.15s ease);
    z-index: 1;
}

.buho-clear-btn:hover:not(:disabled) {
    color: var(--buho-accent-pink, #E53C7B);
}

.buho-clear-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.buho-clear-btn i {
    font-size: 18px;
}

.buho-form-help {
    margin-top: 0.25rem;
    font-size: 12px;
    display: none;
}

.buho-lookup-wrapper.has-error .buho-lookup-input {
    border-color: #EF4444;
}

.buho-lookup-wrapper.has-error .buho-form-help {
    display: block;
    color: #EF4444;
}

/* Dropdown Styles - Combobox-like appearance */
.buho-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 4px;
    background-color: #ffffff;
    border: 1px solid var(--buho-input-border, #D1D5DB);
    border-radius: var(--buho-radius-md, 8px);
    box-shadow: var(--buho-shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.buho-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
}

.buho-dropdown-item {
    margin: 0;
    padding: 0;
}

.buho-dropdown-option {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    cursor: pointer;
    transition: background-color var(--buho-transition-fast, 0.15s ease);
    border: none;
    width: 100%;
    text-align: left;
}

.buho-dropdown-option:hover {
    background-color: var(--buho-input-bg, #F9FAFB);
}

.buho-dropdown-option:active {
    background-color: #E5E7EB;
}

.buho-dropdown-option-simple {
    justify-content: flex-start;
}

/* Hide the icon to make it look like a combobox */
.buho-dropdown-icon {
    display: none;
}

.buho-dropdown-text {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.buho-dropdown-primary {
    display: block;
    color: var(--buho-primary-blue, #13203D);
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.buho-dropdown-no-results {
    padding: 1rem;
    text-align: center;
    color: var(--buho-gray-text, #6B7280);
    font-size: 14px;
    cursor: default;
}

.buho-dropdown-no-results:hover {
    background-color: transparent;
}

/* Visually Hidden Helper */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Responsive Design for Lookup */
@media (max-width: 768px) {
    .buho-dropdown {
        max-height: 250px;
    }
    
    .buho-dropdown-option {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .buho-dropdown {
        max-height: 200px;
    }
}

/* =============================================================================
   Icon Utility Classes (for SVG static-resource <img> replacements)
   ============================================================================= */

.icon-chevron {
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    flex-shrink: 0;
}

.icon-btn {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-menu {
    width: 24px;
    height: 24px;
    display: block;
}

.icon-back {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-person {
    width: 20px;
    height: 20px;
    display: block;
}

.icon-white {
    filter: brightness(0) invert(1);
}

/* =============================================================================
   My Documents Page Styles (buhodb_mydocuments)
   ============================================================================= */

.mydocs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mydocs-header-left {
    flex: 1;
}

.mydocs-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.mydocs-subtitle {
    font-size: 16px;
    color: var(--gray-text);
}

.mydocs-header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding-top: 0.5rem;
}

.mydocs-filter-text {
    font-size: 14px;
    color: var(--gray-text);
}

.btn-link-filter {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--accent-pink);
    text-decoration: underline;
    padding: 0;
    font-weight: 500;
}

.btn-link-filter:hover {
    color: var(--primary-blue);
}

.mydocs-filter-divider {
    color: var(--gray-text);
    font-size: 14px;
    margin: 0 2px;
}

.mydocs-section-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    margin-top: 1rem;
}

.mydocs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .mydocs-header {
        flex-direction: column;
    }
}

/* =============================================================================
   Document Card Styles (buhodb_documentcard)
   ============================================================================= */

.doc-card {
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--buho-shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
    transition: box-shadow 0.2s ease;
}

.doc-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.doc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.doc-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
    flex: 1;
}

/* Action / Download button */
.doc-card-action-wrapper {
    position: relative;
    flex-shrink: 0;
}

.btn-doc-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-pink);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--accent-pink);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn-doc-action:hover {
    background-color: #fdf2f6;
}

.doc-card-action-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 20;
    min-width: 140px;
    overflow: hidden;
}

.doc-card-action-item {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    border: none;
    background: none;
    text-align: left;
    font-size: 13px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.doc-card-action-item:hover {
    background-color: #f5f7fa;
}

.doc-card-body {
    display: flex;
    gap: 2rem;
}

.doc-card-details-left,
.doc-card-details-right {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0;
    flex: 1;
}

.doc-card-details-left li,
.doc-card-details-right li {
    font-size: 13px;
    color: var(--primary-blue);
    line-height: 1.8;
}

@media (max-width: 480px) {
    .doc-card-body {
        flex-direction: column;
        gap: 0.5rem;
    }

    .doc-card-header {
        flex-direction: column;
    }

    .doc-card-action-wrapper {
        align-self: flex-end;
    }
}

/* =============================================================================
   Settings & Account Management Styles (buhodb_settings)
   ============================================================================= */

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.settings-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.btn-settings-edit {
    padding: 0.65rem 2rem;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-settings-edit:hover {
    background-color: #1c3058;
}

/* Sections */
.settings-section {
    margin-bottom: 2rem;
}

.settings-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Profile Photo */
.settings-profile-photo {
    margin-bottom: 1.5rem;
}

.settings-avatar-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.settings-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid & Fields */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.settings-grid-single {
    grid-template-columns: 1fr;
    max-width: calc(50% - 0.625rem);
}

.settings-field {
    display: flex;
    flex-direction: column;
}

.settings-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
}

.settings-value-box {
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--primary-blue);
    min-height: 46px;
    display: flex;
    align-items: center;
}

/* View-only value (no input box) */
.settings-view-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-blue);
    padding: 0.5rem 0;
    min-height: 28px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--input-border);
}

/* Date of Birth with icon */
.settings-dob-box {
    gap: 0.75rem;
}

.settings-dob-icon {
    width: 36px;
    height: 36px;
    padding: 6px;
    background-color: var(--primary-blue);
    border-radius: 8px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* Checkboxes */
.settings-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.settings-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.settings-checkbox-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid var(--input-border);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.15s ease;
    background-color: var(--white);
}

.settings-checkbox-indicator.checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.settings-checkbox-indicator.checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.settings-checkbox-text {
    font-size: 14px;
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }

    .settings-grid-single {
        max-width: none;
    }

    .settings-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================================================
   Policy Detail View Styles (buhodb_policydetail)
   ============================================================================= */

/* ── Container ── */
.pd-container {
    max-width: 100%;
    animation: pdFadeIn 0.3s ease;
}

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

/* ── Back Navigation Bar ── */
.pd-back-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.pd-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary-blue, #374151);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--buho-radius-md, 8px);
    transition: all 0.2s ease;
}

.pd-btn-back:hover {
    background: var(--input-bg, #f3f4f6);
    color: var(--primary-blue, #111827);
}

.pd-icon-back {
    width: 18px;
    height: 18px;
}

/* ── Status Badge ── */
.pd-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.pd-badge-active {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.pd-badge-expired {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.pd-badge-updated {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.pd-badge-default {
    background: var(--input-bg, #f3f4f6);
    color: var(--gray-text, #6b7280);
    border: 1px solid var(--input-border, #e5e7eb);
}

/* ── Loading ── */
.pd-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* ── (Legacy) Summary Card — now integrated into pd-hero-card ── */

/* ── (Legacy) Action Buttons Card — replaced by pd-hero-card ── */

/* ── Collapsible Section ── */
.pd-section {
    background: var(--white, #ffffff);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--input-border, #e5e7eb);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pd-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease;
    text-align: left;
}

.pd-section-header:hover {
    background: var(--input-bg, #f9fafb);
}

.pd-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue, #111827);
    margin: 0;
}

/* ── Chevron icon ── */
.pd-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    transform: rotate(-90deg);
    flex-shrink: 0;
    opacity: 0.5;
}

.pd-chevron-open {
    transform: rotate(0deg);
}

/* ── Section Body ── */
.pd-section-body {
    padding: 4px 24px 16px;
    animation: pdSlideDown 0.25s ease;
}

@keyframes pdSlideDown {
    from { opacity: 0; max-height: 0; }
    to   { opacity: 1; max-height: 2000px; }
}

/* ── Field Grid ── */
.pd-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pd-field {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pd-field:nth-child(odd) {
    padding-right: 24px;
}

.pd-field:nth-child(even) {
    padding-left: 24px;
}

.pd-field-empty {
    padding: 8px 0;
}

.pd-field-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-text, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pd-field-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue, #111827);
    min-height: 18px;
    word-break: break-word;
}

.pd-field-currency {
    font-variant-numeric: tabular-nums;
}

.pd-field-total {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-blue, #13203d);
}

/* ── Status field colors ── */
.pd-status-active {
    color: #059669;
    font-weight: 600;
}

.pd-status-expired {
    color: #dc2626;
    font-weight: 600;
}

/* ── Checkbox visual ── */
.pd-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: var(--buho-radius-sm, 4px);
    border: 2px solid var(--input-border, #d1d5db);
    position: relative;
    vertical-align: middle;
}

.pd-checkbox-checked {
    background: #2563eb;
    border-color: #2563eb;
}

.pd-checkbox-checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--white, #ffffff);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pd-checkbox-unchecked {
    background: var(--white, #ffffff);
}

.pd-field-checkbox .pd-field-value {
    display: flex;
    align-items: center;
}

/* ── Error State ── */
.pd-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-text, #6b7280);
}

.pd-error p {
    margin-bottom: 16px;
    font-size: 15px;
}

.pd-btn-retry {
    background: var(--primary-blue, #13203d);
    color: var(--white, #ffffff);
    border: none;
    padding: 10px 24px;
    border-radius: var(--buho-radius-md, 8px);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pd-btn-retry:hover {
    background: #1e3a5f;
}

/* ── Policy Detail Responsive ── */
@media (max-width: 768px) {
    .pd-field-grid {
        grid-template-columns: 1fr;
    }

    .pd-field:nth-child(odd) {
        padding-right: 0;
    }

    .pd-field:nth-child(even) {
        padding-left: 0;
    }

    .pd-section-body {
        padding: 4px 16px 12px;
    }

    .pd-section-header {
        padding: 12px 16px;
    }
}

/* =============================================================================
   Policy Hero Card — Summary + Action Buttons (buhodb_policyCustomButtonComponent)
   ============================================================================= */

/* ── Hero Card container ── */
.pd-hero-card {
    background: linear-gradient(135deg, var(--primary-blue, #13203d) 0%, #1e3a5f 100%);
    border-radius: var(--buho-radius-lg, 16px);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(19, 32, 61, 0.18);
}

.pd-hero-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

/* ── Top: Policy Summary ── */
.pd-hero-top {
    padding: 28px 32px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pd-hero-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pd-hero-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-hero-car-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.pd-hero-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pd-hero-policy-number {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.pd-hero-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pd-hero-dates {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.pd-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.pd-hero-premium-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pd-hero-premium-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.pd-hero-premium-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.pd-hero-badges {
    display: flex;
    gap: 8px;
}

.pd-hero-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

/* ── Bottom: Glass-morphism Action Toolbar ── */
.pd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.12);
}

/* ── Glass Buttons ── */
.pd-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    outline: none;
    user-select: none;
    white-space: nowrap;
}

.pd-hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pd-hero-btn:active {
    transform: translateY(0);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.14);
}

.pd-hero-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pd-hero-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    transform: none;
    box-shadow: none;
}

/* Button icon */
.pd-hero-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.85;
}

.pd-hero-btn:hover .pd-hero-btn-icon {
    opacity: 1;
}

/* ── Danger variant (Terminate) ── */
.pd-hero-btn-danger {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
}

.pd-hero-btn-danger:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.5);
    color: #fef2f2;
}

.pd-hero-btn-danger:disabled {
    opacity: 0.35;
}

.pd-hero-btn-danger:disabled:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* ── Accent variant (Yellow Card) ── */
.pd-hero-btn-accent {
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.1);
    color: #fde68a;
}

.pd-hero-btn-accent:hover {
    background: rgba(251, 191, 36, 0.25);
    border-color: rgba(251, 191, 36, 0.55);
    color: #fffbeb;
}

/* ── Hero Card Responsive ── */
@media (max-width: 768px) {
    .pd-hero-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .pd-hero-right {
        align-items: flex-start;
    }

    .pd-hero-premium-value {
        font-size: 22px;
    }

    .pd-hero-policy-number {
        font-size: 18px;
    }

    .pd-hero-actions {
        padding: 12px 20px 20px;
    }

    .pd-hero-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* =============================================================================
   Landing Page Styles (buhoLanding Component)
   ============================================================================= */

.buho-landing-page {
    min-height: 100vh;
    background: #f3f4f6;
    color: #111827;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Landing Header */
.landing-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.landing-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.landing-brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
}

.landing-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.landing-brand-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.landing-brand-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
}

.landing-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.landing-nav a {
    text-decoration: none;
    color: #4b5563;
    padding: 0.3rem 0.4rem;
    border-radius: 999px;
}

.landing-nav a:hover {
    background: #e5e7eb;
    color: #111827;
}

.landing-header-cta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Landing Buttons */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    text-decoration: none !important;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem !important;
    padding: 0.5rem 1.2rem !important;
    background: var(--accent-pink, #E53C7B) !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(229, 60, 123, 0.35);
    transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease !important;
}

.landing-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(229, 60, 123, 0.4);
}

.landing-btn-large {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

.landing-btn-small {
    padding: 0.45rem 1rem;
}

.landing-btn-outline {
    background: transparent;
    color: var(--accent-pink, #E53C7B);
    border: 1px solid var(--accent-pink, #E53C7B);
    box-shadow: none;
}

.landing-btn-outline:hover {
    background: var(--accent-pink, #E53C7B);
    color: #ffffff;
}

.landing-btn-ghost {
    background: transparent;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.landing-btn-ghost:hover {
    background: #e5e7eb;
}

.landing-btn-inline,
.landing-btn-inline-alt {
    margin-top: 0.7rem;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    box-shadow: none;
}

.landing-btn-inline {
    background: var(--accent-pink, #E53C7B);
    color: #ffffff;
}

.landing-btn-inline-alt {
    background: #e5e7eb;
    color: #111827;
}

.landing-btn-inline-alt:hover {
    background: #d1d5db;
}

.landing-btn-full {
    width: 100%;
    background: #ffffff;
    color: #111827;
    box-shadow: none;
}

.landing-btn-full:hover {
    background: #f3f4f6;
}

/* Landing Hero */
.landing-hero {
    background: radial-gradient(circle at top left, rgba(229, 60, 123, 0.06) 0, #f3f4f6 45%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
}

.landing-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.2rem;
    align-items: center;
}

.landing-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(229, 60, 123, 0.08);
    color: var(--accent-pink, #E53C7B);
    margin-bottom: 0.7rem;
}

.landing-hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 0.6rem;
    color: var(--primary-blue, #13203D);
}

.landing-hero-gradient {
    background: linear-gradient(135deg, var(--primary-blue, #13203D), var(--accent-pink, #E53C7B));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.4rem;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.landing-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.landing-hero-meta strong {
    display: block;
    font-size: 1rem;
    color: #111827;
}

/* Landing Hero Side Card */
.landing-hero-card {
    background: var(--primary-blue, #13203D);
    color: #f9fafb;
    border-radius: 22px;
    padding: 1.6rem 1.7rem;
    box-shadow: 0 24px 60px rgba(19, 32, 61, 0.5);
}

.landing-hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
}

.landing-hero-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--light-blue, #89DBEF);
}

.landing-hero-card-tag {
    font-size: 0.75rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    color: #bbf7d0;
}

.landing-hero-card h2 {
    margin: 0 0 0.4rem;
    font-size: 1.3rem;
}

.landing-hero-card p {
    margin: 0 0 0.9rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.landing-hero-list {
    margin: 0 0 1.1rem 0;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: #e5e7eb;
}

.landing-hero-list li+li {
    margin-top: 0.2rem;
}

.landing-hero-note {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 0.9rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.landing-hero-note .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Landing Sections */
.landing-section {
    padding: 2.5rem 0;
}

.landing-section-light {
    background: #ffffff;
}

.landing-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.landing-section-header {
    text-align: center;
    margin-bottom: 1.9rem;
}

.landing-section-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.7rem;
    color: var(--primary-blue, #13203D);
}

.landing-section-header p {
    margin: 0;
    color: #6b7280;
}

/* Landing About */
.landing-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
    gap: 1.8rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.landing-about-grid p {
    margin-bottom: 0.8rem;
}

.landing-about-highlight {
    background: linear-gradient(135deg, var(--primary-blue, #13203D), #1a2d52);
    border-radius: 20px;
    padding: 1.3rem 1.4rem;
    color: #f9fafb;
    box-shadow: 0 12px 30px rgba(19, 32, 61, 0.4);
}

.landing-about-highlight h3 {
    margin: 0 0 0.7rem;
    font-size: 1.1rem;
}

.landing-about-highlight ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

/* Landing Cards Grid */
.landing-cards-grid {
    display: grid;
    gap: 1.5rem;
}

.landing-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Landing Product — Featured Card */
.landing-product-featured {
    display: flex;
    align-items: stretch;
    background: var(--primary-blue, #13203D);
    color: #f9fafb;
    border-radius: var(--buho-radius-lg, 16px);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 12px 30px rgba(19, 32, 61, 0.35);
}

.landing-product-featured-content {
    flex: 1;
    padding: 2rem 2.2rem;
    position: relative;
}

.landing-product-featured-content .landing-badge {
    position: static;
    display: inline-block;
    background: rgba(229, 60, 123, 0.15);
    color: var(--accent-pink, #E53C7B);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.landing-product-featured-content h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #ffffff;
}

.landing-product-featured-content p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #d1d5db;
    max-width: 50ch;
}

.landing-product-features {
    margin: 0 0 1.5rem 1.1rem;
    padding: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.landing-product-features li + li {
    margin-top: 0.3rem;
}

.landing-product-featured-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem 2.2rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 180px;
}

.landing-product-stat {
    text-align: center;
}

.landing-product-stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-blue, #89DBEF);
}

.landing-product-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

/* Landing Product — Alt Card (US Auto) */
.landing-product-card-alt {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: var(--buho-radius-lg, 16px);
    overflow: hidden;
    border: 2px solid var(--accent-pink, #E53C7B);
    box-shadow: 0 12px 30px rgba(229, 60, 123, 0.1);
    transition: box-shadow 0.3s ease;
}

.landing-product-card-alt:hover {
    box-shadow: 0 16px 40px rgba(229, 60, 123, 0.15);
}

.landing-product-card-alt-content {
    flex: 1;
    padding: 2rem 2.2rem;
}

.landing-badge-alt {
    display: inline-block;
    background: rgba(229, 60, 123, 0.08);
    color: var(--accent-pink, #E53C7B);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.landing-product-card-alt-content h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--primary-blue, #13203D);
}

.landing-product-card-alt-content p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 50ch;
}

.landing-product-features-alt {
    margin: 0 0 1.5rem 1.1rem;
    padding: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.landing-product-features-alt li + li {
    margin-top: 0.3rem;
}

.landing-product-card-alt-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem 2.2rem;
    background: linear-gradient(180deg, rgba(229, 60, 123, 0.03), rgba(229, 60, 123, 0.07));
    border-left: 1px solid rgba(229, 60, 123, 0.12);
    min-width: 180px;
}

.landing-product-stat-alt {
    text-align: center;
}

.landing-product-stat-alt-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-pink, #E53C7B);
}

.landing-product-stat-alt-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.1rem;
}

@media (max-width: 768px) {
    .landing-product-featured {
        flex-direction: column;
    }

    .landing-product-featured-stats {
        flex-direction: row;
        justify-content: space-around;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        min-width: auto;
        padding: 1.2rem 1.5rem;
    }

    .landing-product-featured-content {
        padding: 1.5rem;
    }

    .landing-product-card-alt {
        flex-direction: column;
    }

    .landing-product-card-alt-content {
        padding: 1.5rem;
    }

    .landing-product-card-alt-stats {
        flex-direction: row;
        justify-content: space-around;
        border-left: none;
        border-top: 1px solid rgba(229, 60, 123, 0.12);
        min-width: auto;
        padding: 1.2rem 1.5rem;
    }
}

.landing-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Landing Card Base */
.landing-card {
    background: #ffffff;
    border-radius: var(--buho-radius-lg, 16px);
    padding: 1.3rem 1.4rem;
    box-shadow: var(--buho-shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.landing-card:hover {
    box-shadow: var(--buho-shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    transform: translateY(-2px);
}

.landing-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: var(--primary-blue, #13203D);
}

.landing-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

/* Landing Product Cards */
.landing-card-product {
    position: relative;
    padding-top: 1.8rem;
}

.landing-card-product .landing-badge {
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    font-size: 0.7rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(229, 60, 123, 0.1);
    color: var(--accent-pink, #E53C7B);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.landing-card-product ul {
    margin: 0.7rem 0 0.7rem 1.1rem;
    padding: 0;
    font-size: 0.85rem;
    color: #4b5563;
}

.landing-card-product li+li {
    margin-top: 0.2rem;
}

/* Landing Benefits */
.landing-benefit .landing-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(229, 60, 123, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

/* Landing Steps */
.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.landing-step {
    text-align: center;
}

.landing-step-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    margin: 0 auto 0.7rem;
    background: var(--accent-pink, #E53C7B);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.landing-step h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    color: var(--primary-blue, #13203D);
}

.landing-step p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.landing-steps-cta {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Landing Testimonials */
.landing-testimonial .landing-quote {
    font-style: italic;
    margin-bottom: 0.7rem;
}

.landing-testimonial .landing-author {
    font-size: 0.85rem;
    color: var(--accent-pink, #E53C7B);
    font-weight: 500;
}

/* Landing FAQ */
.landing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.landing-faq-item h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    color: var(--primary-blue, #13203D);
}

.landing-faq-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

/* Landing Footer */
.landing-footer {
    background: var(--primary-blue, #13203D);
    color: #9ca3af;
    padding: 2.2rem 0 1.3rem;
    margin-top: 2rem;
}

.landing-footer-inner {
    max-width: 1200px;
    margin: 0 auto 1rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    font-size: 0.85rem;
}

.landing-footer-column h3 {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.landing-footer-column p {
    margin: 0.1rem 0;
}

.landing-footer a {
    color: var(--light-blue, #89DBEF);
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}

.landing-footer-copy {
    text-align: center;
    font-size: 0.78rem;
    margin: 0;
    color: #6b7280;
}

/* Landing Responsive */
@media (max-width: 1024px) {
    .landing-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-hero-card {
        margin-top: 1.3rem;
    }

    .landing-about-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-products-grid,
    .landing-benefits-grid,
    .landing-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .landing-nav {
        display: none;
    }

    .landing-hero-inner {
        padding-inline: 1.1rem;
    }

    .landing-section-inner {
        padding-inline: 1.1rem;
    }

    .landing-products-grid,
    .landing-benefits-grid,
    .landing-testimonials-grid,
    .landing-steps,
    .landing-footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .landing-header-cta {
        margin-left: auto;
    }

    .landing-hero h1 {
        font-size: 1.8rem;
    }

    .landing-section-header h2 {
        font-size: 1.4rem;
    }
}
