/* ======================================
   ABSOLUTELY STUNNING PREMIUM CSS
   Advanced Animations & Effects
   ====================================== */

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* === GLASS MORPHISM === */
.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

/* === ANIMATED LOGO === */
.logo-image {
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.5));
}

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

.logo-icon-animated {
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.4));
}

@keyframes logoFloatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.gradient-text-animated {
    background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* === NAVIGATION LINKS === */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* === HAMBURGER MENU === */
.hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #1e3a8a;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 10px;
}

.hamburger-icon span:nth-child(3) {
    top: 20px;
}

/* === ANIMATED MESH GRADIENT === */
.animated-mesh-gradient {
    background: linear-gradient(45deg, 
        rgba(30, 58, 138, 0.8), 
        rgba(37, 99, 235, 0.8), 
        rgba(59, 130, 246, 0.8),
        rgba(96, 165, 250, 0.8));
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
}

@keyframes meshGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* === MORPHING BLOBS === */
.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    filter: blur(40px);
    animation: blobMorph 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

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

/* === TEXT REVEAL ANIMATION === */
.text-reveal {
    display: inline-block;
    animation: textReveal 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.gradient-text-hero {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ea580c);
    background-size: 200% 200%;
    animation: gradientShine 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}

.gradient-text-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 200%;
    animation: gradientShine 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.8));
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
}

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

/* === HERO BUTTONS === */
.cta-button-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 255, 255, 0.5);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.cta-button-hero:hover .button-glow {
    width: 400px;
    height: 400px;
}

.cta-button-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-outline-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

/* === ICON ANIMATIONS === */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.icon-float {
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.arrow-slide {
    animation: arrowSlide 1s ease-in-out infinite;
}

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

.bounce-infinite {
    animation: bounceInfinite 1.5s ease-in-out infinite;
}

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

.icon-spin-slow {
    animation: iconSpinSlow 10s linear infinite;
}

/* === STATS CARDS === */
.stats-card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stats-card-glass:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.stats-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 16px;
}

.stats-icon {
    font-size: 2.5rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stats-sparkle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: white;
    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); }
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

.mouse-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 2s ease-in-out infinite;
}

@keyframes wheel {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 15px); opacity: 0.3; }
}

.arrow-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arrow-1, .arrow-2 {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

.arrow-1 {
    animation: arrow1 2s ease-in-out infinite;
}

.arrow-2 {
    animation: arrow2 2s ease-in-out infinite;
}

@keyframes arrow1 {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(0); }
    50% { opacity: 1; transform: rotate(45deg) translateY(5px); }
}

@keyframes arrow2 {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(0); }
    50% { opacity: 1; transform: rotate(45deg) translateY(5px); }
    animation-delay: 0.3s;
}

/* === FLOATING ICONS BACKGROUND === */
.floating-icons-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.05;
}

.floating-icons-bg i {
    position: absolute;
    font-size: 80px;
    color: #3b82f6;
    animation: floatIcon 20s ease-in-out infinite;
}

.floating-icons-bg i:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons-bg i:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

.floating-icons-bg i:nth-child(3) {
    top: 30%;
    right: 20%;
    animation-delay: 8s;
}

.floating-icons-bg i:nth-child(4) {
    bottom: 20%;
    left: 60%;
    animation-delay: 12s;
}

.floating-icons-bg i:nth-child(5) {
    top: 70%;
    left: 30%;
    animation-delay: 16s;
}

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

/* === SECTION BADGES === */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3b82f6;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.section-badge-light {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.animated-icon {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: linear-gradient(135deg, #1e40af, #3b82f6, #8b5cf6);
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* === SERVICE CARDS === */
.service-card-premium {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card-premium:hover .card-glow-effect {
    opacity: 1;
}

.icon-container-3d {
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.service-card-premium:hover .icon-container-3d {
    transform: translateY(-10px) rotateY(10deg) rotateX(10deg);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

@keyframes iconPulseService {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.icon-pulse {
    animation: iconPulseService 2s ease-in-out infinite;
}

/* === FEATURE GRID === */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.icon-rotate {
    animation: iconRotate 3s linear infinite;
}

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

.icon-bounce {
    animation: iconBounceAlt 1.5s ease-in-out infinite;
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.icon-wiggle {
    animation: iconWiggle 2s ease-in-out infinite;
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.icon-shake {
    animation: iconShake 2s ease-in-out infinite;
}

/* === SERVICE CTA BUTTON === */
.service-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.service-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

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

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

/* === PARALLAX LAYERS === */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.layer-1 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="700" r="70" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: parallax1 40s linear infinite;
}

.layer-2 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="500" cy="300" r="60" fill="rgba(255,255,255,0.06)"/><circle cx="200" cy="600" r="80" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: parallax2 60s linear infinite;
}

.layer-3 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="700" cy="400" r="55" fill="rgba(255,255,255,0.04)"/><circle cx="300" cy="800" r="65" fill="rgba(255,255,255,0.03)"/></svg>');
    animation: parallax3 80s linear infinite;
}

@keyframes parallax1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

@keyframes parallax2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

@keyframes parallax3 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

/* === MISSION CARDS === */
.mission-feature-card {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.mission-feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    flex-shrink: 0;
}

.card-shine-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shineSlide 5s ease-in-out infinite;
}

@keyframes shineSlide {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.why-choose-item {
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateX(10px);
}

.check-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.5rem;
}

.cta-button-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 40px;
    background: white;
    color: #1e40af;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.cta-button-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5);
}

/* === TESTIMONIALS === */
.testimonial-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.testimonial-card-premium {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.icon-star-pulse {
    color: #fbbf24;
    animation: starPulse 2s ease-in-out infinite;
}

.icon-star-pulse:nth-child(1) { animation-delay: 0s; }
.icon-star-pulse:nth-child(2) { animation-delay: 0.2s; }
.icon-star-pulse:nth-child(3) { animation-delay: 0.4s; }
.icon-star-pulse:nth-child(4) { animation-delay: 0.6s; }
.icon-star-pulse:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(59, 130, 246, 0.08);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* === CONTACT SECTION === */
.contact-bg-animated {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2), transparent),
                radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.2), transparent);
    animation: contactBg 10s ease-in-out infinite;
}

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

.premium-input {
    width: 100%;
    padding: 18px 48px 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.premium-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Compact inputs for login page */
.premium-input-compact {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.premium-input-compact::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.premium-input-compact:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.cta-button-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    color: #1e40af;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.cta-button-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5);
}

/* Compact button for login page */
.cta-button-submit-compact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    color: #1e40af;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.cta-button-submit-compact:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5);
}

.contact-info-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 1.5rem;
}

@keyframes iconRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.icon-ring {
    animation: iconRing 2s ease-in-out infinite;
}

/* === FOOTER === */
.footer-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(59, 130, 246, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(59, 130, 246, 0.05) 87.5%),
        linear-gradient(150deg, rgba(59, 130, 246, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(59, 130, 246, 0.05) 87.5%);
    background-size: 80px 140px;
}

.footer-logo-image {
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

/* === GLOW EFFECTS === */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.5);
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 1;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .blob {
        width: 300px !important;
        height: 300px !important;
    }
    
    .service-card-premium {
        padding: 32px;
    }
    
    .glass-card-premium {
        padding: 32px !important;
    }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}
