/* INA Internet Group - Main Stylesheet */
/* ===================================== */

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

:root {
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #121829;
    --accent-cyan: #00f5ff;
    --accent-magenta: #ff0080;
    --accent-yellow: #ffd700;
    --accent-lime: #39ff14;
    --accent-purple: #a855f7;
    --accent-orange: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Background Effects */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s ease-in-out infinite;
    box-shadow: 0 0 10px currentColor;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translate3d(100px, -150px, 50px) scale(1.5);
        opacity: 0.6;
    }
    50% { 
        transform: translate3d(-80px, -300px, 100px) scale(0.8);
        opacity: 0.3;
    }
    75% { 
        transform: translate3d(150px, -200px, 25px) scale(1.2);
        opacity: 0.7;
    }
}

.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blobMorph 20s ease-in-out infinite;
}

.blob1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-lime));
    bottom: 15%;
    right: 10%;
    animation-delay: -7s;
}

.blob3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes blobMorph {
    0%, 100% { 
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(100px, -100px) rotate(90deg) scale(1.2);
    }
    50% { 
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(-80px, 50px) rotate(180deg) scale(0.9);
    }
    75% { 
        border-radius: 70% 30% 40% 60% / 40% 70% 50% 30%;
        transform: translate(120px, 80px) rotate(270deg) scale(1.1);
    }
}

.magnetic-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.magnetic-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    width: 50px;
    height: 50px;
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--accent-magenta);
}

.cursor-hover::before {
    background: var(--accent-magenta);
}

.section-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.1;
}

.decoration-top-left {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--accent-cyan), transparent);
    animation: decorationPulse 8s ease-in-out infinite;
}

.decoration-bottom-right {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-magenta), transparent);
    animation: decorationPulse 8s ease-in-out infinite 4s;
}

@keyframes decorationPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.5); opacity: 0.2; }
}

.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-cta-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.floating-cta-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 15px 60px rgba(0, 245, 255, 0.6);
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta), var(--accent-yellow));
    z-index: 9998;
    transition: width 0.1s ease-out;
}

.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
    animation: meshFlow 15s ease-in-out infinite;
}

@keyframes meshFlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.spotlight {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: all 0.3s ease;
    mix-blend-mode: screen;
}

/* Navigation - UPDATED WITH LARGER LOGO */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    backdrop-filter: blur(30px) saturate(180%);
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid rgba(0, 245, 255, 0.15);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 12px 60px;
    background: rgba(10, 14, 26, 0.98);
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10001;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10003;
}

/* LOGO SIZE INCREASED FROM 55px TO 70px */
.logo-image {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.5);
    position: relative;
    z-index: 10003;
    overflow: hidden;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.logo-image::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-magenta), var(--accent-yellow), var(--accent-cyan));
    background-size: 300% 300%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 3s linear infinite;
}

.logo-image:hover::after {
    opacity: 1;
}

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

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 45px rgba(0, 245, 255, 0.7);
}

.logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(0, 245, 255, 0.8),
        0 0 40px rgba(0, 245, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10003;
}

.logo-text::before {
    content: 'INA INTERNET GROUP';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-cyan);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    position: relative;
    z-index: 10002;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::before {
    width: 100%;
}

/* HAMBURGER MENU - FIXED */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10004;
    padding: 10px;
    background: none;
    border: none;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--accent-magenta);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: var(--accent-magenta);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 100px;
    position: relative;
    overflow: hidden;
}

.hero-3d-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 245, 255, 0.2), rgba(255, 0, 128, 0.1));
    filter: blur(100px);
    animation: sphere3D 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sphere3D {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    33% { transform: translate(-30%, -60%) scale(1.3) rotate(120deg); }
    66% { transform: translate(-70%, -40%) scale(0.9) rotate(240deg); }
}

.hero-content {
    max-width: 1400px;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 14px 35px;
    background: rgba(0, 245, 255, 0.08);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 40px;
    animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 25%, var(--accent-magenta) 50%, var(--accent-yellow) 75%, var(--accent-lime) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -6px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both, gradientFlow 8s ease infinite;
    text-transform: uppercase;
    filter: drop-shadow(0 0 40px rgba(0, 245, 255, 0.3));
    position: relative;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 400;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-block;
    padding: 22px 55px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    color: white;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.4);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 245, 255, 0.6);
}

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

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

/* Sections */
section {
    padding: 140px 60px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 0, 128, 0.08);
    border: 2px solid rgba(255, 0, 128, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-magenta);
    margin-bottom: 25px;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.about-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.04), rgba(255, 0, 128, 0.04));
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 40px;
    padding: 90px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    width: 100%;
    box-sizing: border-box;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-magenta), var(--accent-yellow), var(--accent-lime));
    background-size: 300% 300%;
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientShift 8s ease infinite;
}

.about-card:hover::before {
    opacity: 0.3;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 28px;
}

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

.stat-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(0, 245, 255, 0.15);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    border-radius: 50%;
}

.stat-box:hover::before {
    width: 300px;
    height: 300px;
}

.stat-box:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 60px rgba(0, 245, 255, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px currentColor);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.stat-box:hover .stat-icon {
    transform: scale(1.3) rotate(360deg);
}

.stat-number {
    font-family: 'Righteous', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.stat-number.counting {
    animation: numberPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes numberPop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* CSR Section */
.csr-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.csr-card {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.06), rgba(168, 85, 247, 0.06));
    backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 0, 128, 0.3);
    border-radius: 50px;
    padding: 90px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.angel-logo {
    width: 220px;
    height: 220px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(255, 0, 128, 0.5);
    animation: angelPulse 4s ease-in-out infinite;
}

@keyframes angelPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 25px 80px rgba(255, 0, 128, 0.5);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 30px 100px rgba(255, 0, 128, 0.7);
    }
}

.angel-logo::before,
.angel-logo::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 3px solid var(--accent-magenta);
    opacity: 0.6;
}

.angel-logo::before {
    animation: ripple 3s ease-out infinite;
}

.angel-logo::after {
    animation: ripple 3s ease-out infinite 1.5s;
}

@keyframes ripple {
    0% { 
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1.4);
        opacity: 0;
    }
}

.angel-logo img {
    width: 65%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.csr-content h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.csr-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.csr-btn {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-purple));
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 50px rgba(255, 0, 128, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.csr-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.csr-btn:hover::before {
    width: 300px;
    height: 300px;
}

.csr-btn:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 25px 70px rgba(255, 0, 128, 0.6);
}

/* Entities Grid */
.entities-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 100px;
    width: 100%;
}

.entity-card {
    background: rgba(18, 24, 41, 0.7);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 245, 255, 0.15);
    border-radius: 30px;
    padding: 50px 40px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.entity-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 245, 255, 0.2) 60deg, transparent 120deg);
    opacity: 0;
    transition: all 0.6s ease;
}

.entity-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.entity-card:hover::before {
    opacity: 1;
    animation: entityRotate 4s linear infinite;
}

.entity-card:hover::after {
    opacity: 1;
    animation: holographicShine 2s ease-in-out infinite;
}

@keyframes holographicShine {
    0% { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}

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

.entity-card:hover {
    transform: translateY(-18px) scale(1.03);
    border-color: var(--accent-cyan);
    box-shadow: 
        0 35px 80px rgba(0, 245, 255, 0.3),
        inset 0 0 60px rgba(0, 245, 255, 0.05);
}

.entity-logo {
    width: 130px;
    height: 130px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(255, 0, 128, 0.15));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(0, 245, 255, 0.3);
    overflow: hidden;
}

.entity-card:hover .entity-logo {
    transform: scale(1.15) rotateZ(5deg);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.5);
}

.entity-logo img {
    width: 75%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.entity-card:hover .entity-logo img {
    transform: scale(1.1);
}

/* Unique gradients for each entity */
.entity-card:nth-child(1) .entity-logo { 
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2)); 
    border-color: #3b82f6; 
}
.entity-card:nth-child(2) .entity-logo { 
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 179, 8, 0.2)); 
    border-color: #f97316; 
}
.entity-card:nth-child(3) .entity-logo { 
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.2)); 
    border-color: #14b8a6; 
}
.entity-card:nth-child(4) .entity-logo { 
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(192, 132, 252, 0.2)); 
    border-color: #a855f7; 
}
.entity-card:nth-child(5) .entity-logo { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.2)); 
    border-color: #10b981; 
}
.entity-card:nth-child(6) .entity-logo { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 114, 182, 0.2)); 
    border-color: #ec4899; 
}
.entity-card:nth-child(7) .entity-logo { 
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(252, 165, 165, 0.2)); 
    border-color: #fb923c; 
}
.entity-card:nth-child(8) .entity-logo { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.2)); 
    border-color: #8b5cf6; 
}
.entity-card:nth-child(9) .entity-logo { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2)); 
    border-color: #ec4899; 
}
.entity-card:nth-child(10) .entity-logo { 
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2)); 
    border-color: #3b82f6; 
}
.entity-card:nth-child(11) .entity-logo { 
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2)); 
    border-color: #ef4444; 
}
.entity-card:nth-child(12) .entity-logo { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2)); 
    border-color: #10b981; 
}

.entity-industry {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    text-align: center;
}

.entity-name {
    font-family: 'Righteous', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 22px;
    text-align: center;
    color: white;
    letter-spacing: 0.5px;
}

.entity-url {
    display: block;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.entity-card:hover .entity-url {
    color: var(--accent-cyan);
}

/* Locations */
.locations-container {
    max-width: 1600px;
    margin: 100px auto 0;
    display: grid;
    gap: 50px;
    width: 100%;
    padding: 0 20px;
}

.location-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.04), rgba(255, 0, 128, 0.04));
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 40px;
    padding: 70px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 70px;
    align-items: start;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 30px 70px rgba(0, 245, 255, 0.25);
}

.location-flag {
    font-size: 6rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.location-card:hover .location-flag {
    transform: scale(1.15) rotateY(20deg);
}

.location-info {
    flex: 1;
}

.location-country {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 35px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.location-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.office {
    background: rgba(0, 0, 0, 0.4);
    padding: 35px;
    border-radius: 25px;
    border: 2px solid rgba(0, 245, 255, 0.15);
    transition: all 0.4s ease;
}

.office:hover {
    border-color: var(--accent-cyan);
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
}

.office-type {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-magenta);
    margin-bottom: 18px;
}

.office-address {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-style: normal;
}

/* Footer */
footer {
    padding: 120px 60px 60px;
    border-top: 2px solid rgba(0, 245, 255, 0.2);
    margin-top: 140px;
    position: relative;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.footer-logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-info {
    padding-top: 50px;
    border-top: 1px solid rgba(0, 245, 255, 0.15);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-info a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--accent-magenta);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    section {
        padding: 100px 40px;
    }

    nav {
        padding: 18px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .location-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .location-offices {
        grid-template-columns: 1fr;
    }

    .entities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .hero-title {
        letter-spacing: -4px;
    }

    .blob {
        animation: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 25px;
        background: rgba(10, 14, 26, 0.98);
    }

    nav.scrolled {
        padding: 15px 25px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    /* LOGO SIZE ON MOBILE - PROPORTIONALLY SMALLER */
    .logo-image {
        width: 50px;
        height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(10, 14, 26, 1) 0%, rgba(5, 8, 16, 1) 100%);
        backdrop-filter: blur(40px) saturate(180%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 20px;
        padding-left: 30px;
        padding-right: 30px;
        gap: 15px;
        z-index: 10002;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        flex-shrink: 0;
        margin: 0;
        background: linear-gradient(135deg, rgba(18, 24, 41, 0.95) 0%, rgba(12, 16, 28, 1) 100%);
        border: 1px solid rgba(0, 245, 255, 0.2);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links li:hover,
    .nav-links li:active {
        background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(255, 0, 128, 0.15) 100%);
        border: 1px solid rgba(0, 245, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 245, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 15px 0;
        display: block;
        width: 100%;
        letter-spacing: 1.5px;
        font-weight: 600;
    }

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 80px 25px;
    }

    .hero {
        padding: 120px 25px 80px;
    }

    .about-container,
    .csr-container,
    .entities-container,
    .locations-container,
    .footer-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }

    .about-card,
    .csr-card {
        padding: 50px 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .entities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .entity-card {
        padding: 40px 30px;
    }

    .location-card {
        padding: 50px 30px;
    }

    footer {
        padding: 80px 25px 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 25px;
    }

    .hero-title {
        letter-spacing: -3px;
    }

    .section-title {
        letter-spacing: -2px;
    }

    .floating-cta {
        bottom: 25px;
        right: 25px;
    }

    .floating-cta-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .magnetic-cursor {
        display: none;
    }

    .particle {
        width: 2px;
        height: 2px;
    }

    .entity-card:active {
        transform: translateY(-10px) scale(1.02);
    }

    .stat-box:active {
        transform: translateY(-8px) scale(1.03);
    }

    .hero-content,
    .section-header {
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 10px 25px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 8px 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .angel-logo {
        width: 160px;
        height: 160px;
    }

    .csr-content h3 {
        font-size: 2.5rem;
    }

    .entity-logo {
        width: 100px;
        height: 100px;
    }

    .entity-name {
        font-size: 1.4rem;
    }

    .location-flag {
        font-size: 4rem;
    }

    .location-country {
        font-size: 2.5rem;
    }

    .footer-logo {
        font-size: 2.5rem;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 25px 60px;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .entity-logo img,
    .angel-logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}
