/*
Theme Name: Rankolab SaaS Theme
Theme URI: https://rankolab.com
Author: Rankolab
Author URI: https://rankolab.com
Description: A premium AI-powered growth agency theme tailored for GSAP animations and Elementor integration.
Version: 1.0.0
*/

/* 
 * ----------------------------------------
 * RANKOLAB GLOBAL DESIGN SYSTEM
 * ----------------------------------------
 * We use a "Dark theme (deep navy / black background)"
 * with "Electric blue and neon green glow accents."
 */

:root {
    --rk-bg-deep: #050810;
    --rk-bg-card: rgba(15, 20, 35, 0.6);
    --rk-neon-blue: #00d2ff;
    --rk-neon-green: #3aedb2;
    --rk-neon-glow: rgba(0, 210, 255, 0.3);

    --rk-text-white: #ffffff;
    --rk-text-gray: #a1a9b8;

    --rk-border-glass: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--rk-bg-deep);
    color: var(--rk-text-gray);
    font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--rk-text-white);
    font-weight: 700;
    line-height: 1.2;
}

/* 
 * ----------------------------------------
 * GLASSMORPHISM UTILITIES (For Elementor)
 * ----------------------------------------
 * Add class 'rk-glass-card' to any Elementor Section/Column
 */
.rk-glass-card {
    background: var(--rk-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--rk-border-glass);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.rk-glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 210, 255, 0.1);
}

/* 
 * ----------------------------------------
 * TYPOGRAPHY & ACCENTS
 * ----------------------------------------
 */
.rk-text-gradient {
    background: linear-gradient(135deg, var(--rk-neon-blue), var(--rk-neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.rk-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--rk-neon-blue), var(--rk-neon-green));
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--rk-neon-glow);
}

.rk-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(58, 237, 178, 0.4);
    color: #000;
}

/* 
 * ----------------------------------------
 * GSAP ANIMATION CLASSES
 * ----------------------------------------
 * These classes set the initial state so objects are hidden
 * before GSAP scrolls them into view. Add to Elementor widgets.
 */
.rk-animate-fade {
    opacity: 0;
    visibility: hidden;
}

.rk-animate-up {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
}

.rk-animate-left {
    opacity: 0;
    transform: translateX(40px);
    visibility: hidden;
}

.rk-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    visibility: hidden;
}