/* ============================================
   ONFLUENZOO - COMPLETE STYLESHEET
   Version 4.0 | Professional Edition with All Animations & 3D Plus
============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Blue Theme */
    --primary: #1a5fb4;
    --primary-dark: #0f4a8c;
    --primary-light: #2d7cdd;
    --secondary: #26a269;
    --accent: #f5c211;
    --accent-dark: #d4a80c;
    --chat-yellow: #ffc107;
    
    /* Neutral Colors */
    --dark: #1e1e2e;
    --dark-light: #2d2d44;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #121212 100%);
    --gradient-gold: linear-gradient(135deg, #f5c211 0%, #e0a800 100%);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 50px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Spacing */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 3.5rem;
    --text-7xl: 4rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(38, 162, 105, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

p {
    margin-bottom: var(--space-md);
    color: var(--gray);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

/* ===== CUSTOM ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--accent); }
    50% { box-shadow: 0 0 20px var(--accent); }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* NEW ANIMATIONS */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

.animate-rotate {
    animation: rotate 10s linear infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slideInUp {
    animation: slideInUp 0.6s ease forwards;
}

.animate-zoomIn {
    animation: zoomIn 0.5s ease forwards;
}

.animate-wiggle:hover {
    animation: wiggle 0.3s ease-in-out;
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(50px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

.aos-animate {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* ===== 3D PLUS SYMBOL (BLACK) ===== */
.plus-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 8px;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 5px rgba(255,255,255,0.2);
    position: relative;
    animation: plus3dRotate 3s ease-in-out infinite;
    transform-style: preserve-3d;
    margin: 0;
    transition: all 0.3s ease;
}

/* Plus Sign */
.plus-3d::before,
.plus-3d::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255,255,255,0.5);
}

/* Horizontal Line */
.plus-3d::before {
    width: 16px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
}

/* Vertical Line */
.plus-3d::after {
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, #ffffff, #e0e0e0);
}

/* 3D Animation */
@keyframes plus3dRotate {
    0% {
        transform: perspective(400px) rotateY(0deg) rotateX(0deg) scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    25% {
        transform: perspective(400px) rotateY(10deg) rotateX(5deg) scale(1.1);
        box-shadow: -5px 10px 20px rgba(0,0,0,0.4);
    }
    50% {
        transform: perspective(400px) rotateY(0deg) rotateX(10deg) scale(1.15);
        box-shadow: 0 15px 25px rgba(0,0,0,0.5);
    }
    75% {
        transform: perspective(400px) rotateY(-10deg) rotateX(5deg) scale(1.1);
        box-shadow: 5px 10px 20px rgba(0,0,0,0.4);
    }
    100% {
        transform: perspective(400px) rotateY(0deg) rotateX(0deg) scale(1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
}

/* Hover Effect - Spin */
.plus-3d:hover {
    animation: plusSpin 0.8s ease-in-out !important;
}

@keyframes plusSpin {
    0% { transform: perspective(400px) rotateY(0deg) scale(1); }
    50% { transform: perspective(400px) rotateY(180deg) scale(1.2); }
    100% { transform: perspective(400px) rotateY(360deg) scale(1); }
}

/* Navbar CTA Button */
.nav-cta .btn-primary {
    padding: 8px 18px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-chat {
    background: var(--chat-yellow);
    color: var(--dark);
    border: none;
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-chat:hover {
    background: #ffca2c;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 20px 40px;
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ===== NAVIGATION - FIXED (Like Team Page) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: rotate(360deg) scale(1.05);
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.nav-cta {
    margin-left: var(--space-md);
}

/* Mobile Menu Toggle Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition-normal);
    border-radius: var(--radius-full);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Mobile Menu Styles - FIXED */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        height: calc(100vh - 70px);
        gap: 15px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        justify-content: center;
        padding: 12px;
        font-size: 1rem;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .nav-menu a.active {
        background: var(--gradient-primary);
        color: white;
        border-radius: var(--radius-full);
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo {
        height: 40px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.hero-title {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    animation: fadeInLeft 1s ease;
}

.hero-subtitle {
    font-size: var(--text-2xl);
    color: var(--gray);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    animation: fadeInLeft 1s ease 0.2s both;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--gray);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
    transition: all var(--transition-normal);
}

.hero-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.trust-indicators {
    animation: fadeInUp 1s ease 0.8s both;
}

.trust-indicators span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.trust-indicators span:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
    color: white;
}

.trust-indicators span i {
    color: var(--primary);
    transition: color var(--transition-normal);
}

.trust-indicators span:hover i {
    color: white;
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease;
}

.floating-globe {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.globe {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    box-shadow: 
        inset 0 0 50px rgba(255, 255, 255, 0.3),
        0 0 100px rgba(26, 95, 180, 0.2);
}

.influencer-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.influencer-icon:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.influencer-icon:nth-child(2) { top: 20%; right: 10%; animation-delay: 0.5s; }
.influencer-icon:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 1s; }
.influencer-icon:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 1.5s; }
.influencer-icon:nth-child(5) { top: 40%; left: 40%; animation-delay: 2s; }

.influencer-icon:hover {
    animation: pulse 1s ease-in-out infinite;
    transform: scale(1.1);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: var(--space-xl) 0;
    background: white;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.stat-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-light);
    animation: scaleIn 0.8s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
    font-size: 30px;
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: rotateY(180deg);
    background: var(--accent);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: var(--space-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: var(--text-lg);
    color: var(--gray);
    font-weight: 500;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease;
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--space-md) auto;
    border-radius: var(--radius-full);
    animation: scaleIn 1s ease;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.step-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 1px solid transparent;
    animation: fadeInUp 0.8s ease;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    background: var(--accent);
    color: var(--dark);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
    font-size: 35px;
    transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--accent);
    color: var(--dark);
}

.step-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--dark);
    transition: color var(--transition-normal);
}

.step-card:hover h3 {
    color: var(--primary);
}

.step-card p {
    color: var(--gray);
    line-height: 1.8;
}

.step-btn {
    margin-top: var(--space-lg);
    width: 100%;
    transition: all var(--transition-normal);
}

.step-btn:hover {
    transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--space-xl) 0;
    background: white;
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease;
}

.tab-btn {
    padding: 15px 30px;
    background: var(--gray-light);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: all var(--transition-normal);
    animation: scaleIn 0.8s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: white;
    font-size: 30px;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--accent);
    color: var(--dark);
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--dark);
    transition: color var(--transition-normal);
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-content i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    display: inline-block;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.testimonial-card:hover .author-avatar {
    transform: rotate(360deg) scale(1.1);
    background: var(--accent);
    color: var(--dark);
}

.author-info h4 {
    margin-bottom: 5px;
    color: white;
    font-size: 1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.8rem;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-xl) 0;
    background: white;
    text-align: center;
}

.cta-card {
    background: var(--gradient-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: scaleIn 1s ease;
    transition: all var(--transition-normal);
}

.cta-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    color: white;
}

.cta-description {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    transition: all var(--transition-normal);
}

.cta-buttons .btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER - UPDATED with Mehndivi Empire ===== */
footer {
    background: var(--dark);
    color: white;
    padding: var(--space-xl) 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col {
    animation: fadeInUp 0.8s ease;
}

.footer-col h3 {
    color: white;
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.footer-col:hover h3::after {
    width: 100px;
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--space-md);
    transition: transform var(--transition-normal);
}

.footer-logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.footer-tagline {
    font-size: var(--text-lg);
    color: var(--accent);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
    transition: transform var(--transition-normal);
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.footer-links a:hover {
    color: white;
}

.footer-links a i {
    color: var(--primary);
    transition: transform var(--transition-normal);
    font-size: var(--text-xs);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info p {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform var(--transition-normal);
    font-size: var(--text-sm);
}

.contact-info p:hover {
    transform: translateX(5px);
    color: white;
}

.contact-info i {
    color: var(--primary);
    width: 22px;
    font-size: var(--text-sm);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-info a:hover {
    color: white;
}

.newsletter-form {
    margin-top: var(--space-lg);
}

.newsletter-input {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: var(--space-sm);
    transition: all var(--transition-normal);
    font-size: var(--text-sm);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

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

.newsletter-btn {
    width: 100%;
    padding: 12px;
    font-size: var(--text-sm);
    transition: all var(--transition-normal);
}

.newsletter-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Footer Bottom - Mehndivi Empire */
.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mehndivi-brand {
    margin-bottom: var(--space-sm);
}

.mehndivi-brand .empire-name {
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f5c211 0%, #ff9f4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.mehndivi-brand .empire-tag {
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.footer-bottom .copyright p {
    margin: 0;
    font-size: 0.7rem;
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 1000;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
    background: #25D366;
    animation-delay: 0s;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.call-btn {
    background: var(--primary);
    animation-delay: 0.2s;
}

.chat-btn {
    background: var(--accent);
    color: var(--dark);
    animation: bounce 2s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.floating-btn::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, height 0.6s;
}

.floating-btn:hover::before {
    width: 100px;
    height: 100px;
}

.floating-btn span {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.floating-btn:hover span {
    opacity: 1;
    transform: translateX(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    :root {
        --text-5xl: 2.5rem;
        --text-6xl: 3rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
        margin-bottom: var(--space-lg);
    }
    
    .floating-globe {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 576px) {
    :root {
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: var(--space-lg);
    }
    
    .features-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-col:hover h3::after {
        width: 80px;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .floating-actions {
        bottom: var(--space-sm);
        right: var(--space-sm);
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .floating-btn span {
        display: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }

.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: -10px 0 0 -10px;
}