.pbc-widget-canvas {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    color: #333333;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    background-color: #ffffff;
}

/* Header Setup */
.pbc-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.pbc-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pbc-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0A33A6 0%, #C91E76 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pbc-menu-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.pbc-menu-item a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.pbc-menu-item a:hover {
    color: #0A33A6;
}

.pbc-active-menu {
    background-color: rgba(10, 51, 166, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.pbc-active-menu a {
    color: #0A33A6 !important;
}

.pbc-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pbc-btn-header {
    background: linear-gradient(135deg, #0A33A6 0%, #C91E76 100%);
    color: #ffffff !important;
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(10, 51, 166, 0.25);
}

.pbc-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 51, 166, 0.35);
}

.pbc-mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.pbc-mobile-toggle .pbc-bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Canvas Container & background designs */
.pbc-container-canvas {
    position: relative;
    padding: 60px 40px;
    margin-top: 30px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

/* Organic background vector shapes */
.pbc-vector-right {
    position: absolute;
    width: 350px;
    height: 350px;
    top: -50px;
    right: -100px;
    background: radial-gradient(circle, rgba(201,30,118,0.15) 0%, rgba(10,51,166,0.05) 50%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.pbc-vector-left {
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(10,51,166,0.12) 0%, rgba(201,30,118,0.03) 50%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Typography stack */
.pbc-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.pbc-hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 0 0 15px 0;
}

.pbc-hero-normal {
    color: #1a202c;
}

.pbc-hero-highlight {
    background: linear-gradient(135deg, #0A33A6 0%, #C91E76 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pbc-hero-sub {
    font-size: 1.4rem;
    color: #4a5568;
    font-weight: 500;
    margin: 0;
}

.pbc-hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pbc-3d-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(10, 51, 166, 0.15));
    animation: pbcFloat 6s ease-in-out infinite;
}

/* Floating Glass Cards Grid */
.pbc-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.pbc-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 35px;
    transition: all 0.3s ease;
}

.pbc-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 51, 166, 0.08);
}

.pbc-card-title-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(10, 51, 166, 0.06);
    padding-bottom: 12px;
}

.pbc-card-title-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0A33A6;
    letter-spacing: 1px;
}

.pbc-glowing-node {
    width: 8px;
    height: 8px;
    background-color: #C91E76;
    border-radius: 50%;
    box-shadow: 0 0 10px #C91E76;
}

/* Fields & Inputs Styling */
.pbc-field-group {
    margin-bottom: 20px;
}

.pbc-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pbc-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f7fafc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.pbc-input-wrapper:focus-within {
    background: #ffffff;
    border-color: #0A33A6;
    box-shadow: 0 0 0 3px rgba(10, 51, 166, 0.1);
}

.pbc-input-icon {
    position: absolute;
    left: 15px;
    font-size: 1rem;
    color: #718096;
    pointer-events: none;
    z-index: 5;
}

.pbc-form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f7fafc;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.pbc-form-control:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #0A33A6;
    box-shadow: 0 0 0 3px rgba(10, 51, 166, 0.1);
}

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

.pbc-field-inline {
    display: flex;
    gap: 15px;
}

.pbc-half-width {
    flex: 1;
}

.pbc-select-wrapper {
    position: relative;
    width: 100%;
}

.pbc-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px !important;
}

.pbc-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #718096;
    pointer-events: none;
}

.pbc-textarea {
    resize: none;
}

/* Right Information Stack Cards */
.pbc-right-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pbc-country-flag-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    pointer-events: none;
}

.pbc-phone-input {
    border-left: none !important;
    padding-left: 15px !important;
}

.pbc-flag {
    font-size: 1.1rem;
}

.pbc-phone-prefix {
    font-size: 0.85rem;
    font-weight: bold;
    color: #4a5568;
}

/* Submit Card setup */
.pbc-submit-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(247,250,252,0.95) 100%) !important;
}

.pbc-submit-heading {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #0a33a6;
}

.pbc-btn-submit {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #0A33A6 0%, #C91E76 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    box-shadow: 0 8px 24px rgba(10, 51, 166, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pbc-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 30, 118, 0.35);
}

.pbc-submit-subtext {
    font-size: 0.85rem;
    color: #718096;
    margin: 15px 0 0 0;
}

/* Animations */
@keyframes pbcFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobile drawer expansion */
.pbc-mobile-drawer {
    display: none;
    background: #ffffff;
    border-bottom: 2px solid rgba(10, 51, 166, 0.08);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 999;
}

.pbc-mobile-drawer.pbc-active {
    display: block;
}

.pbc-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pbc-mobile-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: bold;
    font-size: 1.1rem;
}

.pbc-mobile-cta {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pbc-mobile-cta .pbc-btn {
    width: 100%;
    padding: 12px 0;
}

/* Responsive configurations */
@media (max-width: 1024px) {
    .pbc-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pbc-hero-title {
        font-size: 2.6rem;
    }
    
    .pbc-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pbc-nav-desktop {
        display: none;
    }
    
    .pbc-mobile-toggle {
        display: flex;
    }
    
    .pbc-container-canvas {
        padding: 35px 20px;
    }
    
    .pbc-hero-title {
        font-size: 2.2rem;
    }
    
    .pbc-field-inline {
        flex-direction: column;
        gap: 0;
    }
    
    .pbc-card-glass {
        padding: 25px 20px;
    }
    
    .pbc-widget-canvas {
        padding: 10px;
    }
}
