/* Global Styles */
:root {
    /* Purple Theme Palette */
    --purple-50: #faf7fd;
    --purple-100: #f3edfa;
    --purple-200: #e9def6;
    --purple-300: #d8c5ed;
    --purple-400: #bf9fe1;
    --purple-500: #a679d3;
    --purple-600: #905cc1;
    --purple-700: #804caf;
    --purple-800: #673f8a;
    --purple-900: #54346f;
    --purple-950: #391c4f;
    
    /* Dark Theme Colors */
    --primary-color: var(--purple-500);
    --secondary-color: var(--purple-600);
    --accent-color: var(--purple-400);
    --text-color: #ffffff;
    --light-text: rgba(255, 255, 255, 0.8);
    --background: #0a0a0a;
    --bg-dark: #111111;
    --bg-medium: #1a1a1a;
    --bg-light: #2a2a2a;
    --light-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-radius: 8px;
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Responsive Base Styles */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Safari Compatibility Fixes */
@supports (-webkit-backdrop-filter: blur(10px)) {
    .floating-navbar,
    .mobile-menu-container {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }
}

/* Safari gradient text fixes */
@supports (-webkit-background-clip: text) {
    .brand-title,
    .mobile-brand-name,
    .jai-capital-title {
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Safari flexbox fixes */
.floating-navbar,
.mobile-menu-container,
.contact-interface,
.footer-navigation {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Safari Grid fixes */
.footer-navigation,
.contact-interface,
.expertise-grid,
.modules-grid {
    display: -ms-grid;
    display: grid;
}

/* Safari transform fixes */
@supports (-webkit-transform: translateX(-50%)) {
    .floating-navbar {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* Safari backdrop filter fallback */
@supports not (backdrop-filter: blur(20px)) {
    .floating-navbar,
    .mobile-menu-container {
        background: rgba(34, 34, 34, 0.95);
    }
}

/* Internet Explorer Fallbacks */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .contact-interface,
    .expertise-grid,
    .modules-grid {
        display: -ms-grid;
        -ms-grid-columns: 1fr 1fr;
        -ms-grid-rows: auto auto;
    }
    
    .footer-navigation {
        display: -ms-grid;
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        -ms-grid-rows: auto;
    }
    
    .floating-navbar {
        background: rgba(34, 34, 34, 0.95);
    }
    
    .jai-capital-title,
    .brand-title {
        background: var(--primary-color);
        color: white;
    }
}

/* Firefox prefixes */
@-moz-document url-prefix() {
    .floating-navbar {
        background: rgba(34, 34, 34, 0.95);
    }
    
    .contact-interface {
        display: -moz-box;
        -moz-box-orient: vertical;
    }
}

/* Additional Browser Support */
.floating-navbar,
.mobile-menu-container {
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    -ms-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

/* Enhanced CSS Variables Fallbacks */
:root {
    /* Fallback colors for older browsers */
    --primary-color-fallback: #a679d3;
    --secondary-color-fallback: #905cc1;
    --accent-color-fallback: #bf9fe1;
}

/* Legacy browser support */
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .floating-navbar {
        background: rgba(34, 34, 34, 0.95);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Floating Navbar */
.floating-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    min-width: 280px;
    background: rgba(34, 34, 34, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-navbar.navbar-hidden {
    opacity: 0;
    transform: translate(-50%, -100px);
    left: 50%;
}

.floating-navbar .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
}

.mobile-brand-name {
    display: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Site logo removed as requested */

.floating-navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.floating-navbar .nav-links li {
    display: flex;
    align-items: center;
}

.floating-navbar .nav-links li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease, background 0.2s ease;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
    white-space: nowrap;
    display: block;
    min-width: fit-content;
}

.floating-navbar .nav-links li a:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

.floating-navbar .nav-links li a.active {
    color: var(--primary-color);
    background: rgba(166, 121, 211, 0.1);
}

.floating-navbar .cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(166, 121, 211, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.85rem;
}

.floating-navbar .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.floating-navbar .cta-button:hover::before {
    left: 100%;
}

.floating-navbar .cta-button:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(166, 121, 211, 0.4);
}

.floating-navbar .subscribe-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ee5a24 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    color: #ffffff;
}

.floating-navbar .subscribe-button:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Toggle */
.floating-navbar .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    background: rgba(166, 121, 211, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(166, 121, 211, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-navbar .hamburger:hover {
    background: rgba(166, 121, 211, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(166, 121, 211, 0.2);
}

.floating-navbar .hamburger .line {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    margin: 3px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.floating-navbar .hamburger .menu-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.floating-navbar .hamburger:hover .menu-icon {
    color: var(--accent-color);
}

    .floating-navbar .hamburger.mobile-active .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

    .floating-navbar .hamburger.mobile-active .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

    .floating-navbar .hamburger.mobile-active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Close Button */
    .floating-navbar .mobile-close-btn {
        display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(166, 121, 211, 0.2);
        border-radius: 50%;
    border: 1px solid rgba(166, 121, 211, 0.4);
        cursor: pointer;
    z-index: 10002;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .floating-navbar .mobile-close-btn span {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 400;
        transition: all 0.3s ease;
    }

    .floating-navbar .mobile-close-btn:hover {
    background: rgba(166, 121, 211, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(166, 121, 211, 0.3);
}

.floating-navbar .mobile-close-btn:hover span {
    color: #ffffff;
}

    .floating-navbar .mobile-close-btn.active {
        display: flex;
}

/* Hero Section with Expanding Container */
.hero {
    background: var(--background);
    color: white;
    text-align: center;
    padding: 180px 20px 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 15px 80px;
        min-height: 90vh;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 10px 60px;
        min-height: 85vh;
    }
}

.particle-canvas {
        position: absolute;
        top: 0;
        left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
        pointer-events: none;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
    transform: none;
}

@keyframes heroContentExpand {
    0% {
            opacity: 0;
        transform: translateY(50px) scale(0.9);
        }
    100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

.jai-capital-title {
    font-family: 'Rubik 80s Fade', cursive;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 400;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(166, 121, 211, 0.5);
    animation: glow 3s ease-in-out infinite alternate, titleSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
            opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(166, 121, 211, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(166, 121, 211, 0.8), 0 0 60px rgba(191, 159, 225, 0.6);
    }
}

@keyframes scrambleFlash {
    0% { opacity: 1; }
    5% { opacity: 0.3; }
    10% { opacity: 1; }
    15% { opacity: 0.5; }
    20% { opacity: 1; }
    25% { opacity: 0.2; }
    30% { opacity: 1; }
    100% { opacity: 1; }
}

.hero-main-heading {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    text-align: center;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
        opacity: 0;
    transform: translateY(30px);
    animation: headingSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes headingSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
            opacity: 0;
    transform: translateY(30px);
    animation: paragraphSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.1s;
}

@keyframes paragraphSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
.hero .cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
        font-size: 1.1rem;
    font-weight: 600;
        text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(166, 121, 211, 0.3);
    border: none;
    cursor: pointer;
        position: relative;
        overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: buttonSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.4s;
}

@keyframes buttonSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    }
    
.hero .cta-button:hover::before {
        left: 100%;
    }
    
.hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(166, 121, 211, 0.4);
}

/* Expanding Container Effect */
.expanding-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.95), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
}

.expanding-container.expanded {
    transform: scale(1);
    opacity: 1;
}

.expanding-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(166, 121, 211, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: -1;
    pointer-events: none;
}

.expanding-container.expanded::before {
    opacity: 1;
    animation: containerGlow 3s ease-in-out infinite alternate;
    animation-delay: 0.5s;
}

@keyframes containerGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

/* Section Styles */
.about-section,
.consultancy-section,
.expertise-section,
.contact-section {
    padding: 120px 0;
    opacity: 1;
    transform: translateY(0);
}

/* Revolutionary About Section */
.about-section {
    background: linear-gradient(135deg, var(--background) 0%, var(--bg-dark) 50%, var(--bg-medium) 100%);
    min-height: 100vh;
        position: relative;
    overflow: hidden;
        display: flex;
    align-items: center;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(166, 121, 211, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(191, 159, 225, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(166, 121, 211, 0.02) 50%, transparent 60%);
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(1deg); }
    50% { transform: translate(10px, 10px) rotate(-1deg); }
    75% { transform: translate(-5px, 15px) rotate(0.5deg); }
}

/* Floating Background Shapes */
.about-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(166, 121, 211, 0.05));
    filter: blur(2px);
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 70%;
    animation-delay: -14s;
    animation-duration: 18s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(40px, 10px) rotate(270deg); }
}

/* Future Finance Command Center */
.consultancy-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--background) 25%, var(--bg-medium) 50%, var(--bg-dark) 100%);
    min-height: 100vh;
        position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.consultancy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(166, 121, 211, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(191, 159, 225, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(128, 76, 175, 0.03) 0%, transparent 50%);
    animation: backgroundPulse 20s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Command Center Background */
.command-center-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple-400);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: neuralPulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px var(--purple-400);
}

@keyframes neuralPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

.neural-connection {
        position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, var(--purple-400) 50%, transparent 51%) 10% 20% / 200px 1px no-repeat,
        linear-gradient(135deg, transparent 49%, var(--purple-400) 50%, transparent 51%) 30% 40% / 150px 1px no-repeat,
        linear-gradient(225deg, transparent 49%, var(--purple-400) 50%, transparent 51%) 60% 15% / 180px 1px no-repeat;
    opacity: 0.2;
    animation: connectionFlow 8s linear infinite;
}

@keyframes connectionFlow {
    0% { opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.hologram-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 98%, var(--purple-400) 99%, transparent 100%) 0 0 / 50px 50px,
        linear-gradient(transparent 98%, var(--purple-400) 99%, transparent 100%) 0 0 / 50px 50px;
    opacity: 0.05;
    animation: gridShift 15s linear infinite;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--purple-400), transparent);
    animation: streamFlow 4s linear infinite;
    animation-delay: var(--stream-delay);
    opacity: 0.4;
}

.stream:nth-child(1) { left: 20%; }
.stream:nth-child(2) { left: 60%; }
.stream:nth-child(3) { left: 80%; }

@keyframes streamFlow {
    0% { 
        transform: translateY(-100vh);
        opacity: 0;
    }
    10%, 90% { 
        opacity: 0.4;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Command Interface */
.command-interface {
    position: relative;
    z-index: 2;
}

.interface-header {
    text-align: center;
    margin-bottom: 80px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-300);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-dot {
    width: 12px;
    height: 12px;
        border-radius: 50%;
    background: var(--purple-400);
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--purple-400);
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.cyber-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    gap: 20px;
}

.title-prefix {
    color: var(--purple-300);
    font-size: 0.8em;
}

.title-main {
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-suffix {
    color: var(--purple-500);
    font-size: 0.6em;
    opacity: 0.8;
}

.interface-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Analytics Dashboard */
.analytics-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 80px;
    border: 1px solid rgba(166, 121, 211, 0.1);
    backdrop-filter: blur(20px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.refresh-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--purple-400);
    font-size: 0.9rem;
    font-weight: 600;
}

.refresh-icon {
    animation: spin 3s linear infinite;
}

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

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(166, 121, 211, 0.1);
        transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analytics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(166, 121, 211, 0.3);
    box-shadow: 0 15px 30px rgba(166, 121, 211, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 1.5rem;
}

.card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--purple-400);
    margin-bottom: 10px;
}

.card-trend {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-graph,
.security-bars,
.prediction-waves {
    height: 40px;
    position: relative;
    margin-top: 15px;
}

.graph-line {
    height: 100%;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    border-radius: 4px;
    animation: graphGrow 2s ease-out;
}

@keyframes graphGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.security-bars {
        display: flex;
    align-items: end;
    gap: 8px;
    height: 40px;
}

.bar {
    flex: 1;
    background: var(--purple-400);
    border-radius: 2px;
    height: var(--height);
    animation: barGrow 1.5s ease-out;
    animation-fill-mode: both;
}

@keyframes barGrow {
    0% { height: 0; }
    100% { height: var(--height); }
}

.prediction-waves {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wave {
    width: 4px;
    height: 20px;
    background: var(--purple-400);
    border-radius: 2px;
    animation: waveFlow 2s ease-in-out infinite;
    animation-delay: var(--wave-delay);
}

@keyframes waveFlow {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Service Modules */
.service-modules {
    margin-bottom: 80px;
}

.modules-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.modules-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.module-selector {
    display: flex;
    gap: 10px;
}

.selector-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(166, 121, 211, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.selector-dot.active {
    background: var(--purple-400);
    box-shadow: 0 0 15px var(--purple-400);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-module {
    position: relative;
}

.module-frame {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid rgba(166, 121, 211, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.module-frame:hover {
    transform: translateY(-3px);
    border-color: rgba(166, 121, 211, 0.3);
    box-shadow: 0 10px 20px rgba(166, 121, 211, 0.1);
}

.frame-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid var(--purple-400);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.module-frame:hover .corner {
    opacity: 0.4;
}

.module-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.module-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(166, 121, 211, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(166, 121, 211, 0.2);
}

.icon-orbit {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--purple-400);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orbit-ring.delay-1 {
    opacity: 0;
}

.module-frame:hover .orbit-ring {
    opacity: 0.2;
}

.module-icon svg {
    color: var(--purple-400);
    filter: drop-shadow(0 0 5px rgba(166, 121, 211, 0.2));
}

.module-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-chip {
    background: rgba(166, 121, 211, 0.15);
    color: var(--purple-300);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(166, 121, 211, 0.2);
    transition: all 0.3s ease;
}

.module-frame:hover .feature-chip {
    background: rgba(166, 121, 211, 0.2);
    color: var(--purple-200);
    border-color: rgba(166, 121, 211, 0.3);
}



/* Command Action Center */
.command-action {
    position: relative;
    z-index: 2;
}

.action-interface {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.interface-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(166, 121, 211, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.interface-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 121, 211, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple-400), transparent);
}

.panel-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-300);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.access-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.command-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.command-btn {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-frame {
    background: var(--bg-light);
    border: 2px solid var(--purple-400);
    border-radius: 15px;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.command-btn.primary .btn-frame {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
    border-color: var(--purple-500);
}

.command-btn:hover .btn-frame {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(166, 121, 211, 0.3);
}

.btn-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--purple-400);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.command-btn:hover .btn-corners {
    opacity: 0.6;
}

.btn-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.btn-energy {
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.command-btn.primary:hover .btn-energy {
    left: 100%;
}

/* Performance Display */
.performance-display {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(166, 121, 211, 0.1);
}

.display-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: center;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(166, 121, 211, 0.05);
}

.metric-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.metric-info {
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--purple-400);
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-bar {
    width: 60px;
    height: 6px;
    background: rgba(166, 121, 211, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    border-radius: 3px;
    width: var(--fill);
    animation: barFillGrow 2s ease-out;
}

@keyframes barFillGrow {
    0% { width: 0; }
    100% { width: var(--fill); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-interface {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .consultancy-section {
        padding: 80px 0;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cyber-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .interface-panel {
        padding: 30px 25px;
    }
    
    .command-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .analytics-dashboard {
        padding: 25px;
    }
    
    /* Contact Section Mobile */
    .contact-interface {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form-terminal {
        margin-top: 40px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    /* Footer Mobile - Moved to responsive.css for better organization */
}

/* Matrix Rain Background */
.consultancy-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
}

.matrix-column {
    width: 2px;
        height: 100%;
    background: linear-gradient(
        transparent 0%,
        rgba(166, 121, 211, 0.4) 10%,
        rgba(166, 121, 211, 0.2) 20%,
        transparent 100%
    );
    animation: matrixDrop var(--duration, 20s) linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0.3;
}

@keyframes matrixDrop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.digital-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.01) 49%, rgba(255, 255, 255, 0.01) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(166, 121, 211, 0.01) 49%, rgba(166, 121, 211, 0.01) 51%, transparent 52%);
    background-size: 100px 100px;
    animation: digitalScan 15s linear infinite;
}

@keyframes digitalScan {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

/* Elite Header Section */
.consultancy-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.header-content {
    animation: slideInLeft 1s ease-out;
}

/* Glitch Text Effect */
.glitch-text {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--purple-400);
    position: relative;
    margin-bottom: 1rem;
    animation: glitchEffect 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.glitch-text::before {
    color: var(--purple-600);
    animation: glitchBefore 3s infinite;
    z-index: -1;
}

.glitch-text::after {
    color: var(--purple-300);
    animation: glitchAfter 3s infinite;
    z-index: -2;
}

@keyframes glitchEffect {
    0%, 90%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitchBefore {
    0%, 90%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

@keyframes glitchAfter {
    0%, 90%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

.consultancy-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.consultancy-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Holographic Card */
.header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.holographic-card {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.holographic-card:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

.holo-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.holo-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0.3;
    animation: holoShift 4s ease-in-out infinite;
}

.layer-1 {
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation-delay: 0s;
}

.layer-2 {
    background: linear-gradient(-45deg, transparent, rgba(255, 0, 255, 0.3), transparent);
    animation-delay: -1.3s;
}

.layer-3 {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.2), transparent);
    animation-delay: -2.6s;
}

@keyframes holoShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(-3px) translateY(3px); }
    75% { transform: translateX(3px) translateY(5px); }
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.holographic-card:hover .card-content img {
    filter: saturate(1.3) contrast(1.1);
}

.expertise-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge.crypto {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.5);
}

.badge.security {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.5);
}

.badge.analysis {
    background: rgba(166, 121, 211, 0.2);
    color: var(--primary-color);
    border-color: rgba(166, 121, 211, 0.5);
}

.badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Services Showcase */
.services-showcase {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.services-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.services-title h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    margin: 0 auto;
    border-radius: 2px;
    animation: accentGlow 2s ease-in-out infinite alternate;
}

@keyframes accentGlow {
    from { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.3); }
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-column {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 121, 211, 0.05) 0%, rgba(191, 159, 225, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-column:hover::before {
    opacity: 1;
}

.service-column:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(166, 121, 211, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(166, 121, 211, 0.1);
}

.service-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(166, 121, 211, 0.2);
}

.icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--purple-400), var(--purple-600), var(--purple-300), var(--purple-400));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: iconRotate 3s linear infinite;
}

.service-column:hover .icon-glow {
    opacity: 0.8;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-icon svg {
    color: var(--purple-400);
    filter: drop-shadow(0 0 10px rgba(166, 121, 211, 0.8));
    z-index: 1;
}

.service-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(166, 121, 211, 0.5);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.feature {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '▶';
    color: var(--purple-400);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.feature:hover {
    background: rgba(166, 121, 211, 0.05);
    transform: translateX(5px);
    border-color: rgba(166, 121, 211, 0.2);
}

/* Elite Action Panel */
.consultancy-action {
    position: relative;
    z-index: 2;
}

.action-panel {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.action-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 121, 211, 0.02) 0%, rgba(191, 159, 225, 0.02) 100%);
    animation: panelPulse 4s ease-in-out infinite;
}

@keyframes panelPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.panel-content {
    position: relative;
    z-index: 1;
}

.action-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.action-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    color: #fff;
    border: none;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--purple-400), var(--purple-600), var(--purple-300), var(--purple-400));
    border-radius: 52px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: btnRotate 3s linear infinite;
}

.btn-primary:hover .btn-glow {
    opacity: 0.8;
}

@keyframes btnRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-secondary {
    background: transparent;
    color: var(--purple-400);
    border: 2px solid rgba(166, 121, 211, 0.5);
}

.btn-secondary:hover {
    background: rgba(166, 121, 211, 0.1);
    border-color: rgba(166, 121, 211, 0.8);
    transform: translateY(-2px);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.panel-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.metric-card:hover {
    transform: scale(1.05);
    border-color: rgba(166, 121, 211, 0.3);
    background: rgba(166, 121, 211, 0.05);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(166, 121, 211, 0.5);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.metric-sparkle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: var(--purple-400);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.expertise-section {
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(10px);
}

/* About Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    animation: slideInLeft 1s ease-out;
}

.about-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    overflow: hidden;
}

.about-title span {
    display: block;
    background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-600) 50%, var(--purple-500) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite, titleReveal 0.8s ease-out forwards;
    transform: translateY(100%);
}

.title-line-1 { animation-delay: 0.2s; }
.title-line-2 { animation-delay: 0.4s; }
.title-line-3 { animation-delay: 0.6s; }

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleReveal {
    to { transform: translateY(0); }
}

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

.about-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

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

/* Visual Orb */
.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.visual-orb {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-top-color: rgba(166, 121, 211, 0.6);
    border-right-color: rgba(166, 121, 211, 0.3);
    animation-duration: 20s;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-top-color: rgba(191, 159, 225, 0.6);
    border-left-color: rgba(191, 159, 225, 0.3);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-top-color: rgba(166, 121, 211, 0.8);
    border-bottom-color: rgba(191, 159, 225, 0.4);
    animation-duration: 10s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orb-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(166, 121, 211, 0.3) 0%, rgba(191, 159, 225, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 50px rgba(166, 121, 211, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(166, 121, 211, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 80px rgba(166, 121, 211, 0.5); }
}

.orb-icon {
    font-size: 3rem;
    color: var(--purple-400);
    font-weight: bold;
    text-shadow: 0 0 20px rgba(166, 121, 211, 0.8);
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    from { text-shadow: 0 0 20px rgba(166, 121, 211, 0.8); }
    to { text-shadow: 0 0 30px rgba(166, 121, 211, 1), 0 0 40px rgba(191, 159, 225, 0.5); }
}

/* Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Story Section */
.about-story {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 121, 211, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-story:hover::before {
    opacity: 1;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(166, 121, 211, 0.2), rgba(191, 159, 225, 0.2));
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(166, 121, 211, 0.3);
}

.about-story h2 {
        font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-content p {
        font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

.metric {
        text-align: center;
    position: relative;
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.metric-suffix {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
    margin-left: 0.2rem;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Features Section */
.about-features {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 2.5rem;
    position: relative;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 121, 211, 0.03) 0%, rgba(255, 107, 107, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(166, 121, 211, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(166, 121, 211, 0.2), rgba(191, 159, 225, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(166, 121, 211, 0.4));
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 400px;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr;
}

.consultancy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: translateX(0);
}

.consultancy-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.consultancy-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.consultancy-content li {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.consultancy-image {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateX(0);
}

.consultancy-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

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

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.expertise-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Future Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--background) 25%, var(--bg-medium) 50%, var(--bg-dark) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--purple-400);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    opacity: 0.3;
}

.contact-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 98%, var(--purple-400) 99%, transparent 100%) 0 0 / 60px 60px,
        linear-gradient(transparent 98%, var(--purple-400) 99%, transparent 100%) 0 0 / 60px 60px;
    opacity: 0.03;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-300);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-dot.online {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-accent {
    color: var(--purple-300);
    font-size: 0.8em;
}

.title-main {
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Contact Interface */
.contact-interface {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 2;
}

/* Contact Info Panel */
.contact-info-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(166, 121, 211, 0.1);
    backdrop-filter: blur(20px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.info-header .header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple-400), transparent);
}

.info-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-300);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(166, 121, 211, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(166, 121, 211, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(166, 121, 211, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.method-icon i {
    font-size: 1.2rem;
    color: var(--purple-400);
}

.method-info {
    flex: 1;
}

.method-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.method-value {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: none;
}

.method-value:hover {
    color: var(--purple-400);
}

.method-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-indicator.active {
    background: #00ff88;
    box-shadow: 0 0 4px #00ff88;
}

.status-indicator.optimal {
    background: var(--primary-color);
    box-shadow: 0 0 4px var(--primary-color);
}

/* Social Networks */
.social-networks {
    padding-top: 30px;
    border-top: 1px solid rgba(166, 121, 211, 0.1);
}

.networks-header {
    margin-bottom: 20px;
}

.networks-header span {
    font-size: 0.9rem;
    color: var(--purple-300);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.network-links {
    display: flex;
    gap: 15px;
}

.network-link {
    text-decoration: none;
}

.link-frame {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(166, 121, 211, 0.1);
    border: 1px solid rgba(166, 121, 211, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.link-frame:hover {
    background: rgba(166, 121, 211, 0.2);
    border-color: rgba(166, 121, 211, 0.4);
}

.link-frame i {
    font-size: 1.1rem;
    color: var(--purple-400);
}

.link-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Contact Form Terminal */
.contact-form-terminal {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(166, 121, 211, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.terminal-header {
    background: rgba(166, 121, 211, 0.05);
    padding: 15px 25px;
    border-bottom: 1px solid rgba(166, 121, 211, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.minimize {
    background: #ffbd2e;
}

.control-dot.maximize {
    background: #28ca42;
}

.control-dot.close {
    background: #ff5f56;
}

.terminal-title {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--purple-300);
    font-weight: 600;
}

.terminal-status {
    display: flex;
    align-items: center;
}

.encryption-indicator {
    font-size: 0.8rem;
    color: #00ff88;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.form-field {
    margin-bottom: 30px;
    position: relative;
}

.field-label {
    display: block;
        font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(166, 121, 211, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--purple-400);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(166, 121, 211, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-field select option {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
}



/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.submit-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-frame {
    position: relative;
    background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
    border: 2px solid var(--purple-400);
    border-radius: 15px;
    padding: 15px 40px;
    overflow: hidden;
}

.btn-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(166, 121, 211, 0.3);
}



.btn-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}



.transmission-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.status-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.status-bars {
    display: flex;
    gap: 4px;
}

.status-bar {
    width: 16px;
    height: 3px;
    background: rgba(166, 121, 211, 0.5);
    border-radius: 2px;
}

/* Modern Responsive Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--background) 100%);
    border-top: 1px solid rgba(166, 121, 211, 0.1);
    padding: 60px 0 20px;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 40px auto;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.brand-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 25px auto;
    text-align: center;
    max-width: 500px;
}

.brand-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-item i {
    width: 16px;
    color: var(--purple-400);
    font-size: 0.9rem;
}

/* Footer Navigation */
.footer-navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: none;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
    padding-bottom: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: none;
    transition: color 0.3s ease;
}

/* Footer Middle Section */
.footer-middle {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px 0;
}

.newsletter-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--purple-400);
    box-shadow: 0 0 0 2px rgba(166, 121, 211, 0.2);
}

.newsletter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
        font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 121, 211, 0.3);
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--purple-400);
    border-color: var(--purple-400);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 121, 211, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--purple-400);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design - Moved to responsive.css for better organization */

/* Payment Page Styles */
.payment-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--background) 100%);
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(166, 121, 211, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(166, 121, 211, 0.05) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(166, 121, 211, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(166, 121, 211, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(166, 121, 211, 0.1);
    border: 1px solid rgba(166, 121, 211, 0.2);
    border-radius: 20px;
    color: var(--purple-400);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.title-accent {
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 0.7em;
    margin-bottom: 5px;
}

.title-main {
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.payment-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--purple-400);
    font-size: 1.1rem;
}

/* Payment Section */
.payment-section {
    background: var(--background);
    padding: 80px 0;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Payment Info */
.payment-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(166, 121, 211, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.card-title i {
    color: var(--purple-400);
    font-size: 1.2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-list i {
    color: var(--purple-400);
    font-size: 0.9rem;
    width: 16px;
}

.security-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(166, 121, 211, 0.05);
    border-radius: 16px;
    padding: 25px;
}

.security-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.security-title i {
    color: var(--purple-400);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.security-item i {
    color: var(--purple-400);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
}

.security-item div {
    flex: 1;
}

.security-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.security-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Payment Widget */
.payment-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(166, 121, 211, 0.1);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.widget-header {
    text-align: center;
    margin-bottom: 25px;
}

.widget-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px 0;
}

.widget-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.widget-frame {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(166, 121, 211, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.widget-frame iframe {
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
}

.widget-fallback {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.payment-support {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-support p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.payment-support a {
    color: var(--purple-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.payment-support a:hover {
    color: var(--purple-300);
}

/* Status Messages */
.status-message {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(166, 121, 211, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.95rem;
}

.status-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.status-message.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.confirmation-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.confirmation-message i {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.confirmation-message h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #86efac;
    margin: 0 0 10px 0;
}

.confirmation-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.hidden {
    display: none;
}

/* Payment Page Responsive Design */
@media (max-width: 1200px) {
    .payment-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .payment-features {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .payment-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .payment-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .payment-section {
        padding: 60px 0;
    }
    
    .payment-layout {
        gap: 30px;
    }
    
    .info-card,
    .security-info,
    .widget-container {
        padding: 20px;
    }
    
    .widget-frame iframe {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .payment-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 0.8em;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .payment-section {
        padding: 40px 0;
    }
    
    .info-card,
    .security-info,
    .widget-container {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .widget-frame {
        padding: 10px;
    }
    
    .widget-frame iframe {
        min-height: 450px;
    }
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(166, 121, 211, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 121, 211, 0.4);
}

.subscribe-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ee5a24 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.subscribe-button:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-navbar {
        min-width: 0;
        padding: 12px 25px;
    }
    
    .floating-navbar .nav-links {
        gap: 15px;
    }
    
    .floating-navbar .nav-links li a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .floating-navbar .cta-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .floating-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        padding: 10px;
        border-radius: 0;
        background: rgba(34, 34, 34, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        margin: 0;
        transform: none !important;
        display: flex !important;
        opacity: 1 !important;
        z-index: 9999;
    }

    .floating-navbar .nav-container {
        width: 100%;
        display: flex;
        gap: 15px;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }

    /* Hide desktop navigation on mobile */
    .floating-navbar .nav-links {
        display: none;
    }

    /* Show hamburger menu on mobile */
    .floating-navbar .hamburger {
    display: flex;
        margin-left: auto;
        z-index: 10001;
        width: 44px;
        height: 44px;
    align-items: center;
    justify-content: center;
        background: rgba(166, 121, 211, 0.2);
        border-radius: 4px;
        border: 1px solid rgba(166, 121, 211, 0.4);
        box-shadow: 0 2px 10px rgba(166, 121, 211, 0.2);
    }

    /* Mobile navigation overlay */
    .floating-navbar .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(34, 34, 34, 0.98) 0%, 
            rgba(20, 20, 20, 0.98) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 10000;
        padding: 80px 20px 40px;
        animation: mobileMenuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .floating-navbar .nav-links.mobile-active {
        display: flex !important;
    }

    .floating-navbar .nav-links.mobile-active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 80%, rgba(166, 121, 211, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    @keyframes mobileMenuSlideIn {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .floating-navbar .nav-links.mobile-active li {
        width: 100%;
        max-width: 320px;
        list-style: none;
        margin: 0;
        opacity: 0;
        animation: menuItemFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .floating-navbar .nav-links.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
    .floating-navbar .nav-links.mobile-active li:nth-child(2) { animation-delay: 0.15s; }
    .floating-navbar .nav-links.mobile-active li:nth-child(3) { animation-delay: 0.2s; }
    .floating-navbar .nav-links.mobile-active li:nth-child(4) { animation-delay: 0.25s; }
    .floating-navbar .nav-links.mobile-active li:nth-child(5) { animation-delay: 0.3s; }
    .floating-navbar .nav-links.mobile-active li:nth-child(6) { animation-delay: 0.35s; }

    @keyframes menuItemFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .floating-navbar .nav-links.mobile-active li a {
        width: 100%;
        text-align: center;
        padding: 20px 24px;
    font-size: 1.2rem;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(166, 121, 211, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        text-decoration: none;
        color: var(--text-color);
        font-weight: 600;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-bottom: 5px;
    }

    .floating-navbar .nav-links.mobile-active li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .floating-navbar .nav-links.mobile-active li a:hover::before {
        left: 100%;
    }
    
    .floating-navbar .nav-links.mobile-active li a:hover,
    .floating-navbar .nav-links.mobile-active li a:active {
        background: rgba(166, 121, 211, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(166, 121, 211, 0.3);
        border-color: rgba(166, 121, 211, 0.4);
        color: var(--primary-color);
    }
    
    .floating-navbar .nav-links.mobile-active li a:active {
        transform: translateY(-1px) scale(0.98);
        transition: all 0.1s ease;
    }
    
    .floating-navbar .nav-links.mobile-active li a.active {
        background: rgba(166, 121, 211, 0.15);
        border-color: var(--primary-color);
        color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(166, 121, 211, 0.2);
    }

    /* CTA button styling in mobile menu */
    .floating-navbar .nav-links.mobile-active li a.cta-button {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        border: none;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(166, 121, 211, 0.3);
    }

    .floating-navbar .nav-links.mobile-active li a.cta-button:hover {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 35px rgba(166, 121, 211, 0.4);
    }
    
    .floating-navbar .nav-links.mobile-active li a.subscribe-button {
        background: linear-gradient(135deg, var(--accent-color) 0%, #ee5a24 100%);
        color: white;
        border: none;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    }

    .floating-navbar .nav-links.mobile-active li a.subscribe-button:hover {
        background: linear-gradient(135deg, #ee5a24 0%, var(--accent-color) 100%);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    }

    .hero {
        padding: 80px 20px 60px;
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .jai-capital-title {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-main-heading {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Modern About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-main-card,
    .about-expertise-card,
    .about-stats-card,
    .about-image-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .image-container {
        height: 250px;
    }
    
    .about-content,
    .consultancy-content {
        order: 1;
    }
    
    .consultancy-image {
        order: 2;
    }
    
    .about-section,
    .consultancy-section,
    .expertise-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .consultancy-content p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .consultancy-content ul {
        text-align: left;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 2rem;
    }
    
    .expertise-card {
        padding: 30px 20px;
    }
    
    .expertise-card h3 {
        font-size: 1.3rem;
    }
    
    .expertise-card p {
        font-size: 0.95rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .contact-info p {
        text-align: center;
    }
    
    .contact-method {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    h2::after {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .floating-navbar {
        top: 10px;
        left: 15px;
        right: 15px;
        padding: 10px 15px;
    }
    
    .floating-navbar .nav-links.mobile-active {
        padding: 15px;
        gap: 12px;
    }
    
    .floating-navbar .nav-links.mobile-active li {
        max-width: 280px;
    }
    
    .floating-navbar .nav-links.mobile-active li a {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 100px 15px 60px;
        min-height: 70vh;
    }
    
    .jai-capital-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-main-heading {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .content-wrapper {
        gap: 30px;
    }
    
    /* Modern About Section Small Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-main-card,
    .about-expertise-card,
    .about-stats-card,
    .about-image-card {
        padding: 1.5rem;
    }
    
    .about-grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
    }
    
    .image-container {
        height: 200px;
    }
    
    .consultancy-content p {
        font-size: 1rem;
    }
    
    .about-section,
    .consultancy-section,
    .expertise-section,
    .contact-section {
        padding: 60px 0;
    }

    .expertise-grid {
        gap: 20px;
    }
    
    .expertise-card {
        padding: 25px 15px;
    }
    
    .expertise-card h3 {
        font-size: 1.2rem;
    }
    
    .expertise-card p {
        font-size: 0.9rem;
    }

    .contact-content {
        gap: 30px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .container {
        width: 98%;
        padding: 0 5px;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    h2::after {
        width: 50px;
        height: 2px;
    }
}
