/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== LOCAL FONTS ==================== */
@font-face {
    font-family: 'Courier New';
    src: url('Courier-New.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: url('LibreBaskerville-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: url('LibreBaskerville-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette */
    --bc-background: #ffffff;
    --bc-primary: #1a5f6b;
    --bc-secondary: #2a8f9f;
    --bc-text: #1a1a1a;
    --bc-white: #ffffff;
    --bc-gray-light: #f5f5f5;
    --bc-gray: #e0e0e0;
    
    /* Fonts */
    --bc-font-heading: 'Libre Baskerville', serif;
    --bc-font-body: 'Courier New', monospace;
    
    /* Transitions */
    --bc-transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bc-font-body);
    color: var(--bc-text);
    background-color: var(--bc-background);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* ==================== HEADER ==================== */
.bc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(26, 95, 107, 0.1);
    z-index: 1000;
    transition: var(--bc-transition);
}

.bc-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2px 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bc-logo img {
    height: 70px;
    width: auto;
    transition: var(--bc-transition);
}

.bc-logo:hover img {
    transform: scale(1.05);
}

.bc-nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.bc-nav-link {
    font-family: var(--bc-font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--bc-text);
    position: relative;
    padding: 5px 0;
}

.bc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bc-primary);
    transition: width 0.3s ease;
}

.bc-nav-link:hover {
    color: var(--bc-primary);
}

.bc-nav-link:hover::after {
    width: 100%;
}

.bc-header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bc-language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--bc-font-heading);
    font-weight: 700;
}

.bc-lang-active {
    color: var(--bc-primary);
    font-weight: 600;
    font-size: 15px;
}

.bc-lang {
    color: var(--bc-text);
    opacity: 0.6;
}

.bc-lang:hover {
    opacity: 1;
    color: var(--bc-primary);
}

.bc-lang-separator {
    color: var(--bc-gray);
}

.bc-header-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    color: var(--bc-primary);
    font-weight: 600;
    padding: 5px 1rem;
    border: 2px solid var(--bc-primary);
    border-radius: 25px;
    transition: var(--bc-transition);
    font-family: var(--bc-font-heading);
}

.bc-header-email:hover {
    background-color: var(--bc-primary);
    color: var(--bc-white);
}

.bc-header-email i {
    font-size: 0.9rem;
}

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

.bc-hamburger {
    width: 25px;
    height: 2px;
    background-color: var(--bc-primary);
    position: relative;
    transition: var(--bc-transition);
}

.bc-hamburger::before,
.bc-hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--bc-primary);
    transition: var(--bc-transition);
}

.bc-hamburger::before {
    top: -8px;
}

.bc-hamburger::after {
    top: 8px;
}

/* ==================== HERO SECTION ==================== */
.bc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 2rem 100px;
    overflow: hidden;
}

.bc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#heroCanvas {
    width: 100%;
    height: 100%;
}

.bc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 870px;
    text-align: center;
    animation: bcFadeUp 1s ease;
}

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

.bc-hero-title {
    font-family: var(--bc-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--bc-text);
}

.bc-hero-title-line {
    display: block;
}

.bc-highlight {
    color: var(--bc-primary);
    position: relative;
}

.bc-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bc-text);
    opacity: 0.85;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bc-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--bc-font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--bc-transition);
    border: none;
}

.bc-btn-primary {
    background-color: var(--bc-primary);
    color: var(--bc-white);
    box-shadow: 0 4px 15px rgba(26, 95, 107, 0.3);
}

.bc-btn-primary:hover {
    background-color: var(--bc-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 143, 159, 0.4);
}

.bc-btn-secondary {
    background-color: transparent;
    color: var(--bc-primary);
    border: 2px solid var(--bc-primary);
}

.bc-btn-secondary:hover {
    background-color: var(--bc-primary);
    color: var(--bc-white);
    transform: translateY(-3px);
}

.bc-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.bc-btn:hover i {
    transform: translateX(5px);
}

.bc-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--bc-primary);
    font-size: 0.85rem;
    font-weight: 600;
    animation: bcBounce 2s infinite;
    z-index: 1;
}

@keyframes bcBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.bc-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--bc-primary);
    border-radius: 20px;
    position: relative;
}

.bc-scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--bc-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: bcScroll 2s infinite;
}

@keyframes bcScroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ==================== MODAL WINDOW ==================== */
.bc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.bc-modal.active {
    display: flex;
}

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

.bc-modal-content {
    position: relative;
    background-color: var(--bc-white);
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: bcModalSlide 0.3s ease;
}

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

.bc-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bc-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--bc-transition);
    z-index: 1;
}

.bc-modal-close:hover {
    background-color: var(--bc-gray-light);
    color: var(--bc-primary);
}

.bc-modal-body {
    padding: 20px;
}

/* ==================== SIDE PANELS ==================== */
.bc-side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

.bc-side-panel.active {
    display: block;
}

.bc-side-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.bc-side-panel-content {
    position: absolute;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: var(--bc-white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    overflow-y: auto;
}

.bc-side-panel.active .bc-side-panel-content {
    right: 0;
}

.bc-side-panel-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bc-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--bc-transition);
    z-index: 1;
}

.bc-side-panel-close:hover {
    background-color: var(--bc-gray-light);
    color: var(--bc-primary);
}

.bc-side-panel-body {
    padding: 5rem 2.5rem 2.5rem;
}

.bc-side-panel-body h2 {
    font-family: var(--bc-font-heading);
    font-size: 2rem;
    color: var(--bc-primary);
    margin-bottom: 2rem;
}

.bc-panel-text {
    line-height: 1.8;
    color: var(--bc-text);
}

/* ==================== RESPONSIVE ==================== */
/* Tablets & Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .bc-header-container {
        padding: 1rem 1.5rem;
    }
    
    .bc-nav-list {
        gap: 1.5rem;
    }
    
    .bc-hero-title {
        font-size: 2.8rem;
    }
    
    .bc-hero-subtitle {
        font-size: 1rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .bc-header-container {
        padding: 1rem;
    }
    
    .bc-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bc-white);
        transition: left 0.3s ease;
        padding: 2rem;
    }
    
    .bc-nav.active {
        left: 0;
    }
    
    .bc-nav-list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .bc-nav-link {
        font-size: 1.2rem;
    }
    
    .bc-header-actions {
        gap: 1rem;
    }
    
    .bc-header-email span {
        display: none;
    }
    
    .bc-mobile-toggle {
        display: flex;
    }
    
    .bc-hero {
        padding: 130px 1.5rem 80px;
    }
    
    .bc-hero-title {
        font-size: 2rem;
    }
    
    .bc-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .bc-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bc-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .bc-side-panel-content {
        max-width: 100%;
    }
}




/* ==================== FORM STYLES ==================== */
.bc-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bc-form-header {
    margin-bottom: 22px;
}

.bc-form-header h2 {
    font-family: var(--bc-font-heading);
    font-size: 2rem;
    color: var(--bc-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.bc-form-header p {
    font-size: 0.95rem;
    color: var(--bc-text);
    opacity: 0.75;
    line-height: 1.6;
}

.bc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bc-form-group label {
    font-family: var(--bc-font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--bc-text);
    text-transform: uppercase;
    letter-spacing: 0;
}

.bc-form-group label .bc-required {
    color: var(--bc-primary);
    margin-left: 2px;
}

.bc-form-group input, .bc-form-group select, .bc-form-group textarea {
    font-family: var(--bc-font-body);
    font-size: 14px;
    padding: 10px 1.25rem;
    border: 2px solid var(--bc-gray);
    border-radius: 5px;
    background-color: var(--bc-white);
    color: var(--bc-text);
    transition: var(--bc-transition);
    outline: none;
}

.bc-form-group input:focus,
.bc-form-group select:focus,
.bc-form-group textarea:focus {
    border-color: var(--bc-primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 107, 0.1);
}

.bc-form-group input:hover,
.bc-form-group select:hover,
.bc-form-group textarea:hover {
    border-color: var(--bc-secondary);
}

.bc-form-group input::placeholder,
.bc-form-group textarea::placeholder {
    color: var(--bc-gray);
    font-style: italic;
}

.bc-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a5f6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.bc-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox categories */
.bc-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.bc-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 5px 10px;
    border: 2px solid var(--bc-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--bc-transition);
    background-color: var(--bc-white);
}

.bc-checkbox-item:hover {
    border-color: var(--bc-secondary);
    background-color: var(--bc-gray-light);
}

.bc-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--bc-primary);
    cursor: pointer;
    margin: 0;
}

.bc-checkbox-item label {
    font-family: var(--bc-font-body);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    margin: 0;
    color: var(--bc-text);
}

.bc-checkbox-item input[type="checkbox"]:checked + label {
    color: var(--bc-primary);
    font-weight: 600;
}

.bc-checkbox-item:has(input:checked) {
    border-color: var(--bc-primary);
    background-color: rgba(26, 95, 107, 0.05);
}

/* Privacy consent checkbox */
.bc-consent-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--bc-gray-light);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.bc-consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--bc-primary);
    cursor: pointer;
    margin-top: 3px;
    flex-shrink: 0;
}

.bc-consent-group label {
    font-family: var(--bc-font-body);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    margin: 0;
    color: var(--bc-text);
    line-height: 1.5;
}

.bc-consent-group a {
    color: var(--bc-primary);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.bc-consent-group a:hover {
    color: var(--bc-secondary);
}

.bc-consent-error {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.bc-consent-error.visible {
    display: block;
}

/* Form buttons */
.bc-form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.bc-form .bc-btn {
    width: 100%;
    justify-content: center;
}

.bc-form-close-btn {
    background: none;
    border: 2px solid var(--bc-gray);
    color: var(--bc-text);
    padding: 1rem 2rem;
    font-family: var(--bc-font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--bc-transition);
}

.bc-form-close-btn:hover {
    border-color: var(--bc-primary);
    color: var(--bc-primary);
    background-color: var(--bc-gray-light);
}

/* Form success message */
.bc-form-success {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--bc-primary);
}

.bc-form-success i {
    font-size: 3.5rem;
    margin: auto;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--bc-primary);
}

.bc-form-success h3 {
    font-family: var(--bc-font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bc-primary);
}

.bc-form-success p {
    font-size: 1rem;
    color: var(--bc-text);
    opacity: 0.8;
    line-height: 1.6;
}

/* Form error message */
.bc-form-error {
    text-align: center;
    padding: 1rem;
    background-color: #ffebee;
    border: 1px solid #d32f2f;
    border-radius: 8px;
    color: #d32f2f;
    font-size: 0.9rem;
    display: none;
}

.bc-form-error.visible {
    display: block;
}

/* ==================== FORM RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bc-form-header h2 {
        font-size: 1.75rem;
    }
    
    .bc-checkbox-group {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .bc-form {
        gap: 1.25rem;
    }
    
    .bc-form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .bc-form-header h2 {
        font-size: 1.5rem;
    }
    
    .bc-checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .bc-form-group input,
    .bc-form-group select,
    .bc-form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}


/* Legal Panel Typography */
.bc-panel-text h3 {
    font-family: var(--bc-font-heading);
    font-size: 1.8rem;
    color: var(--bc-primary);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--bc-primary);
}

.bc-panel-updated {
    font-size: 0.85rem;
    color: var(--bc-text);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.bc-panel-text h4 {
    font-family: var(--bc-font-heading);
    font-size: 1.2rem;
    color: var(--bc-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bc-gray);
}

.bc-panel-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.bc-panel-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.bc-panel-text ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.bc-panel-text strong {
    font-weight: 700;
    color: var(--bc-text);
}

/* Responsive for panels */
@media (max-width: 768px) {
    .bc-panel-text h3 {
        font-size: 1.5rem;
    }
    
    .bc-panel-text h4 {
        font-size: 1.1rem;
    }
    
    .bc-panel-text p,
    .bc-panel-text ul li {
        font-size: 0.9rem;
    }
}

/* ==================== ABOUT SECTION ==================== */
.bc-about {
    position: relative;
    padding: 120px 0;
    background-color: var(--bc-white);
    overflow: hidden;
}

.bc-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bc-about-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(26, 95, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 143, 159, 0.05) 0%, transparent 50%);
    animation: bcPulseBg 8s ease-in-out infinite;
}

@keyframes bcPulseBg {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.bc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.bc-section-title {
    font-family: var(--bc-font-heading);
    font-size: 2.8rem;
    color: var(--bc-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bc-section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--bc-text);
    opacity: 0.85;
    line-height: 1.8;
}

.bc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.bc-stat-card {
    background: var(--bc-white);
    border: 2px solid var(--bc-gray);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--bc-transition);
    position: relative;
    overflow: hidden;
}

.bc-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bc-primary), var(--bc-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bc-stat-card:hover {
    border-color: var(--bc-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 95, 107, 0.15);
}

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

.bc-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bc-white);
    animation: bcFloat 3s ease-in-out infinite;
}

@keyframes bcFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bc-stat-number {
    font-family: var(--bc-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bc-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.bc-stat-label {
    font-family: var(--bc-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bc-text);
    margin-bottom: 0.5rem;
}

.bc-stat-desc {
    font-size: 0.9rem;
    color: var(--bc-text);
    opacity: 0.7;
    line-height: 1.5;
}

.bc-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bc-about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 95, 107, 0.2);
}

.bc-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bc-about-image:hover img {
    transform: scale(1.05);
}

.bc-about-text h3 {
    font-family: var(--bc-font-heading);
    font-size: 2rem;
    color: var(--bc-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bc-about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bc-text);
    margin-bottom: 2rem;
}

.bc-about-features {
    list-style: none;
    padding: 0;
}

.bc-about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--bc-text);
}

.bc-about-features i {
    color: var(--bc-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ==================== RESPONSIVE ABOUT ==================== */
@media (max-width: 1024px) {
    .bc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bc-about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .bc-about {
        padding: 80px 0;
    }
    
    .bc-section-title {
        font-size: 2rem;
    }
    
    .bc-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bc-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .bc-stat-number {
        font-size: 2.5rem;
    }
    
    .bc-about-content {
        gap: 2rem;
    }
    
    .bc-about-text h3 {
        font-size: 1.6rem;
    }
}





/* ==================== PRODUCTS SECTION ==================== */
.bc-products {
    padding: 120px 0;
    background-color: var(--bc-gray-light);
}

.bc-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.bc-product-card {
    background: var(--bc-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--bc-transition);
    display: flex;
    flex-direction: column;
}

.bc-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(26, 95, 107, 0.2);
}

.bc-product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.bc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bc-product-card:hover .bc-product-image img {
    transform: scale(1.1);
}

.bc-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 107, 0.8), rgba(42, 143, 159, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bc-product-overlay i {
    font-size: 3rem;
    color: var(--bc-white);
    transform: translateX(-20px);
    transition: transform 0.4s ease;
}

.bc-product-card:hover .bc-product-overlay {
    opacity: 1;
}

.bc-product-card:hover .bc-product-overlay i {
    transform: translateX(0);
}

.bc-product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bc-product-content h3 {
    font-family: var(--bc-font-heading);
    font-size: 1.6rem;
    color: var(--bc-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bc-product-content > p {
    font-size: 0.95rem;
    color: var(--bc-text);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bc-product-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.bc-product-specs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--bc-text);
}

.bc-product-specs i {
    color: var(--bc-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.bc-product-content .bc-btn {
    width: 100%;
    justify-content: center;
}

/* ==================== RESPONSIVE PRODUCTS ==================== */
@media (max-width: 1024px) {
    .bc-products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bc-products {
        padding: 80px 0;
    }
    
    .bc-product-image {
        height: 220px;
    }
    
    .bc-product-content {
        padding: 1.5rem;
    }
    
    .bc-product-content h3 {
        font-size: 1.4rem;
    }
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.bc-why-us {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    overflow: hidden;
}

.bc-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#whyCanvas {
    width: 100%;
    height: 100%;
}

.bc-why-us .bc-container {
    position: relative;
    z-index: 1;
}

.bc-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.bc-advantage-card {
    background: var(--bc-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 25px rgba(26, 95, 107, 0.08);
    transition: var(--bc-transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bc-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--bc-primary), var(--bc-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.bc-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(26, 95, 107, 0.15);
    border-color: var(--bc-primary);
}

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

.bc-advantage-card.bc-advantage-large {
    grid-column: span 2;
}

.bc-advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    animation: bcPulseIcon 2s ease-in-out infinite;
}

@keyframes bcPulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 95, 107, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(26, 95, 107, 0);
    }
}

.bc-advantage-icon i {
    font-size: 2rem;
    color: var(--bc-white);
}

.bc-advantage-card h3 {
    font-family: var(--bc-font-heading);
    font-size: 1.5rem;
    color: var(--bc-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bc-advantage-card > p {
    font-size: 0.95rem;
    color: var(--bc-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.bc-advantage-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.bc-advantage-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--bc-text);
}

.bc-advantage-list i {
    color: var(--bc-primary);
    font-size: 1rem;
}

.bc-advantage-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bc-gray);
}

.bc-mini-stat {
    text-align: center;
}

.bc-mini-number {
    display: block;
    font-family: var(--bc-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bc-primary);
    line-height: 1;
}

.bc-mini-label {
    font-size: 0.85rem;
    color: var(--bc-text);
    opacity: 0.7;
    margin-top: 0.5rem;
    display: block;
}

.bc-why-cta {
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-secondary));
    border-radius: 20px;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 20px 60px rgba(26, 95, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.bc-why-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: bcRotateBg 20s linear infinite;
}

@keyframes bcRotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bc-why-cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.bc-why-cta-content h3 {
    font-family: var(--bc-font-heading);
    font-size: 2rem;
    color: var(--bc-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bc-why-cta-content p {
    font-size: 1.1rem;
    color: var(--bc-white);
    opacity: 0.95;
    line-height: 1.6;
}

.bc-why-cta-buttons {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.bc-why-cta .bc-btn-secondary {
    border-color: var(--bc-white);
    color: var(--bc-white);
}

.bc-why-cta .bc-btn-secondary:hover {
    background: var(--bc-white);
    color: var(--bc-primary);
}

/* ==================== RESPONSIVE WHY CHOOSE US ==================== */
@media (max-width: 1024px) {
    .bc-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bc-advantage-card.bc-advantage-large {
        grid-column: span 1;
    }
    
    .bc-why-cta {
        flex-direction: column;
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .bc-why-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .bc-why-cta .bc-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .bc-why-us {
        padding: 80px 0;
    }
    
    .bc-advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bc-advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .bc-advantage-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.5rem;
    }
    
    .bc-advantage-icon i {
        font-size: 1.6rem;
    }
    
    .bc-advantage-card h3 {
        font-size: 1.3rem;
    }
    
    .bc-advantage-stats {
        gap: 2rem;
    }
    
    .bc-mini-number {
        font-size: 2rem;
    }
    
    .bc-why-cta-content h3 {
        font-size: 1.6rem;
    }
    
    .bc-why-cta-content p {
        font-size: 1rem;
    }
}


/* ==================== PARTNERS SECTION ==================== */
.bc-partners {
    position: relative;
    padding: 120px 0;
    min-height: 900px;
    display: flex;
    align-items: center;
}

.bc-partners-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('partners-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.bc-partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 107, 0.92), rgba(42, 143, 159, 0.88));
    z-index: 1;
}

.bc-partners .bc-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.bc-text-white {
    color: var(--bc-white) !important;
}

.bc-partners .bc-section-subtitle {
    max-width: 1000px;
    color: var(--bc-white);
    opacity: 0.95;
}

.bc-partners-desc strong {
    color: var(--bc-white);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.bc-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.bc-partners-card {
    background: var(--bc-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: var(--bc-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bc-partners-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.bc-partners-card.bc-partners-highlight {
    background: linear-gradient(135deg, var(--bc-white) 0%, #f0f9f9 100%);
    border: 3px solid var(--bc-primary);
}

.bc-partners-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--bc-gray);
}

.bc-partners-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bc-partners-icon i {
    font-size: 2rem;
    color: var(--bc-white);
}

.bc-partners-card h3 {
    font-family: var(--bc-font-heading);
    font-size: 1.7rem;
    color: var(--bc-primary);
    line-height: 1.3;
    margin: 0;
}

.bc-partners-desc {
    font-size: 1rem;
    color: var(--bc-text);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.bc-partners-list {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.bc-partner-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: var(--bc-gray-light);
    border-radius: 12px;
    transition: var(--bc-transition);
}

.bc-partner-item:hover {
    background: rgba(26, 95, 107, 0.08);
    transform: translateX(5px);
}

.bc-partner-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bc-partner-item-icon i {
    font-size: 1.3rem;
    color: var(--bc-white);
}

.bc-partner-item-content h4 {
    font-family: var(--bc-font-heading);
    font-size: 1.1rem;
    color: var(--bc-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bc-partner-item-content p {
    font-size: 0.9rem;
    color: var(--bc-text);
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
}

.bc-partners-card .bc-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.bc-btn-white {
    background: var(--bc-white);
    color: var(--bc-primary);
    border: 2px solid var(--bc-white);
}

.bc-btn-white:hover {
    background: transparent;
    color: var(--bc-white);
}

.bc-partners-cta {
    display: flex;
    justify-content: center;
}

.bc-partners-cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem 4rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.bc-partners-cta-box i {
    font-size: 3rem;
    color: var(--bc-white);
    margin: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.bc-partners-cta-box h3 {
    font-family: var(--bc-font-heading);
    font-size: 2rem;
    color: var(--bc-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bc-partners-cta-box p {
    font-size: 1.1rem;
    color: var(--bc-white);
    opacity: 0.95;
    margin: 0 0 2.5rem 0;
}

/* Marquee Animation */
.bc-partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.bc-marquee-track {
    display: flex;
    animation: bcMarqueeScroll 40s linear infinite;
    width: max-content;
}

.bc-partners-marquee:hover .bc-marquee-track {
    animation-play-state: paused;
}

@keyframes bcMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.bc-marquee-content {
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
    flex-shrink: 0;
}

.bc-partner-logo {
    font-family: var(--bc-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--bc-white);
    white-space: nowrap;
    opacity: 0.9;
    padding: 10px 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== RESPONSIVE PARTNERS ==================== */
@media (max-width: 1024px) {
    .bc-partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bc-partners {
        min-height: auto;
        padding: 100px 0;
    }
    
    .bc-partners-cta-box {
        padding: 2rem;
    }
    
    .bc-marquee-content {
        gap: 2rem;
    }
    
    .bc-partner-logo {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .bc-partners {
        padding: 80px 0;
    }
    
    .bc-partners-card {
        padding: 2.5rem 1.5rem;
    }
    
    .bc-partners-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bc-partners-card h3 {
        font-size: 1.5rem;
    }
    
    .bc-partner-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bc-partner-item-icon {
        margin: 0 auto;
    }
    
    .bc-partners-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .bc-partners-cta-box h3 {
        font-size: 1.6rem;
    }
    
    .bc-partners-cta-box p {
        font-size: 1rem;
    }
    
    .bc-marquee-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .bc-partner-logo {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .bc-marquee-track {
        animation-duration: 30s;
    }
}




/* ==================== CONTACT SECTION ==================== */
.bc-contact {
    padding: 120px 0;
    background-color: var(--bc-white);
}

.bc-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bc-contact-subtitle {
    font-size: 1.1rem;
    color: var(--bc-text);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
}

.bc-contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bc-contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.bc-contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bc-contact-icon i {
    font-size: 1.4rem;
    color: var(--bc-white);
}

.bc-contact-text h4 {
    font-family: var(--bc-font-heading);
    font-size: 1.1rem;
    color: var(--bc-primary);
    margin-bottom: 0.4rem;
}

.bc-contact-text p {
    font-size: 0.95rem;
    color: var(--bc-text);
    line-height: 1.6;
    margin: 0;
}

.bc-contact-text a {
    color: var(--bc-primary);
    font-weight: 600;
    transition: var(--bc-transition);
}

.bc-contact-text a:hover {
    color: var(--bc-secondary);
}

.bc-contact-action {
    display: flex;
    justify-content: center;
}

.bc-contact-card {
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-secondary));
    border-radius: 20px;
    padding: 7.5rem 2.5rem;
    text-align: center;
    color: var(--bc-white);
    box-shadow: 0 20px 60px rgba(26, 95, 107, 0.3);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.bc-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: bcRotateBg 20s linear infinite;
}

@keyframes bcRotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bc-contact-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.bc-contact-card-icon i {
    font-size: 2rem;
    color: var(--bc-white);
}

.bc-contact-card h3 {
    font-family: var(--bc-font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.bc-contact-card > p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.bc-contact-card .bc-btn {
    background: var(--bc-white);
    color: var(--bc-primary);
    border: none;
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: center;
}

.bc-contact-card .bc-btn:hover {
    background: var(--bc-gray-light);
    transform: translateY(-3px);
}

/* ==================== FOOTER ==================== */
.bc-footer {
    background-color: #0f2b30;
    color: var(--bc-white);
    padding: 80px 0 30px;
}

.bc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
}

.bc-footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 400px;
}

.bc-footer-links h4, .bc-footer-legal h4 {
    font-family: var(--bc-font-heading);
    font-size: 14px;
    margin-bottom: 1rem;
    color: var(--bc-white);
}

.bc-footer-links ul,
.bc-footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-footer-links li,
.bc-footer-legal li {
    margin-bottom: 0.8rem;
}

.bc-footer-links a,
.bc-footer-legal a {
    color: var(--bc-white);
    opacity: 0.7;
    font-size: 0.95rem;
    transition: var(--bc-transition);
}

.bc-footer-links a:hover,
.bc-footer-legal a:hover {
    opacity: 1;
    color: var(--bc-secondary);
    padding-left: 5px;
}

.bc-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.bc-footer-copy p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}

.bc-footer-reg {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.bc-footer-lang {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--bc-font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.bc-footer-lang .bc-lang-active {
    color: var(--bc-white);
}

.bc-footer-lang .bc-lang {
    color: var(--bc-white);
    opacity: 0.5;
}

.bc-footer-lang .bc-lang:hover {
    opacity: 1;
}

.bc-footer-lang .bc-lang-separator {
    opacity: 0.3;
}

/* ==================== RESPONSIVE CONTACT & FOOTER ==================== */
@media (max-width: 1024px) {
    .bc-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bc-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .bc-footer-brand {
        grid-column: span 2;
    }
    .bc-logo img {
    height: 55px;
    }
    .bc-nav-link {
    font-size: 15px;
    }
    .bc-language-switcher {
    font-weight: 600;
    font-size: 14px;
    }
}

@media (max-width: 768px) {
    .bc-contact {
        padding: 80px 0;
    }
    
    .bc-section-title {
        font-size: 2rem;
    }
    
    .bc-contact-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bc-contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .bc-contact-card h3 {
        font-size: 1.5rem;
    }
    
    .bc-footer {
        padding: 60px 0 20px;
    }
    
    .bc-footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .bc-footer-brand {
        grid-column: span 1;
    }
    
    .bc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}






@media (max-width: 500px) {
.bc-header-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    color: var(--bc-primary);
    font-weight: 600;
    padding: 5px 8px 4px;
    border: 2px solid var(--bc-primary);
    border-radius: 15px;
    transition: var(--bc-transition);
    font-family: var(--bc-font-heading);
}
.bc-logo img {
    height: 45px;
}
.bc-header-container {
    padding: 5px 10px;
}
.bc-language-switcher,
.bc-lang-active {
    font-weight: 600;
    font-size: 13px;
}
.bc-header {
    height: 60px;
}
.bc-scroll-indicator {
    display: none;
}
.bc-form-group select,
.bc-form-group input {
    max-width: 90%;
}




}
