/* About Page - Modern Dynamic Design */

/* CSS Variables */
:root {
    --primary-cyan: #00C2D8;
    --primary-pink: #FF2E88;
    --black: #000000;
    --white: #FFFFFF;
    --dark-bg: #0F0F15;
    --soft-gray: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #00C2D8 0%, #FF2E88 100%);
    --gradient-reverse: linear-gradient(135deg, #FF2E88 0%, #00C2D8 100%);
    --gradient-vertical: linear-gradient(180deg, #00C2D8 0%, #FF2E88 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--black);
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(15, 15, 21, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0.5rem 0;
    margin-right: 2rem;
    position: relative;
    z-index: 10;
}

.navbar.scrolled .navbar-brand {
    height: 70px;
}

.navbar-logo {
    height: 70px;
    width: auto;
    max-width: 320px;
    min-width: auto;
    object-fit: contain;
    object-position: left center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(1.5) contrast(1.8) saturate(1.3);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    z-index: 2;
}

.navbar.scrolled .navbar-logo {
    height: 65px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4)) brightness(1.6) contrast(2) saturate(1.4);
}

.navbar-brand::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 30px);
    height: calc(100% + 15px);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .navbar-brand::before {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 194, 216, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.8em;
    height: 1.8em;
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    opacity: 0.8;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link.active {
    color: var(--primary-cyan) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-cta-nav {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(0, 194, 216, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-reverse);
    transition: left 0.3s ease;
}

.btn-cta-nav:hover::before {
    left: 0;
}

.btn-cta-nav span {
    position: relative;
    z-index: 1;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 194, 216, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-login-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-login-nav:hover::before {
    left: 0;
}

.btn-login-nav span,
.btn-login-nav i {
    position: relative;
    z-index: 1;
}

.btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    border-color: transparent;
    color: var(--white);
    text-decoration: none;
}

/* Modern Hero Section */
.modern-hero {
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
    padding-top: 0;
    padding-bottom: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 194, 216, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 46, 136, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 194, 216, 0.2), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(255, 46, 136, 0.2), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes particleMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 50% 50%, 20% 80%, 80% 20%;
    }
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 15s ease-in-out infinite;
    z-index: 1;
}

.hero-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 194, 216, 0.6), transparent);
    animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 46, 136, 0.6), transparent);
    animation-delay: 5s;
}

.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 20%;
    background: radial-gradient(circle, rgba(0, 194, 216, 0.4), transparent);
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.4;
    }
}

.hero-content-wrapper-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(0, 194, 216, 0.8);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 194, 216, 0.8);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 25px rgba(0, 194, 216, 1);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title-modern {
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.title-line-1,
.title-line-3 {
    display: block;
    opacity: 0.9;
}

.title-line-2 {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text-modern {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-modern {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-stats-modern {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    width: 100%;
}

.stat-modern {
    text-align: center;
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.stat-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 194, 216, 0.2);
}

.stat-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-modern:hover::before {
    opacity: 0.1;
}

.stat-number-modern {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.stat-label-modern {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* Hero Background Pattern */
.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 194, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 46, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 1;
    animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: translate(30px, -30px);
        opacity: 0.8;
    }
}

/* Vision & Mission Modern Section */
.vision-mission-modern {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, #FAFAFA 100%);
}

.vm-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 194, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 46, 136, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.vision-side,
.mission-side {
    position: relative;
    z-index: 1;
}

.vm-card {
    padding: 5rem 4rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card-modern {
    background: linear-gradient(135deg, rgba(0, 194, 216, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-right: 3px solid var(--primary-cyan);
}

.mission-card-modern {
    background: linear-gradient(135deg, rgba(255, 46, 136, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 3px solid var(--primary-pink);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.vm-card:hover::before {
    opacity: 0.05;
}

.vm-card > * {
    position: relative;
    z-index: 1;
}

.vm-number {
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    line-height: 1;
    transition: all 0.5s ease;
}

.vm-card:hover .vm-number {
    opacity: 0.2;
    transform: scale(1.1);
}

.vm-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.vm-icon {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 194, 216, 0.3);
}

.vm-icon-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 3px solid var(--primary-cyan);
    border-radius: 30px;
    opacity: 0.3;
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 194, 216, 0.5);
}

.vm-title {
    margin-bottom: 2rem;
}

.vm-title-small {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.vm-title-large {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.vm-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.7);
}

.vm-content p {
    margin-bottom: 1.5rem;
}

.vm-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 0.8s ease;
}

.vm-card:hover .vm-accent-line {
    width: 100%;
}

/* Values Modern Section */
.values-modern-section {
    position: relative;
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark-bg);
    overflow: hidden;
}

.values-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 194, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 46, 136, 0.15) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes bgShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -50px);
    }
}

.values-header-modern {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.values-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.values-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-modern-card {
    position: relative;
    padding: 2rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.value-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.value-modern-card:hover::before {
    opacity: 0.1;
}

.value-modern-card > * {
    position: relative;
    z-index: 1;
}

.value-modern-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    transition: all 0.5s ease;
}

.value-modern-card:hover .value-modern-number {
    opacity: 0.4;
    transform: scale(1.2);
}

.value-modern-icon-wrapper {
    position: relative;
    width: 75px;
    height: 75px;
    margin-bottom: 1.5rem;
}

.value-modern-icon {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 194, 216, 0.3);
}

.value-icon-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: var(--gradient-primary);
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(15px);
    animation: iconBgPulse 3s ease-in-out infinite;
}

@keyframes iconBgPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.value-modern-card:hover .value-modern-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 50px rgba(0, 194, 216, 0.5);
}

.value-modern-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.value-modern-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.value-modern-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.value-modern-card:hover .value-modern-hover-effect {
    transform: scaleX(1);
}

.value-modern-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 194, 216, 0.3);
}

/* Why Modern Section - Compact Grid */
.why-modern-section {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #FAFAFA 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.why-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.why-title-modern {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.why-subtitle-modern {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
}

.why-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-card-modern {
    position: relative;
    padding: 2rem 1.8rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.why-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-card-modern:hover::before {
    opacity: 0.05;
}

.why-card-modern > * {
    position: relative;
    z-index: 1;
}

.why-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 50px rgba(0, 194, 216, 0.2);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 194, 216, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card-modern:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 194, 216, 0.4);
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.why-card-text {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin: 0;
}



/* Footer Styles */
.footer-modern {
    background: #0B0B0E;
    color: #EDEDED;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00E5FF, #FF2E88, transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
    image-rendering: crisp-edges;
    border-radius: 10px;
}

.footer-tagline {
    color: #9AA0A6;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    color: #EDEDED;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #FF2E88);
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-link {
    color: #9AA0A6;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #FF2E88);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-nav-link:hover {
    color: #EDEDED;
    padding-left: 15px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    text-decoration: none;
}

.footer-nav-link:hover::before {
    width: 10px;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9AA0A6;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00E5FF, #FF2E88);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.footer-social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    color: #EDEDED;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
    text-decoration: none;
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link[data-platform="tiktok"]:hover {
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.footer-social-link:hover i {
    transform: scale(1.1) rotate(5deg);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #9AA0A6;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: #9AA0A6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00E5FF;
    transition: width 0.3s ease;
}

.footer-legal-link:hover {
    color: #EDEDED;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
    text-decoration: none;
}

.footer-legal-link:hover::after {
    width: 100%;
}

.footer-legal-separator {
    color: #9AA0A6;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-nav {
        background: rgba(15, 15, 21, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .btn-cta-nav {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .hero-content-wrapper-modern {
        padding: 100px 2rem 2rem;
        width: 100%;
    }

    .vm-card {
        padding: 3rem 2rem;
        min-height: auto;
    }

    .why-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .values-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.7rem 0;
    }

    .navbar-logo {
        height: 60px;
        max-width: 280px;
        min-width: 200px;
    }

    .navbar.scrolled .navbar-logo {
        height: 55px;
    }

    .modern-hero {
        min-height: 100vh;
        height: auto;
        max-height: none;
    }

    .hero-content-wrapper-modern {
        padding: 100px 1.5rem 2rem;
        width: 100%;
    }
    
    .hero-stats-modern {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-description-modern {
        font-size: 1.1rem;
    }

    .hero-stats-modern {
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .stat-modern {
        min-width: 140px;
        padding: 1.2rem 1.5rem;
    }
    
    .stat-number-modern {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    
    .stat-label-modern {
        font-size: 0.75rem;
    }

    .stat-number-modern {
        font-size: 3rem;
    }

    .modern-hero-right {
        min-height: 400px;
    }

    .float-element {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .vm-card {
        padding: 2.5rem 1.5rem;
    }

    .vm-title-large {
        font-size: 2.5rem;
    }

    .vm-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .vm-icon {
        font-size: 3rem;
    }

    .values-modern-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .why-modern-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .why-header-modern {
        margin-bottom: 2rem;
    }
    
    .why-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-card-modern {
        padding: 1.5rem 1.5rem;
    }
    
    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .why-card-title {
        font-size: 1.1rem;
    }
    
    .why-card-text {
        font-size: 0.85rem;
    }
    
    .cta-modern-section {
        padding: 5rem 0;
    }
    
    .values-header-modern {
        margin-bottom: 2rem;
    }
    
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .value-modern-card {
        padding: 1.5rem 1.5rem;
    }
    
    .value-modern-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }
    
    .value-modern-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }
    
    .value-modern-icon {
        font-size: 1.8rem;
    }
    
    .value-modern-title {
        font-size: 1.1rem;
    }
    
    .value-modern-text {
        font-size: 0.85rem;
    }

    .values-title,
    .why-title-modern,
    .cta-title-modern {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1;
        max-width: 100%;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-nav-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-social-icons {
        gap: 0.75rem;
    }

    .footer-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-badge-modern {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .stat-number-modern {
        font-size: 2.5rem;
    }

    .vm-number {
        font-size: 5rem;
        top: 2rem;
        right: 2rem;
    }

    .vm-title-large {
        font-size: 2rem;
    }

    .value-modern-card {
        padding: 2rem 1.5rem;
    }

    .timeline-content-modern {
        padding: 2rem 1.5rem;
    }

    .btn-cta-modern {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    .footer-modern {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
