/* ==========================================================================
   NEXFLUX DESIGN SYSTEM - ADVANCED ESSENTIAL STYLES
   ========================================================================== */

:root {
    --bg-base: #030303;
    --bg-surface: rgba(13, 13, 18, 0.7);
    --bg-surface-solid: #0d0d12;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-primary: #8b5cf6;
    --accent-secondary: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --accent-glow: rgba(139, 92, 246, 0.3);
    --card-shadow: 0 20px 40px rgba(0,0,0,0.5);
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
    --bg-base: #f8fafc;
    --bg-surface: rgba(255, 255, 255, 0.75);
    --bg-surface-solid: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent-primary: #6d28d9;
    --accent-secondary: #0891b2;
    --accent-gradient: linear-gradient(135deg, #6d28d9 0%, #0891b2 100%);
    --accent-glow: rgba(109, 40, 217, 0.15);
    --card-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-stack);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030303;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader-bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-gradient);
    filter: blur(120px);
    opacity: 0.15;
    animation: pulseGlow 4s infinite alternate;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    width: 90px;
    height: auto;
    animation: logoPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: drop-shadow(0 0 15px var(--accent-primary));
}

.loading-bar-container {
    width: 240px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 25px auto;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-gradient);
    box-shadow: 0 0 10px var(--accent-secondary);
    animation: loadProgress 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loading-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.2); opacity: 0.25; }
}
@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px var(--accent-primary)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px var(--accent-secondary)); }
}
@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ==========================================================================
   NAVIGATION BAR (GLASSMORPHISM)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    z-index: 9999;
    padding: 12px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-premium), top 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 42px;
    height: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    opacity: 0.8;
    position: relative;
    padding: 6px 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn-link {
    background: var(--accent-gradient);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition-premium);
}

.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-primary);
}

[data-theme="dark"] .icon-light { display: none; }
[data-theme="light"] .icon-dark { display: none; }

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ==========================================================================
   APP ROUTER & CONTENT MOUNT TRANSTIONS
   ========================================================================== */
#app-router {
    position: relative;
    z-index: 2;
    min-height: 80vh;
    padding-top: 120px;
}

.page-wrapper {
    animation: routeFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes routeFadeIn {
    0% { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ==========================================================================
   GLOBAL UTILITIES / GLASSMORPHISM CARDS
   ========================================================================== */
.section-padding {
    padding: 100px 8% 80px 8%;
}

@media(max-width: 768px) {
    .section-padding { padding: 60px 5% 50px 5%; }
}

.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-premium);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 20px var(--accent-glow);
}

.section-title-area {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.subtitle-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.main-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.main-section-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0 auto;
    font-size: 1.05rem;
}

/* Premium Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-premium);
    border: none;
}

.btn-premium.primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-premium.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
}

.btn-premium.secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-premium.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-main);
    transform: translateY(-3px);
}

/* ==========================================================================
   PAGE: HOME / HERO
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 120px 8% 100px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-bg-glows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.hero-glow-1 {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 1000px;
    margin-bottom: 25px;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

@media(max-width: 600px) {
    .hero-title { font-size: 2.8rem; }
    .hero-description { font-size: 1.05rem; }
    .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; }
    .hero-cta-group .btn-premium { width: 100%; justify-content: center; }
}

/* Dashboard Mockup Grid Visual */
.hero-visual-container {
    width: 100%;
    max-width: 1100px;
    margin-top: 20px;
}

.premium-mockup {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(20,20,25,0.9) 0%, rgba(10,10,12,0.95) 100%);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1);
    padding: 20px;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 12px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-body-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.mockup-lead-graphic {
    height: 250px;
    background: linear-gradient(90deg, rgba(139,92,246,0.05), rgba(6,182,212,0.05));
    border: 1px dashed rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-secondary);
    font-weight: 700;
}

.mockup-side-metric {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.mockup-mini-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 15px;
}

@media(max-width: 768px) {
    .mockup-body-grid { grid-template-columns: 1fr; }
    .mockup-side-metric { display: none; }
}

/* ==========================================================================
   SERVICES CONTAINER GRID
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--accent-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px var(--accent-glow);
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
}

.glass-card:hover .service-learn-more-btn {
    transform: translateX(5px);
}

/* ==========================================================================
   STATS ENGINE
   ========================================================================== */
.stats-banner {
    background: linear-gradient(90deg, rgba(139,92,246,0.08) 0%, rgba(6,182,212,0.08) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 40px;
}

.stat-item-block {
    padding: 40px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==========================================================================
   ABOUT PREVIEW SPLIT SECTION
   ========================================================================== */
.split-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width: 992px) {
    .split-layout-container { grid-template-columns: 1fr; gap: 40px; }
}

.split-text-block h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.split-text-block p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.philosophy-bullets li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.philosophy-bullets i {
    color: var(--accent-primary);
    margin-top: 5px;
}

.visual-collage-box {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: linear-gradient(45deg, rgba(139,92,246,0.1), rgba(6,182,212,0.1));
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-center-logo {
    width: 120px;
    filter: drop-shadow(0 0 30px var(--accent-primary));
}

/* ==========================================================================
   PORTFOLIO ENGINE
   ========================================================================== */
.portfolio-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-premium);
}

.filter-chip.active, .filter-chip:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
}

.portfolio-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.project-premium-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 380px;
    box-shadow: var(--card-shadow);
}

.project-bg-abstract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.project-premium-card:hover .project-bg-abstract {
    transform: scale(1.08);
}

.project-accent-mesh {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    top: -20%;
    left: -20%;
    opacity: 0.4;
    transition: var(--transition-premium);
}

.project-premium-card:hover .project-accent-mesh {
    opacity: 0.8;
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 3;
    background: linear-gradient(180deg, transparent 0%, rgba(3,3,3,0.95) 80%);
}

.project-category-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.project-display-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-action-row {
    display: flex;
    gap: 15px;
}

/* ==========================================================================
   TESTIMONIALS MODULAR CONTAINER
   ========================================================================== */
.testimonials-slider-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-quote-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-client-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #ffffff;
}

.client-metadata h5 {
    font-size: 0.95rem;
    font-weight: 600;
}

.client-metadata span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PRICING CONFIGURATOR CARDS
   ========================================================================== */
.pricing-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    align-items: stretch;
}

.pricing-tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-tier-card.featured-tier {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.03);
}

@media(max-width: 992px) {
    .pricing-tier-card.featured-tier { transform: scale(1); }
}

.tier-badge-highlight {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
}

.tier-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tier-price-box {
    margin-bottom: 25px;
}

.tier-currency-amt {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-main);
}

.tier-billing-cycle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tier-feature-list {
    margin-bottom: 35px;
    flex-grow: 1;
}

.tier-feature-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tier-feature-list li i {
    color: var(--accent-secondary);
}

/* ==========================================================================
   ACCORDION ENGINE (FAQs)
   ========================================================================== */
.faq-accordion-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-node {
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-premium);
}

.faq-trigger-header {
    width: 100%;
    padding: 22px 30px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-node-icon {
    transition: transform 0.4s ease;
    color: var(--accent-primary);
}

.faq-body-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-node.active-node {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(255,255,255,0.02);
}

.faq-node.active-node .faq-node-icon {
    transform: rotate(180deg);
}

.faq-node.active-node .faq-body-panel {
    padding-bottom: 22px;
}

/* ==========================================================================
   CINEMATIC CTA BANNERS
   ========================================================================== */
.cinematic-cta-banner {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13,13,18,0.95) 0%, rgba(20,10,35,0.95) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 60px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

.cta-banner-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    filter: blur(100px);
    top: -50px;
    left: -50px;
    opacity: 0.2;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-banner-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 35px auto;
    font-size: 1.1rem;
}

.cta-actions-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FORMS & BOOKING CONSOLE ENGINE
   ========================================================================== */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

@media(max-width: 992px) {
    .contact-split-grid { grid-template-columns: 1fr; }
}

.premium-form-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-block label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input-ctrl {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text-main);
    font-family: var(--font-stack);
    font-size: 0.95rem;
    transition: var(--transition-premium);
}

.form-input-ctrl:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

select.form-input-ctrl option {
    background-color: var(--bg-surface-solid);
    color: #ffffff;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media(max-width: 600px) {
    .form-row-dual { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BLOG LAYOUT SYSTEM
   ========================================================================== */
.blog-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.blog-premium-node {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-abstract-thumbnail {
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(6,182,212,0.2) 100%);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.3);
    font-size: 2.5rem;
}

.blog-meta-strip {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--accent-secondary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-node-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-node-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ==========================================================================
   SUCCESS ENGINE (THANK YOU PAGE)
   ========================================================================== */
.success-orchestration-panel {
    max-width: 650px;
    margin: 40px auto;
    text-align: center;
    padding: 60px 40px;
}

.success-vector-halo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6,182,212,0.2) 0%, rgba(139,92,246,0.2) 100%);
    border: 2px solid var(--accent-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px auto;
    font-size: 2.5rem;
    color: var(--accent-secondary);
    box-shadow: 0 0 30px rgba(6,182,212,0.4);
    animation: successPulse 2s infinite alternate;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 20px rgba(6,182,212,0.3); transform: scale(1); }
    100% { box-shadow: 0 0 40px rgba(139,92,246,0.6); transform: scale(1.05); }
}

/* ==========================================================================
   PREMIUM COMPLEX FOOTER
   ========================================================================== */
.premium-footer {
    position: relative;
    background: #060608;
    color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 80px 8% 30px 8%;
    margin-top: 100px;
    overflow: hidden;
    z-index: 2;
}

[data-theme="light"] .premium-footer {
    background: #0f172a;
}

.footer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-gradient);
    filter: blur(150px);
    bottom: -150px;
    right: -50px;
    opacity: 0.1;
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

@media(max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 45px; }
}
@media(max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; gap: 35px; }
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9ca3af;
    transition: var(--transition-premium);
}

.footer-socials a:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    letter-spacing: 0.02em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent-secondary);
}

.contact-info-item {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item i {
    color: var(--accent-primary);
}

.footer-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* ==========================================================================
   FLOATING INTERACTIVES & RESPONSIVE RECONCILIATIONS
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 99998;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.tooltip-text {
    position: absolute;
    right: 75px;
    background: #000000;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navbar Override Menu Open */
@media(max-width: 992px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-surface-solid);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 50px 40px;
        gap: 30px;
        align-items: flex-start;
        transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 1px solid var(--border-color);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-btn-link { width: 100%; text-align: center; }
}