/* Modern Theme Override for BlueSunucum */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --b-bg-dark: #0B0E14;
  --b-bg-card: rgba(15, 23, 42, 0.4);
  --b-primary: #00E5FF;
  --b-secondary: #2563EB;
  --b-text-main: #FFFFFF;
  --b-text-muted: #94A3B8;
  --b-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Outfit', sans-serif !important;
    background-color: var(--b-bg-dark) !important;
    color: var(--b-text-main) !important;
    overflow-x: hidden;
}

/* Glass Navbar */
.modern-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--b-border);
    padding: 20px 0;
    transition: all 0.3s ease;
}
.modern-navbar .nav-link {
    color: var(--b-text-main) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}
.modern-navbar .nav-link:hover {
    color: var(--b-primary) !important;
}

/* Glowing Button */
.btn-glow {
    background: linear-gradient(135deg, var(--b-secondary), var(--b-primary));
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

/* Hero Section */
.modern-hero {
    position: relative;
    padding: 200px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-orb-1, .hero-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--b-secondary);
    top: -100px;
    left: -100px;
    animation: floatOrb 10s infinite alternate ease-in-out;
}
.hero-orb-2 {
    width: 600px;
    height: 600px;
    background: var(--b-primary);
    bottom: -200px;
    right: -100px;
    animation: floatOrb 15s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--b-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Pricing Cards */
.modern-pricing-card {
    background: var(--b-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--b-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.modern-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--b-secondary), var(--b-primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.modern-pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.modern-pricing-card:hover::before {
    opacity: 1;
}
.price-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--b-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}
.price-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}
.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--b-border);
    color: var(--b-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-features li i {
    color: var(--b-primary);
}

/* Bento Features */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-item {
    background: var(--b-bg-card);
    border: 1px solid var(--b-border);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
}
.bento-item:hover {
    border-color: rgba(255,255,255,0.2);
}
.bento-item i {
    font-size: 2rem;
    color: var(--b-primary);
    margin-bottom: 20px;
}
.bento-large {
    grid-column: span 2;
}
@media(max-width: 991px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; }
    .hero-title { font-size: 2.5rem; }
}

/* Section Styling */
.modern-section {
    padding: 100px 0;
}
.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}
.section-title-modern span {
    color: var(--b-primary);
}

/* Footer Overrides */
.footer-section { background: var(--b-bg-dark) !important; border-top: 1px solid var(--b-border); }
.single-footer-widget .widget-head h3 { color: var(--b-text-main); }
.single-footer-widget .list-area li a { color: var(--b-text-muted); }
.single-footer-widget .list-area li a:hover { color: var(--b-primary); }
.footer-bottom { background: rgba(11,14,20,0.9) !important; border-top: 1px solid var(--b-border); }

/* Modern Nav Tabs */
.modern-tabs { border-bottom: none; gap: 10px; justify-content: center; margin-bottom: 40px; }
.modern-tabs .nav-link { background: var(--b-bg-card); color: var(--b-text-muted); border-radius: 50px; padding: 10px 30px; font-weight: 600; border: 1px solid var(--b-border); transition: all 0.3s ease; }
.floating-visual { animation: floatVisual 4s ease-in-out infinite; }
@keyframes floatVisual { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }

.modern-hero .container { z-index: 10 !important; }
#particles-js { z-index: 0 !important; }

/* Mascot Animation */
.mascot-container { position: fixed; bottom: -150px; right: 20px; z-index: 2147483647; transition: all 0.5s ease; animation: peekMascot 6s infinite; }
@keyframes peekMascot { 0% { bottom: -150px; } 10% { bottom: 20px; } 30% { bottom: 20px; transform: rotate(10deg); } 35% { transform: rotate(-10deg); } 40% { transform: rotate(10deg); } 50% { bottom: 20px; } 60% { bottom: -150px; } 100% { bottom: -150px; } }
.mascot-speech { position: absolute; top: -60px; right: 100px; background: var(--b-primary); color: #000; padding: 10px 15px; border-radius: 20px; font-weight: bold; width: max-content; max-width: 200px; text-align: center; opacity: 0; animation: speechBubble 6s infinite; box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4); }
.mascot-speech::after { content: ''; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); border-width: 10px 0 10px 10px; border-style: solid; border-color: transparent transparent transparent var(--b-primary); }
@keyframes speechBubble { 0% { opacity: 0; } 15% { opacity: 1; } 45% { opacity: 1; } 55% { opacity: 0; } 100% { opacity: 0; } }

#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0;  }
.floating-visual { animation: floatVisual 4s ease-in-out infinite; }
@keyframes floatVisual { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }
