/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --bc-navy: #0C1C3F;
  --bc-gold: #D4AF37;
  --bc-light-gold: #F5E6B3;
  --bc-white: #FFFFFF;
  --bc-light-gray: #F5F5F5;
  --bc-dark-gray: #333333;
  --bc-transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --bc-bounce: cubic-bezier(0.16, 1, 0.3, 1);

}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--bc-white);
  background: var(--bc-navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
    .bc-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(12, 28, 63, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
      animation: slideDown 0.8s var(--bc-bounce) forwards;
    }

/* ===== LOGO STYLING ===== */
.bc-nav-logo {
  display: flex;
  align-items: center;
  transition: var(--bc-transition);
}

.bc-logo-img {
  height: 70px; /* Adjust based on your logo’s aspect ratio */
  width: auto;
  transition: var(--bc-transition);
}

/* Hover effects (gold glow + slight scale) */
.bc-nav-logo:hover .bc-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .bc-logo-img {
    height: 50px; /* Slightly smaller on mobile */
  }
}

.bc-logo-text {
  margin-left: 0px;
  font-size: 25px !important; /* Adjust as needed */
  font-family: 'Playfair Display', serif;
  text-transform: none;
  font-weight: 600;
  color: var(--bc-gold); /* Or your brand color */
  white-space: nowrap;
  transition: var(--bc-transition);
  margin-left: 10px !important;
}

/* Hover effect (optional, matches logo glow) */
.bc-nav-logo:hover .bc-logo-text {
  color: #d4af37;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .bc-logo-text {
    font-size: 1rem;
  }
}
    .bc-nav-items {
      display: flex;
      gap: 3rem;
      z-index: 999;
    }

    .bc-nav-link {
      color: var(--bc-white);
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      transition: var(--bc-transition);
    }

    .bc-nav-link::before {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--bc-gold);
      transition: var(--bc-transition);
    }

    .bc-nav-link:hover::before {
      width: 100%;
    }

    .bc-nav-cta {
      padding: 0.8rem 2rem;
      background: transparent;
      border: 1px solid var(--bc-gold);
      color: var(--bc-gold);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--bc-transition);
    }

    .bc-nav-cta:hover {
      background: var(--bc-gold);
      color: var(--bc-navy);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    }

    /* ===== MOBILE MENU ===== */
    .bc-mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--bc-white);
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 999;
      transition: var(--bc-transition);
    }

    .bc-mobile-menu-toggle:hover {
      color: var(--bc-gold);
    }

    .bc-mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100vh;
      background: var(--bc-navy);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 999 !important;
      transition: var(--bc-transition);
    }

    .bc-mobile-menu.active {
      left: 0;
    }

    .bc-mobile-nav-link {
      color: var(--bc-white);
      font-size: 1.2rem;
      font-weight: 300;
      text-decoration: none;
      position: relative;
      opacity: 0;
      transition: var(--bc-transition);
    }

    .bc-mobile-menu.active .bc-mobile-nav-link {
      animation: slideInLeft 0.6s var(--bc-bounce) forwards;
    }

    .bc-mobile-menu.active .bc-mobile-nav-link:nth-child(1) { animation-delay: 0.2s; }
    .bc-mobile-menu.active .bc-mobile-nav-link:nth-child(2) { animation-delay: 0.3s; }
    .bc-mobile-menu.active .bc-mobile-nav-link:nth-child(3) { animation-delay: 0.4s; }
    .bc-mobile-menu.active .bc-mobile-nav-link:nth-child(4) { animation-delay: 0.5s; }

    .bc-mobile-nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--bc-gold);
      transition: var(--bc-transition);
    }

    .bc-mobile-nav-link:hover::after {
      width: 100%;
    }

    .bc-mobile-menu-cta {
      margin-top: 1rem;
      padding: 0.8rem 2rem;
      border: 1px solid var(--bc-gold);
      color: var(--bc-gold);
      font-size: 0.9rem;
      text-decoration: none;
      transition: var(--bc-transition);
      opacity: 0;
    }

    .bc-mobile-menu.active .bc-mobile-menu-cta {
      animation: slideInLeft 0.6s var(--bc-bounce) forwards;
      animation-delay: 0.6s;
    }

    .bc-mobile-menu-cta:hover {
      background: var(--bc-gold);
      color: var(--bc-navy);
      transform: translateY(-3px);
    }


    /* Responsive */
    @media (max-width: 1024px) {
      .bc-nav-items {
        gap: 2rem;
      }
    }

    @media (max-width: 768px) {
      .bc-nav-items {
        display: none;
      }
      
      .bc-nav-cta {
        display: none;
      }
      
      .bc-mobile-menu-toggle {
        display: block;
      }
    }

    @media (max-width: 480px) {
      .bc-nav {
        padding: 1rem 5%;
      }
    }

@keyframes slideInLeft {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== HERO SECTION ===== */
.bc-hero {
  height: 100vh;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-left: 0%;
}

.bc-hero-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
  background-size: cover;
  filter: grayscale(20%) contrast(120%);
  opacity: 0.3;
}

.bc-hero-backdrop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bc-navy) 15%, transparent 70%);
}

.bc-hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8%;
  position: relative;
  z-index: 2;
}

.bc-hero-content {
  max-width: 50%;
}

.bc-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--bc-white);
}

.bc-hero-title span {
  color: var(--bc-gold);
  position: relative;
}

.bc-hero-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bc-gold);
  transform: scaleX(1);
}

.bc-hero-divider {
  width: 80px;
  height: 1px;
  background: var(--bc-gold);
  margin: 1.5rem 0;
  opacity: 0.6;
}

.bc-hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--bc-light-gray);
  opacity: 0.9;
}

.bc-hero-cta-container {
  display: flex;
  gap: 1.5rem;
}

.bc-hero-cta-primary {
  padding: 1rem 2.5rem;
  background: var(--bc-gold);
  color: var(--bc-navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--bc-transition);
}

.bc-hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.bc-hero-cta-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--bc-white);
  color: var(--bc-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--bc-transition);
}

.bc-hero-cta-secondary:hover {
  border-color: var(--bc-gold);
  color: var(--bc-gold);
}

/* ===== PARTICLES ===== */
.bc-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bc-particle {
  position: absolute;
  background: var(--bc-gold);
  border-radius: 50%;
  opacity: 0;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .bc-hero-content {
    max-width: 60%;
  }
  .bc-hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .bc-hero {
    min-height: 700px;
    
  }
  .bc-hero-backdrop {
    width: 100%;
    opacity: 0.2;
  }
  .bc-hero-content {
    max-width: 100%;
    text-align: center;
  }
  .bc-hero-title {
    margin-top: 50px;
    font-size: 2.5rem;
    text-align: left;
  }
    
    .bc-hero-description {
        align-content: left;
        text-align: left;
        margin-top: 60px;
        font-size: 16px;
    }
  
  .bc-hero-divider {
    margin: 1.5rem auto;
    display: none;
  }
  .bc-hero-cta-container {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bc-hero-title {
    font-size: 2rem;
  }
  .bc-hero-description {
    font-size: 1rem;
  }
  .bc-hero-cta-container {
    flex-direction: column;
    gap: 1rem;
  }
  .bc-hero-cta-primary, 
  .bc-hero-cta-secondary {
    width: 100%;
  }
}


/* ===== PREMIUM TRUST SECTION ===== */
.bc-premium-trust {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
  }
  
  .bc-gold-bar {
    height: 4px;
    background: linear-gradient(90deg, #D4AF37 0%, #F5E6B3 50%, #D4AF37 100%);
    position: absolute;
    justify-items: center;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .bc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .bc-section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .bc-section-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .bc-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #0C1C3F;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .bc-section-title span {
    position: relative;
  }
  
  .bc-section-title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37 0%, rgba(212, 175, 55, 0) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .bc-title-divider {
    width: 80px;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
    margin: 25px auto 30px;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .bc-section-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    font-weight: 300;
  }
  
  /* Trust Grid */
  .bc-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .bc-trust-card {
    background: #FFFFFF;
    border: 1px solid rgba(12, 28, 63, 0.08);
    border-radius: 8px;
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 15px 30px rgba(12, 28, 63, 0.03);
  }
  
  .bc-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
  }
  
  .bc-icon-circle {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .bc-custom-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
  
  .bc-icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgba(212, 175, 55, 0.03);
    border-radius: 50%;
    z-index: 1;
  }
  
  .bc-trust-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0C1C3F;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
  }
  
  .bc-benefit-list {
    list-style: none;
  }
  
  .bc-benefit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .bc-benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
  }
  
  .bc-card-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.03) 100%);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Premium CTA */
  .bc-premium-cta {
    text-align: center;
    margin-top: 40px;
  }
  
  .bc-premium-cta p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #D4AF37;
    margin-bottom: 20px;
  }
  
  .bc-gold-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #0C1C3F;
    color: #FFFFFF;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  
  .bc-gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .bc-gold-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(12, 28, 63, 0.2);
  }
  
  .bc-gold-button:hover::before {
    left: 100%;
  }
  
  /* Animations */
  .bc-premium-trust.in-view .bc-section-header {
    opacity: 1;
    transform: translateY(0);
  }
  
  .bc-premium-trust.in-view .bc-section-title span::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .bc-premium-trust.in-view .bc-title-divider {
    transform: scaleX(1);
  }
  
  .bc-premium-trust.in-view .bc-trust-card {
    opacity: 1;
    transform: translateY(0);
  }
  
  .bc-premium-trust.in-view .bc-trust-card:nth-child(1) {
    transition-delay: 0.2s;
  }
  .bc-premium-trust.in-view .bc-trust-card:nth-child(2) {
    transition-delay: 0.4s;
  }
  .bc-premium-trust.in-view .bc-trust-card:nth-child(3) {
    transition-delay: 0.6s;
  }
  
  /* Hover Effects */
  .bc-trust-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(12, 28, 63, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
  }
  
  .bc-trust-card:hover .bc-icon-circle {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
  }
  
  .bc-trust-card:hover .bc-card-hover {
    height: 100%;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .bc-trust-grid {
      gap: 20px;
    }
    .bc-trust-card {
      padding: 40px 25px;
    }
  }
  
  @media (max-width: 768px) {
    .bc-trust-grid {
      grid-template-columns: 1fr;
      max-width: 600px;
      margin: 0 auto 60px;
    }
    .bc-section-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .bc-container {
      padding: 0 25px;
    }
    .bc-section-title {
      font-size: 2rem;
    }
    .bc-section-intro {
      font-size: 1rem;
    }
    .bc-trust-card {
      padding: 35px 20px;
    }
  }

  /* ===== SUCCESS STORIES SECTION ===== */
.bc-success-stories {
    background: var(--bc-white);
    padding: 100px 0;
    color: var(--bc-navy);
  }
  
  .bc-ss-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  /* Header Styles */
  .bc-ss-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
  }
  
  .bc-ss-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--bc-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .bc-ss-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .bc-ss-title span {
    color: var(--bc-gold);
  }
  
  .bc-ss-divider {
    width: 60px;
    height: 2px;
    background: var(--bc-gold);
    margin: 20px auto;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s ease-out 0.2s;
  }
  
  .bc-ss-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--bc-dark-gray);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.1s;
  }
  
  /* Cards Layout */
  .bc-ss-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .bc-ss-card {
    background: var(--bc-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(12, 28, 63, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .bc-ss-card-img {
    height: 250px;
    overflow: hidden;
  }
  
  .bc-ss-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
  }
  
  .bc-ss-card-content {
    padding: 30px;
  }
  
  .bc-ss-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--bc-navy);
  }
  
  .bc-ss-card-content p {
    color: var(--bc-dark-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .bc-ss-stats {
    display: flex;
    gap: 20px;
  }
  
  .bc-ss-stat {
    text-align: center;
  }
  
  .bc-ss-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bc-gold);
    display: block;
  }
  
  .bc-ss-stat span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bc-dark-gray);
  }
  
  /* Animation Classes */
  .bc-success-stories.in-view .bc-ss-header {
    opacity: 1;
    transform: translateY(0);
  }
  
  .bc-success-stories.in-view .bc-ss-divider {
    opacity: 1;
    transform: scaleX(1);
  }
  
  .bc-success-stories.in-view .bc-ss-intro {
    opacity: 1;
    transform: translateY(0);
  }
  
  .bc-success-stories.in-view .bc-ss-card {
    opacity: 1;
    transform: translateY(0);
  }
  
  .bc-success-stories.in-view .bc-ss-card:nth-child(1) {
    transition-delay: 0.2s;
  }
  .bc-success-stories.in-view .bc-ss-card:nth-child(2) {
    transition-delay: 0.4s;
  }
  .bc-success-stories.in-view .bc-ss-card:nth-child(3) {
    transition-delay: 0.6s;
  }
  
  /* Hover Effects */
  .bc-ss-card:hover .bc-ss-card-img img {
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .bc-ss-cards {
      grid-template-columns: 1fr;
    }
    
    .bc-ss-title {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .bc-ss-container {
      padding: 0 20px;
    }
    
    .bc-ss-card-content {
      padding: 20px;
    }
  }

  /* Premium CTA Section */
.bc-cta-premium {
    background: linear-gradient(135deg, #0C1C3F 0%, #1A365D 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .bc-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
  }
  
  .bc-cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }
  
  .bc-cta-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .bc-cta-dots {
    position: absolute;
    bottom: 50px;
    right: 100px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(212, 175, 55, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
  }
  
  .bc-cta-content {
    max-width: 600px;
    color: white;
  }
  
  .bc-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .bc-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
  }
  
  .bc-cta-benefits {
    margin: 40px 0;
  }
  
  .bc-cta-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    backdrop-filter: blur(5px);
  }
  
  .bc-cta-icon {
    width: 24px;
    height: 24px;
    background: #D4AF37;
    color: #0C1C3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .bc-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .bc-cta-primary {
    padding: 16px 32px;
    background: #D4AF37;
    color: #0C1C3F;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .bc-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  }
  
  .bc-cta-secondary {
    padding: 16px 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .bc-cta-secondary:hover {
    background: rgba(255,255,255,0.2);
  }
  
  .bc-cta-note {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .bc-cta-note span {
    color: #D4AF37;
    font-weight: 600;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .bc-cta-premium {
      padding: 80px 0;
    }
    
    .bc-cta-content h2 {
      font-size: 2rem;
    }
    
    .bc-cta-decoration {
      display: none;
    }
    
    .bc-cta-buttons {
      flex-direction: column;
    }
    
    .bc-cta-primary, .bc-cta-secondary {
      width: 100%;
      justify-content: center;
    }
  }


