/* ===================================
   PURE PH9 - MAIN STYLESHEET
   E-Commerce + Partner Program
   Dark Blue Primary | Cyan/Aqua Secondary
   Green CTA Highlights
   =================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Dark Blue (from logo) */
    --primary-dark: #000a6a;
    --primary: #000a6a;
    --primary-light: #002593;
    --primary-blue: #22a0de;
    
    /* Secondary Colors - Cyan/Aqua */
    --secondary: #01c0f5;
    --secondary-light: #48e1ff;
    --secondary-pale: #69f3ff;
    --secondary-bright: #3fe0ff;
    
    /* Legacy Colors (for compatibility) */
    --primary-cyan: #01c0f5;
    --primary-aqua: #48e1ff;
    --secondary-blue: #22a0de;
    --accent-teal: #69f3ff;
    --dark-blue: #000a6a;
    
    /* CTA & Highlight - Green */
    --cta-green: #6eaa00;
    --cta-green-light: #8ecc20;
    --cta-green-dark: #5a8f00;
    --highlight-green: #9edb30;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e2e8f0;
    --gray: #94a3b8;
    --dark-gray: #475569;
    --text-dark: #1e293b;
    --text-light: #64748b;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 10, 106, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 10, 106, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 10, 106, 0.2);
    --shadow-cta: 0 8px 24px rgba(110, 170, 0, 0.35);
    --shadow-cyan: 0 8px 30px rgba(1, 192, 245, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-bright) 100%);
    --gradient-cta: linear-gradient(135deg, var(--cta-green) 0%, var(--cta-green-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    --gradient-aqua: linear-gradient(135deg, #01c0f5 0%, #48e1ff 50%, #69f3ff 100%);
    --gradient-blue: linear-gradient(135deg, #002593 0%, #01c0f5 50%, #3fe0ff 100%);
    --gradient-deep: linear-gradient(180deg, #000a6a 0%, #002593 100%);
    --gradient-water: linear-gradient(135deg, #01c0f5 0%, #3fe0ff 100%);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-heading: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    
    /* Misc */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Noto Sans", Calibri, Arial, sans-serif;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 50%, #e6f7ff 100%);
    background-size: 400% 400%;
    animation: waterGradient 15s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 229, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@keyframes waterGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-blue);
}

h1 {
    font-size: 3rem;
    font-family: "Noto Sans", Calibri, Arial, sans-serif;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    font-size: 1rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== GLOBAL WHITE BOX/CARD STYLING ===== */
/* Universal card border & hover effects for all white boxes */
.card,
.product-card,
.glass-card,
.feature-box-small,
.contact-card,
.info-card,
.benefit-card,
.why-card,
.service-card,
.team-card,
.testimonial-card,
.faq-item,
.price-card,
.step-card,
.stat-box,
.about-card,
.review-card,
.order-card,
.address-card,
.payment-card,
.summary-card,
.profile-card,
.dashboard-card,
.earning-card,
.network-card,
.wallet-card,
.help-card,
.sidebar-card,
[class*="-box"],
[class*="-card"] {
    border: 2px solid rgba(1, 192, 245, 0.12) !important;
    box-shadow: 
        0 8px 32px rgba(1, 192, 245, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.card:hover,
.product-card:hover,
.glass-card:hover,
.feature-box-small:hover,
.contact-card:hover,
.info-card:hover,
.benefit-card:hover,
.why-card:hover,
.service-card:hover,
.team-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.price-card:hover,
.step-card:hover,
.stat-box:hover,
.about-card:hover,
.review-card:hover,
.order-card:hover,
.address-card:hover,
.payment-card:hover,
.summary-card:hover,
.profile-card:hover,
.dashboard-card:hover,
.earning-card:hover,
.network-card:hover,
.wallet-card:hover,
.help-card:hover,
.sidebar-card:hover,
[class*="-box"]:hover,
[class*="-card"]:hover {
    border-color: rgba(1, 192, 245, 0.4) !important;
    box-shadow: 
        0 15px 45px rgba(1, 192, 245, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-5px);
}

/* Exclude certain elements from card styling */
.nav-card,
.btn-card,
.icon-card,
.no-card-style,
.dropdown-menu-custom,
.sidebar-submenu,
.modal-card {
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ===== WATER DROPS FALLING EFFECT ===== */
.water-drops-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
    max-width: 100%;
}

.water-drop {
    position: absolute;
    top: -100px;
    animation: waterFall 8s linear infinite;
    opacity: 0.4;
}

.water-drop img {
    width: 25px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(1, 192, 245, 0.3));
}

@keyframes waterFall {
    0% {
        top: -100px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        top: 110vh;
        opacity: 0;
        transform: translateX(20px) rotate(15deg);
    }
}

/* ===== FLOATING GRAPHICS ===== */
.floating-graphics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-graphic {
    position: absolute;
    opacity: 0.08;
    animation: floatGraphic 20s ease-in-out infinite;
}

.graphic-1 {
    width: 200px;
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.graphic-2 {
    width: 180px;
    top: 60%;
    right: -40px;
    animation-delay: 5s;
    animation-direction: reverse;
}

.graphic-3 {
    width: 150px;
    bottom: 10%;
    left: 10%;
    animation-delay: 2.5s;
}

.graphic-4 {
    width: 220px;
    top: 40%;
    right: 5%;
    animation-delay: 7.5s;
    animation-direction: reverse;
}

@keyframes floatGraphic {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #ffffff 0%, #e6f7ff 50%, #d0f4ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(1, 192, 245, 0.4));
}

.preloader-logo-img.rotating {
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 8px 24px rgba(1, 192, 245, 0.4));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 16px 40px rgba(1, 192, 245, 0.7));
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.water-ripple {
    position: relative;
    width: 120px;
    height: 120px;
}

.loading-text {
    font-size: 1rem;
    color: var(--primary-cyan);
    font-weight: 600;
    margin: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo h2 {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

.preloader-logo p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== NEW MODERN HEADER STYLES ===== */

/* Mini Top Bar */
.top-bar-mini {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--secondary);
}

.email-link i {
    color: var(--secondary);
}

.top-bar-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--secondary);
}

.auth-link i {
    margin-right: 5px;
}

.top-bar-auth .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Main Header */
.main-header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(13, 40, 71, 0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    top: 0;
    box-shadow: 0 4px 30px rgba(13, 40, 71, 0.15);
}

.top-bar-mini.scrolled {
    transform: translateY(-100%);
    opacity: 0;
}

.header-water-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(79, 172, 254, 0.03) 25%, 
        rgba(79, 172, 254, 0.05) 50%, 
        rgba(79, 172, 254, 0.03) 75%, 
        transparent 100%);
    pointer-events: none;
    animation: waterShimmer 8s ease-in-out infinite;
}

@keyframes waterShimmer {
    0%, 100% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}

/* Logo Styles */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-container {
    position: relative;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(1, 192, 245, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    border-radius: 18px;
    transform: rotate(45deg);
    border: 2px solid rgba(1, 192, 245, 0.3);
    box-shadow: 
        0 8px 25px rgba(1, 192, 245, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover {
    transform: rotate(45deg) scale(1.1);
    border-color: rgba(1, 192, 245, 0.6);
    box-shadow: 
        0 12px 35px rgba(1, 192, 245, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.logo-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(1, 192, 245, 0.4) 0%, transparent 70%);
    animation: logoGlow 3s ease-in-out infinite;
    transform: rotate(0deg);
}

@keyframes logoGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(1, 192, 245, 0.5));
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.logo-wrapper:hover .logo-img {
    transform: rotate(-45deg) scale(1.1);
    filter: drop-shadow(0 6px 18px rgba(1, 192, 245, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-nav .nav-link {
    position: relative;
    padding: 10px 18px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav .nav-link span {
    position: relative;
    z-index: 1;
}

.nav-ripple {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-bright));
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.desktop-nav .nav-link:hover .nav-ripple,
.desktop-nav .nav-link.active .nav-ripple {
    width: 80%;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--primary);
    background: rgba(79, 172, 254, 0.08);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown .dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(13, 40, 71, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-menu-custom a:hover {
    background: rgba(79, 172, 254, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-menu-custom a i {
    color: var(--secondary);
    width: 20px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.btn-auth {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 40, 71, 0.2);
}

.btn-register {
    background: linear-gradient(135deg, var(--cta-green) 0%, var(--cta-green-light) 100%);
    color: white;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 106, 0.4);
    color: white;
}

/* Action Icons (Cart, Wishlist) */
.action-icon {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(79, 172, 254, 0.1);
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: visible;
}

.action-icon:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.action-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--cta-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 210, 106, 0.4);
    z-index: 10;
}

.icon-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.action-icon:hover .icon-ripple {
    opacity: 1;
    transform: scale(1.5);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(79, 172, 254, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(79, 172, 254, 0.2);
}

.toggle-line {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}

.mobile-sidebar.active {
    visibility: visible;
    pointer-events: all;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 40, 71, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar.active .sidebar-overlay {
    opacity: 1;
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(13, 40, 71, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active .sidebar-content {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(79, 172, 254, 0.1);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, transparent 100%);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sidebar-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.sidebar-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 172, 254, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: var(--secondary);
    color: white;
}

/* Sidebar Auth */
.sidebar-auth {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid rgba(79, 172, 254, 0.1);
}

.btn-sidebar-auth {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-sidebar-auth.btn-login {
    background: rgba(79, 172, 254, 0.1);
    color: var(--primary);
}

.btn-sidebar-auth.btn-login:hover {
    background: var(--primary);
    color: white;
}

.btn-sidebar-auth.btn-register {
    background: var(--cta-green);
    color: white;
}

.btn-sidebar-auth.btn-register:hover {
    background: var(--cta-green-dark);
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 15px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.sidebar-link i {
    width: 24px;
    color: var(--secondary);
    font-size: 1rem;
}

.sidebar-link .arrow {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(79, 172, 254, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.sidebar-dropdown .sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 30px;
    transition: max-height 0.3s ease;
}

.sidebar-dropdown.active .sidebar-submenu {
    max-height: 200px;
}

.sidebar-dropdown.active .arrow {
    transform: rotate(90deg);
}

.sidebar-submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 3px;
}

.sidebar-submenu a:hover {
    background: rgba(79, 172, 254, 0.08);
    color: var(--primary);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(79, 172, 254, 0.1);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, transparent 100%);
}

.sidebar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.sidebar-contact i {
    color: var(--secondary);
}

/* Header Responsive */
@media (max-width: 991px) {
    .main-header {
        top: 36px;
    }
    
    .header-inner {
        padding: 10px 0;
    }
    
    .logo-container {
        width: 45px;
        height: 45px;
    }
    
    .logo-img {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .top-bar-mini {
        padding: 6px 0;
    }
    
    .email-link {
        font-size: 0.8rem;
    }
    
    .main-header {
        top: 32px;
    }
    
    .action-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .mobile-toggle {
        width: 38px;
        height: 38px;
    }
    
    .toggle-line {
        width: 20px;
    }
}

@media (max-width: 576px) {
    .top-bar-mini {
        padding: 5px 0;
    }
    
    .email-link span {
        font-size: 0.75rem;
    }
    
    .main-header {
        top: 30px;
    }
    
    .header-inner {
        padding: 8px 0;
    }
    
    .logo-container {
        width: 40px;
        height: 40px;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .action-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .action-icon .badge {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .mobile-toggle {
        width: 36px;
        height: 36px;
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    min-height: 100vh;
    padding-top: 0; /* Hero section handles its own padding */
}

.main-content.with-padding {
    padding-top: 116px; /* Top bar (36px) + Header (80px) */
}

@media (max-width: 991px) {
    .main-content.with-padding {
        padding-top: 112px;
    }
}

@media (max-width: 768px) {
    .main-content.with-padding {
        padding-top: 102px;
    }
}

@media (max-width: 576px) {
    .main-content.with-padding {
        padding-top: 95px;
    }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--gradient-aqua);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn-primary-custom:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

.btn-secondary-custom:hover {
    background: var(--primary-cyan);
    color: white;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-aqua);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ===== CARDS ===== */
.card-custom {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    border-radius: 0;
    transition: var(--transition);
}

.card-custom:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: var(--light-gray);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-aqua);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.product-price .old-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-add-cart {
    width: 100%;
    background: var(--gradient-aqua);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== ENHANCED WHITE CARDS ===== */
.card,
.product-card,
.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(1, 192, 245, 0.12);
    border-radius: var(--border-radius);
    box-shadow: 
        0 10px 40px rgba(1, 192, 245, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before,
.product-card::before,
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(1, 192, 245, 0.08),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.card:hover::before,
.product-card:hover::before,
.glass-card:hover::before {
    left: 100%;
}

.card:hover,
.product-card:hover,
.glass-card:hover {
    border-color: rgba(1, 192, 245, 0.35);
    box-shadow: 
        0 20px 50px rgba(1, 192, 245, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-8px);
}

/* Card shine effect on hover */
.card::after,
.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(1, 192, 245, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover::after,
.product-card:hover::after {
    opacity: 1;
}

/* ===== FEATURE BOX SMALL ===== */
.feature-box-small {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(1, 192, 245, 0.12);
    box-shadow: 
        0 8px 30px rgba(1, 192, 245, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(1, 192, 245, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-box-small:hover::before {
    left: 100%;
}

.feature-box-small:hover {
    border-color: var(--primary-cyan);
    box-shadow: 
        0 15px 40px rgba(1, 192, 245, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-8px);
}

.feature-box-small .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(1, 192, 245, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-cyan);
    border: 2px solid rgba(1, 192, 245, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.feature-box-small:hover .feature-icon {
    background: var(--gradient-aqua);
    color: white;
    border-color: transparent;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(1, 192, 245, 0.4);
}

.feature-box-small h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.feature-box-small p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ===== SECTION GRAPHICS DECORATION ===== */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: url('../images/graphic1.png') no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.section:nth-child(odd)::before {
    top: 20px;
    left: -30px;
}

.section:nth-child(even)::before {
    top: 20px;
    right: -30px;
    background-image: url('../images/graphic2.png');
}

/* Responsive - hide on small screens */
@media (max-width: 767.98px) {
    .water-drops-container {
        display: none !important;
    }
    
    .floating-graphics {
        display: none !important;
    }
    
    .section::before {
        display: none;
    }
    
    /* Prevent horizontal overflow on mobile */
    .hero-slider-section,
    .hero-slide,
    .container,
    section,
    .row {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #000a6a 0%, #002593 100%);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.3;
}

.footer-brand .footer-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(1, 192, 245, 0.4));
    padding: 15px;
    background: linear-gradient(135deg, rgba(1, 192, 245, 0.15) 0%, rgba(0, 123, 255, 0.15) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    border: 2px solid rgba(1, 192, 245, 0.3);
    transition: all 0.4s ease;
}

.footer-brand .footer-logo:hover {
    transform: rotate(45deg) scale(1.1);
    border-color: rgba(1, 192, 245, 0.5);
    box-shadow: 0 10px 30px rgba(1, 192, 245, 0.3);
}

/* Footer Logo Diamond Design */
.footer-logo-wrapper {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-diamond {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(1, 192, 245, 0.2) 0%, rgba(0, 123, 255, 0.2) 100%);
    border-radius: 22px;
    transform: rotate(45deg);
    border: 2px solid rgba(1, 192, 245, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(1, 192, 245, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

.footer-logo-diamond::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 24px;
    border: 1px solid rgba(1, 192, 245, 0.2);
    animation: diamondPulse 2s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

.footer-logo-diamond:hover {
    transform: rotate(45deg) scale(1.1);
    border-color: rgba(1, 192, 245, 0.7);
    box-shadow: 
        0 15px 40px rgba(1, 192, 245, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transform: rotate(-45deg);
    filter: drop-shadow(0 4px 12px rgba(1, 192, 245, 0.5));
    transition: all 0.3s ease;
}

.footer-logo-diamond:hover .footer-logo-img {
    transform: rotate(-45deg) scale(1.1);
    filter: drop-shadow(0 6px 18px rgba(1, 192, 245, 0.7));
}

.footer-tagline {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-cyan);
    transform: translateY(-5px);
}

.footer-links h5,
.footer-contact h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact ul li i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom-links li a:hover {
    color: var(--primary-cyan);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-aqua);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-link {
        margin: 0.3rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===================================
   HERO SLIDER STYLES
   =================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Full Slider Background Image */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Overlay for text readability */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 10, 106, 0.85) 0%, 
        rgba(0, 37, 147, 0.75) 50%,
        rgba(34, 160, 222, 0.65) 100%);
    z-index: 2;
}

.hero-slide-overlay.overlay-green {
    background: linear-gradient(135deg, 
        rgba(0, 10, 106, 0.8) 0%, 
        rgba(0, 37, 147, 0.7) 40%,
        rgba(110, 170, 0, 0.6) 100%);
}

/* Hero slide container */
.hero-slide .container {
    position: relative;
    z-index: 5;
    height: 100%;
}

.hero-slide .row {
    height: 100%;
}

.hero-slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.left {
    left: 30px;
}

.hero-slider-arrow.right {
    right: 30px;
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider-arrow.left {
        left: 15px;
    }
    
    .hero-slider-arrow.right {
        right: 15px;
    }
}

/* ===================================
   STUNNING WATER EFFECTS & ANIMATIONS
   =================================== */

/* Floating Water Particles */
.water-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.water-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), rgba(0, 245, 255, 0.1));
    animation: floatParticle 20s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.water-particle:nth-child(1) { width: 60px; height: 60px; left: 10%; animation-delay: 0s; animation-duration: 18s; }
.water-particle:nth-child(2) { width: 80px; height: 80px; left: 25%; animation-delay: 2s; animation-duration: 22s; }
.water-particle:nth-child(3) { width: 50px; height: 50px; left: 45%; animation-delay: 4s; animation-duration: 20s; }
.water-particle:nth-child(4) { width: 70px; height: 70px; left: 65%; animation-delay: 1s; animation-duration: 19s; }
.water-particle:nth-child(5) { width: 90px; height: 90px; left: 80%; animation-delay: 3s; animation-duration: 21s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Liquid Wave Effect on Cards */
.liquid-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 247, 255, 0.9));
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(1, 192, 245, 0.15), 0 16px 64px rgba(1, 192, 245, 0.08);
    border: 1px solid rgba(1, 192, 245, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.liquid-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(1, 192, 245, 0.1) 50%, transparent 100%);
    animation: liquidWave 8s infinite;
}

.liquid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(1, 192, 245, 0.25), 0 24px 96px rgba(1, 192, 245, 0.12);
}

@keyframes liquidWave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Water Droplet Effect on Hover */
.water-ripple-effect {
    position: relative;
    overflow: hidden;
}

.water-ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 192, 245, 0.4), transparent);
    transform: translate(-50%, -50%);
    animation: rippleExpand 1.5s infinite;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Flowing Water Border */
.water-border {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 245, 255, 0.05));
    padding: 3px;
    overflow: hidden;
}

.water-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(0, 212, 255, 0.6),
        transparent 30%
    );
    animation: rotateBorder 4s linear infinite;
}

.water-border-inner {
    position: relative;
    background: white;
    border-radius: 18px;
    z-index: 2;
    padding: 30px;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Splash Effect */
.splash-effect {
    position: relative;
}

.splash-effect::before,
.splash-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: splash 2s infinite;
}

.splash-effect::after {
    animation-delay: 1s;
}

@keyframes splash {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Water Glow Effect */
.water-glow {
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(0, 245, 255, 0.2),
        0 0 60px rgba(0, 229, 204, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.3),
            0 0 40px rgba(0, 245, 255, 0.2),
            0 0 60px rgba(0, 229, 204, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.5),
            0 0 60px rgba(0, 245, 255, 0.3),
            0 0 90px rgba(0, 229, 204, 0.2),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* Bubble Trail Effect */
.bubble-trail {
    position: relative;
}

.bubble-trail::before {
    content: '💧';
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: bubbleRise 3s infinite;
}

@keyframes bubbleRise {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(20px);
    }
}

/* Water Surface Effect */
.water-surface {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(0, 245, 255, 0.05) 50%, 
        transparent 100%);
    overflow: hidden;
}

.water-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 212, 255, 0.6),
        transparent);
    animation: surfaceShimmer 3s infinite;
}

@keyframes surfaceShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Underwater Light Rays */
.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.3) 50%, 
        transparent 100%);
    animation: rayMove 8s infinite;
}

.light-ray:nth-child(1) { left: 20%; animation-delay: 0s; animation-duration: 7s; }
.light-ray:nth-child(2) { left: 40%; animation-delay: 2s; animation-duration: 9s; }
.light-ray:nth-child(3) { left: 60%; animation-delay: 4s; animation-duration: 8s; }
.light-ray:nth-child(4) { left: 80%; animation-delay: 1s; animation-duration: 10s; }

@keyframes rayMove {
    0%, 100% {
        transform: translateX(0) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(30px) scaleY(1.2);
        opacity: 0.6;
    }
}

/* Glass Morph with Water Effect */
.water-glass {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9), 
        rgba(230, 247, 255, 0.7));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.water-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent 30%
    );
    animation: glassRotate 10s linear infinite;
}

@keyframes glassRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hover Wave Effect */
.hover-wave {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-wave:hover {
    transform: translateY(-10px);
}

.hover-wave::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-aqua);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.hover-wave:hover::after {
    width: 80%;
}

/* ===================================
   PURE PH9 HERO SLIDER SECTION
   Modern Design with Watery Effects
   =================================== */

/* Hero Section Container */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #000a6a 0%, #002593 50%, #22a0de 100%);
    overflow: hidden;
}

/* Water Background Animation */
.hero-water-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.water-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(ellipse at center, rgba(1, 192, 245, 0.15) 0%, transparent 70%);
    animation: waterWave 20s ease-in-out infinite;
}

.water-wave.wave-1 {
    animation-duration: 25s;
    opacity: 0.6;
}

.water-wave.wave-2 {
    animation-duration: 30s;
    animation-delay: -5s;
    opacity: 0.4;
}

.water-wave.wave-3 {
    animation-duration: 35s;
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes waterWave {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    75% {
        transform: rotate(270deg) scale(1.05);
    }
}

/* Floating Bubbles */
.hero-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.4),
        rgba(1, 192, 245, 0.2) 50%,
        rgba(72, 225, 255, 0.1));
    box-shadow: 
        inset 0 -5px 20px rgba(255, 255, 255, 0.4),
        inset 0 5px 20px rgba(1, 192, 245, 0.3),
        0 0 30px rgba(1, 192, 245, 0.2);
    animation: bubbleFloat 15s ease-in-out infinite;
}

.hero-bubbles .bubble:nth-child(1) {
    width: 80px; height: 80px;
    left: 5%; bottom: -100px;
    animation-duration: 12s;
    animation-delay: 0s;
}

.hero-bubbles .bubble:nth-child(2) {
    width: 50px; height: 50px;
    left: 15%; bottom: -100px;
    animation-duration: 14s;
    animation-delay: 2s;
}

.hero-bubbles .bubble:nth-child(3) {
    width: 120px; height: 120px;
    left: 25%; bottom: -100px;
    animation-duration: 18s;
    animation-delay: 1s;
}

.hero-bubbles .bubble:nth-child(4) {
    width: 40px; height: 40px;
    left: 40%; bottom: -100px;
    animation-duration: 13s;
    animation-delay: 3s;
}

.hero-bubbles .bubble:nth-child(5) {
    width: 90px; height: 90px;
    left: 55%; bottom: -100px;
    animation-duration: 16s;
    animation-delay: 0.5s;
}

.hero-bubbles .bubble:nth-child(6) {
    width: 60px; height: 60px;
    left: 65%; bottom: -100px;
    animation-duration: 15s;
    animation-delay: 4s;
}

.hero-bubbles .bubble:nth-child(7) {
    width: 100px; height: 100px;
    left: 75%; bottom: -100px;
    animation-duration: 17s;
    animation-delay: 2.5s;
}

.hero-bubbles .bubble:nth-child(8) {
    width: 45px; height: 45px;
    left: 85%; bottom: -100px;
    animation-duration: 14s;
    animation-delay: 1.5s;
}

.hero-bubbles .bubble:nth-child(9) {
    width: 70px; height: 70px;
    left: 92%; bottom: -100px;
    animation-duration: 16s;
    animation-delay: 3.5s;
}

.hero-bubbles .bubble:nth-child(10) {
    width: 55px; height: 55px;
    left: 35%; bottom: -100px;
    animation-duration: 13s;
    animation-delay: 5s;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120vh) scale(0.6);
        opacity: 0;
    }
}

/* Light Rays Effect */
.hero-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-light-rays .light-ray {
    position: absolute;
    top: -10%;
    width: 150px;
    height: 120%;
    background: linear-gradient(180deg, 
        rgba(1, 192, 245, 0.3) 0%,
        rgba(72, 225, 255, 0.1) 50%,
        transparent 100%);
    transform: skewX(-15deg);
    animation: lightRayMove 15s ease-in-out infinite;
}

.hero-light-rays .light-ray:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.hero-light-rays .light-ray:nth-child(2) {
    left: 30%;
    width: 100px;
    animation-delay: 3s;
    animation-duration: 18s;
}

.hero-light-rays .light-ray:nth-child(3) {
    left: 55%;
    width: 200px;
    animation-delay: 6s;
    animation-duration: 20s;
}

.hero-light-rays .light-ray:nth-child(4) {
    left: 80%;
    width: 120px;
    animation-delay: 9s;
    animation-duration: 16s;
}

@keyframes lightRayMove {
    0%, 100% {
        opacity: 0.3;
        transform: skewX(-15deg) translateX(0);
    }
    50% {
        opacity: 0.6;
        transform: skewX(-15deg) translateX(50px);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.8s ease-out;
}

.hero-slide.active {
    display: block;
}

/* Full Background Image for Slides */
.hero-slider-section .hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-section .hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slideZoom 25s ease-in-out infinite alternate;
}

@keyframes slideZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

/* Gradient Overlay */
.hero-slider-section .hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 10, 106, 0.88) 0%, 
        rgba(0, 37, 147, 0.78) 40%,
        rgba(1, 192, 245, 0.55) 100%);
    z-index: 2;
}

.hero-slider-section .hero-slide-overlay.overlay-green {
    background: linear-gradient(135deg, 
        rgba(0, 10, 106, 0.85) 0%, 
        rgba(0, 37, 147, 0.70) 35%,
        rgba(110, 170, 0, 0.55) 100%);
}

/* Container in slide */
.hero-slider-section .hero-slide .container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slider-section .hero-slide .row {
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Content */
.hero-content {
    padding: 40px 0;
}

.hero-badge-wrapper {
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(1, 192, 245, 0.2), rgba(72, 225, 255, 0.1));
    border: 1px solid rgba(1, 192, 245, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    color: #69f3ff;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge.badge-green {
    background: linear-gradient(135deg, rgba(110, 170, 0, 0.2), rgba(142, 204, 32, 0.1));
    border-color: rgba(110, 170, 0, 0.5);
    color: #9edb30;
}

.hero-badge.badge-cta {
    background: linear-gradient(135deg, var(--cta-green), var(--cta-green-light));
    border-color: transparent;
    color: white;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(1, 192, 245, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(1, 192, 245, 0.2);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title .title-line {
    display: block;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(1, 192, 245, 0.5);
}

.hero-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, #01c0f5, #48e1ff, #69f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-title .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #01c0f5, transparent);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(1, 192, 245, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(1, 192, 245, 0.15);
    border-color: rgba(1, 192, 245, 0.4);
    transform: translateY(-3px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #01c0f5, #3fe0ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000a6a;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #01c0f5, #3fe0ff);
    color: #000a6a;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(1, 192, 245, 0.4);
}

.btn-hero-primary::before {
    content: '';
    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;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(1, 192, 245, 0.5);
    color: #000a6a;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary.btn-cta {
    background: linear-gradient(135deg, var(--cta-green), var(--cta-green-light));
    box-shadow: 0 10px 30px rgba(110, 170, 0, 0.4);
    color: #ffffff;
}

.btn-hero-primary.btn-cta:hover {
    box-shadow: 0 15px 40px rgba(110, 170, 0, 0.5);
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(1, 192, 245, 0.6);
    color: #69f3ff;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(1, 192, 245, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
}

.hero-image-glow.glow-green {
    background: radial-gradient(circle, rgba(110, 170, 0, 0.4) 0%, transparent 70%);
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-image-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(1, 192, 245, 0.3);
}

.hero-image-ring.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringRotate 20s linear infinite;
}

.hero-image-ring.ring-2 {
    width: 85%;
    height: 85%;
    border-style: dashed;
    animation: ringRotate 25s linear infinite reverse;
}

.hero-image-ring.ring-3 {
    width: 70%;
    height: 70%;
    border-width: 3px;
    border-color: rgba(72, 225, 255, 0.2);
    animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-main-image {
    position: relative;
    z-index: 5;
    max-width: 85%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(1, 192, 245, 0.4));
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 6;
}

.floating-element img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.floating-element.elem-1 {
    top: 10%;
    right: 0;
    width: 80px;
    animation: floatElement 5s ease-in-out infinite;
}

.floating-element.elem-2 {
    bottom: 20%;
    left: 0;
    width: 100px;
    animation: floatElement 6s ease-in-out infinite 1s;
}

.floating-element.elem-3 {
    top: 50%;
    right: -10%;
    width: 70px;
    animation: floatElement 7s ease-in-out infinite 2s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(1, 192, 245, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(1, 192, 245, 0.3);
    border-color: rgba(1, 192, 245, 0.6);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dots .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #01c0f5;
    box-shadow: 0 0 15px rgba(1, 192, 245, 0.6);
}

.slider-dots .dot.active::before {
    border-color: rgba(1, 192, 245, 0.5);
}

.slider-dots .dot:hover {
    background: rgba(1, 192, 245, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
    0%, 100% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.3;
        top: 18px;
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Wave Bottom */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
}

.hero-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 991px) {
    .hero-slider-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-slider-section .hero-slide .container {
        padding-top: 140px;
        padding-bottom: 120px;
    }
    
    .hero-content {
        text-align: center;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-slider-nav {
        bottom: 50px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider-section .hero-slide .container {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px 15px;
    }
    
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-slider-section .hero-slide .container {
        padding-top: 100px;
        padding-bottom: 90px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
    
    .hero-slider-nav {
        bottom: 30px;
        gap: 15px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* ===================================
   AGUAPURE HERO SECTION STYLES (Legacy)
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1e7fcf 0%, #2b95ed 50%, #1e7fcf 100%);
    display: flex;
    align-items: center;
    padding-top: 140px;
}

/* Animated Background */
.hero-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Animated Bubbles */
.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: floatBubble 15s infinite ease-in-out;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 60%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    left: 25%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    left: 45%;
    top: 70%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.bubble-4 {
    width: 50px;
    height: 50px;
    left: 65%;
    top: 50%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    left: 80%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.bubble-6 {
    width: 70px;
    height: 70px;
    left: 15%;
    top: 20%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.bubble-7 {
    width: 55px;
    height: 55px;
    left: 90%;
    top: 60%;
    animation-delay: 2.5s;
    animation-duration: 14s;
}

.bubble-8 {
    width: 85px;
    height: 85px;
    left: 35%;
    top: 80%;
    animation-delay: 4.5s;
    animation-duration: 18s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(20px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-100px) translateX(-20px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-50px) translateX(30px) scale(1.05);
        opacity: 0.4;
    }
}

/* Wave Graphics */
.wave-graphics {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: waveMove 20s linear infinite;
}

.wave-1 {
    animation-duration: 25s;
    opacity: 0.3;
}

.wave-2 {
    animation-duration: 30s;
    animation-delay: -5s;
    opacity: 0.2;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero Numbers */
.hero-numbers {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.number-item {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 25px;
}

.number-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--white);
    transition: height 0.4s ease;
}

.number-item.active,
.number-item:hover {
    color: var(--white);
    transform: translateX(5px);
}

.number-item.active::before {
    height: 40px;
}

/* Hero Content */
.hero-content-main {
    position: relative;
    z-index: 10;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 0.8s forwards;
}

.title-line.delay-1 {
    animation-delay: 0.2s;
}

.title-line.delay-2 {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle-main {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero Buttons */
.hero-buttons-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--white);
    color: #1e7fcf;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: #1e7fcf;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: #1e7fcf;
    transform: translateY(-3px);
}

/* Hero Image Section */
.hero-image-main {
    position: relative;
    z-index: 10;
}

.image-float-wrapper {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-product-img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: rotateImage 10s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotateImage {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Floating Elements */
.float-element {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e7fcf;
    animation: floatElement 4s ease-in-out infinite;
    z-index: 5;
}

.float-element i {
    font-size: 1.2rem;
}

.float-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 15%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section-aguapure {
        padding-top: 130px;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-numbers {
        left: 15px;
        gap: 15px;
    }
    
    .number-item {
        font-size: 1.4rem;
    }
    
    .hero-image-main {
        margin-top: 50px;
    }
    
    .float-element {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.1rem;
    }
    
    .hero-numbers {
        display: none;
    }
    
    .hero-buttons-main {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .bubble {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .float-element {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .float-2 {
        right: 5%;
    }
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background: var(--gradient-hero);
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 110px;
    padding: 0;
}

.page-header-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--primary-dark));
    z-index: 1;
}

.page-header-overlay {
    display: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .row {
    justify-content: flex-end !important;
    text-align: right !important;
}

.page-header .col-lg-8 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.page-header .breadcrumb {
    justify-content: flex-end !important;
    background: transparent;
    margin-bottom: 1rem;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: var(--cta-green);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 60%);
}

.page-header h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Page Header without image - centered */
.page-header:not(:has(.page-header-bg)) .row {
    justify-content: center !important;
    text-align: center !important;
}

.page-header:not(:has(.page-header-bg)) .col-lg-8 {
    align-items: center;
}

.page-header:not(:has(.page-header-bg)) .breadcrumb {
    justify-content: center !important;
}

/* Responsive Page Header */
@media (max-width: 991.98px) {
    .page-header {
        min-height: 350px;
    }
    
    .page-header-bg {
        width: 100%;
        opacity: 0.3;
    }
    
    .page-header-bg::after {
        display: none;
    }
    
    .page-header .row {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .page-header .col-lg-8 {
        align-items: center;
    }
    
    .page-header .breadcrumb {
        justify-content: center !important;
    }
}

/* ===== PARTNER PROGRAM SECTION ===== */
.partner-section {
    background: var(--gradient-hero);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(79, 172, 254, 0.08) 0%, transparent 60%);
}

.partner-section .section-title h2 {
    color: var(--white);
}

.partner-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.highlight-green {
    color: var(--cta-green) !important;
}

.partner-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cta);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.partner-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-cta);
}

.partner-icon i {
    font-size: 2rem;
    color: var(--white);
}

.partner-card h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.partner-badge {
    background: var(--gradient-cta);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: var(--shadow-cta);
}

/* Partner Tiers */
.partner-tiers {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 3rem;
}

.tier-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tier-item:hover {
    border-color: var(--cta-green);
    transform: translateY(-5px);
}

.tier-level {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--cta-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.tier-rate {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.tier-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* CTA Button */
.btn-cta {
    background: var(--gradient-cta) !important;
    border: none !important;
    color: var(--white) !important;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-cta);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 210, 106, 0.5);
}

/* CTA Button inside Green CTA Section - make it dark blue */
.cta-section .btn-cta {
    background: var(--primary-dark) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-cta:hover {
    background: var(--primary) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* White button inside CTA Section */
.cta-section .btn-white {
    background: white !important;
    color: var(--cta-green) !important;
}

.cta-section .btn-white:hover {
    background: #f0f0f0 !important;
    color: var(--cta-green-dark) !important;
}

.btn-cta-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 210, 106, 0); }
}

/* ===== HERO BADGE & FEATURES ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: var(--cta-green);
}

/* ===== PARTNER NAV LINK ===== */
.nav-link.partner-link {
    background: var(--gradient-cta) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full);
    margin-left: 10px;
    font-weight: 700;
    box-shadow: var(--shadow-cta);
}

.nav-link.partner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 210, 106, 0.45);
}

/* ===== PRODUCT RATING ===== */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.85rem;
}

.product-rating span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== NEW INDEX PAGE SECTIONS ===== */

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(1, 192, 245, 0.1), rgba(1, 192, 245, 0.2));
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(1, 192, 245, 0.3);
}

.section-badge i {
    font-size: 0.85rem;
}

.section-badge.badge-green {
    background: linear-gradient(135deg, rgba(110, 170, 0, 0.1), rgba(110, 170, 0, 0.2));
    color: var(--cta-green);
    border-color: rgba(110, 170, 0, 0.3);
}

.section-badge.badge-new {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.2));
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* About Technology Section */
.about-tech-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.about-tech-image {
    position: relative;
}

.tech-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 10, 106, 0.15);
}

.main-tech-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tech-image-wrapper:hover .main-tech-img {
    transform: scale(1.05);
}

.tech-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tech-badge .badge-text {
    font-weight: 600;
    color: var(--dark-blue);
}

.tech-stats-float {
    position: absolute;
    top: 20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-float-item {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.stat-float-item i {
    color: var(--secondary);
}

.about-tech-content {
    padding-left: 2rem;
}

.tech-features {
    margin: 2rem 0;
}

.tech-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--gradient-deep);
    position: relative;
    overflow: hidden;
}

.benefits-section .section-title h2,
.benefits-section .section-title p {
    color: white;
}

.benefits-section .section-title .highlight {
    color: var(--secondary);
}

.benefits-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.benefit-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(1, 192, 245, 0.1);
    animation: float 6s ease-in-out infinite;
}

.benefit-bubble.b1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.benefit-bubble.b2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 2s;
}

.benefit-bubble.b3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.benefit-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefit-stat {
    background: rgba(1, 192, 245, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.benefit-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.benefit-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Featured Product Section */
.featured-product-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.featured-product-image {
    position: relative;
}

.product-showcase {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f0 100%);
    padding: 2rem;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(1, 192, 245, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.product-features-float {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-feature {
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-blue);
}

.float-feature i {
    color: var(--cta-green);
}

.featured-product-content .product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.featured-product-content .product-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.highlight-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.highlight-text span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.product-price-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.original-price {
    font-size: 1.25rem;
    color: var(--gray);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--gradient-cta);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.emi-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

.emi-info i {
    color: var(--secondary);
    margin-right: 5px;
}

.product-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(1, 192, 245, 0.1);
    line-height: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e6f7ff 0%, #d0f4ff 100%);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    right: -30%;
    top: 50%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), rgba(1, 192, 245, 0.2));
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: block;
    }
    .process-step:last-child .step-connector {
        display: none;
    }
}

/* Business Opportunity Section */
.business-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
}

.business-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.affiliate-card::before {
    background: var(--gradient-secondary);
}

.franchise-card::before {
    background: var(--gradient-cta);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.business-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.business-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.affiliate-card .business-icon {
    background: var(--gradient-secondary);
}

.franchise-card .business-icon {
    background: var(--gradient-cta);
}

.business-badge {
    background: rgba(1, 192, 245, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.business-badge.premium {
    background: rgba(110, 170, 0, 0.1);
    color: var(--cta-green);
}

.business-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.business-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.business-features {
    margin-bottom: 1.5rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row i {
    color: var(--cta-green);
    font-size: 0.9rem;
}

.feature-row span {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.business-earning {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.earning-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.earning-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cta-green);
}

.btn-affiliate {
    width: 100%;
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-affiliate:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cyan);
    color: white;
}

.btn-franchise {
    width: 100%;
    background: var(--gradient-cta);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-franchise:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta);
    color: white;
}

/* Commission Section */
.commission-section {
    padding: 6rem 0;
    background: white;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.commission-tier {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.commission-tier:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-cyan);
}

.commission-tier.tier-bonus {
    background: linear-gradient(135deg, rgba(110, 170, 0, 0.05) 0%, rgba(110, 170, 0, 0.1) 100%);
    border-color: rgba(110, 170, 0, 0.3);
}

.commission-tier.tier-bonus:hover {
    border-color: var(--cta-green);
    box-shadow: var(--shadow-cta);
}

.tier-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.tier-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.tier-bonus .tier-icon {
    background: var(--gradient-cta);
}

.tier-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commission-tier .tier-rate {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tier-bonus .tier-rate {
    color: var(--cta-green);
}

.tier-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.tier-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.commission-cta .cta-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(1, 192, 245, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.commission-cta .cta-highlight i {
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--gradient-deep);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-box .stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-box .stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Testimonials Section - Updated */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(1, 192, 245, 0.1);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-badge.partner {
    background: rgba(110, 170, 0, 0.1);
    color: var(--cta-green);
}

.video-testimonials {
    margin-top: 3rem;
}

.video-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumb:hover img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.video-thumb:hover .play-button {
    background: var(--secondary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Partner Section - Updated */
.partner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #002593 0%, #000a6a 100%);
    position: relative;
    overflow: hidden;
}

.partner-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2301c0f5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.partner-content {
    position: relative;
    z-index: 1;
}

.partner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.partner-content .lead-text {
    color: rgba(255, 255, 255, 0.8);
}

.partner-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--cta-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.benefit-text strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 2px;
}

.benefit-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.partner-image-box {
    position: relative;
    z-index: 1;
}

.partner-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    width: 45px;
    height: 45px;
    background: var(--gradient-cta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.floating-card .card-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.floating-card .card-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.floating-card.card-1 {
    top: 20%;
    right: -20px;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.faq-intro > p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
    border-radius: 16px;
    padding: 1.5rem;
}

.faq-contact p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:has(.collapse.show) {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(1, 192, 245, 0.1);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    padding-right: 1rem;
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* CTA Section - Updated */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-bubble:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.cta-bubble:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 10%;
}

.cta-bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -75px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content h2 span {
    color: var(--dark-blue);
}

.cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-white {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-white:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: white;
    color: var(--cta-green);
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #f0f0f0;
    border-color: white;
    color: var(--cta-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--dark-blue);
}

/* Button Styles */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
}

.btn-cta {
    background: var(--gradient-cta);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta);
    color: white;
}

.btn-cta-pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(110, 170, 0, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(110, 170, 0, 0); }
}

/* Highlight Green */
.highlight-green {
    color: var(--cta-green);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Water Particles */
.water-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.water-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3), transparent);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

.water-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.water-particle:nth-child(2) { left: 30%; animation-delay: 1s; }
.water-particle:nth-child(3) { left: 50%; animation-delay: 2s; }
.water-particle:nth-child(4) { left: 70%; animation-delay: 3s; }
.water-particle:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed,
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.scroll-reveal-left.revealed,
.scroll-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.scroll-reveal-right.revealed,
.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199px) {
    .section-heading {
        font-size: 2.25rem;
    }
    
    .commission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .page-header {
        margin-top: 90px;
        min-height: 250px;
    }
    
    .partner-section {
        padding: 4rem 0;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .nav-link.partner-link {
        margin: 0.5rem 0;
        text-align: center;
        justify-content: center;
    }
    
    .about-tech-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .tech-stats-float {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
    }
    
    .product-features-float {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .faq-intro {
        position: static;
        margin-bottom: 2rem;
    }
    
    .floating-card.card-1,
    .floating-card.card-2 {
        position: static;
        margin: 1rem auto;
        display: inline-flex;
    }
    
    .partner-image-box {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .page-header {
        margin-top: 70px;
        min-height: 200px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .tier-rate {
        font-size: 2rem;
    }
    
    .section-heading,
    .partner-content h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .featured-product-content .product-title {
        font-size: 1.75rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .commission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-cta-buttons,
    .product-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn,
    .product-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .page-header {
        margin-top: 60px;
        padding: 2rem 0;
    }
    
    .partner-icon {
        width: 70px;
        height: 70px;
    }
    
    .partner-icon i {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .benefit-card,
    .business-card,
    .testimonial-card,
    .why-card {
        padding: 1.5rem;
    }
    
    .commission-tier {
        padding: 1.25rem 1rem;
    }
    
    .commission-tier .tier-rate {
        font-size: 1.75rem;
    }
    
    .benefit-icon,
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
}

/* ===== WISHLIST STYLES ===== */
.wishlist-btn i.fas {
    color: #ff4757 !important;
}

.wishlist-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 71, 87, 0.9);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.wishlist-remove-btn:hover {
    background: #ff4757;
    transform: scale(1.1);
}

.wishlist-card {
    transition: all 0.3s ease;
}

.wishlist-card:hover {
    transform: translateY(-5px);
}

.empty-wishlist {
    padding: 4rem 2rem;
}

.empty-wishlist .empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 71, 87, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-wishlist .empty-icon i {
    font-size: 3rem;
    color: #ff4757;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}

.stock-status.in-stock {
    color: var(--cta-green);
}

.stock-status.out-stock {
    color: #ff4757;
}

.wishlist-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Badge pulse animation */
.badge.pulse,
.wishlist-badge.pulse,
.cart-badge.pulse {
    animation: badgePulse 0.5s ease;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float i {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* WhatsApp Button Ring Animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappRing 1.5s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 90px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 15px;
    }
}
