/*
Theme Name:        Rocket Gulti
Theme URI:         https://rocketgulti.com
Author:            Rocket Gulti Team
Author URI:        https://rocketgulti.com
Description:       A modern, futuristic WordPress theme for Rocket Gulti Aerospace — fully compatible with Elementor, featuring a bold space-tech aesthetic, responsive design, and rich customization options.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.9
Requires PHP:      8.0
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       rocket-gulti
Tags:              full-site-editing, elementor, responsive-layout, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */
:root {
  /* Brand Colors */
  --rg-primary:         #0a0e1a;   /* Deep space navy */
  --rg-secondary:       #0d1b2a;   /* Dark blue */
  --rg-accent:          #00c8ff;   /* Electric cyan */
  --rg-accent-2:        #7b2fff;   /* Cosmic purple */
  --rg-accent-3:        #ff4d00;   /* Rocket fire orange */
  --rg-surface:         #111827;   /* Card backgrounds */
  --rg-surface-2:       #1a2332;   /* Elevated surfaces */
  --rg-border:          rgba(0,200,255,0.15);
  --rg-border-strong:   rgba(0,200,255,0.35);

  /* Text Colors */
  --rg-text-primary:    #f0f4ff;
  --rg-text-secondary:  #8899b4;
  --rg-text-muted:      #4a5568;
  --rg-text-inverse:    #0a0e1a;

  /* Gradients */
  --rg-gradient-hero:   linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 50%, #0a1628 100%);
  --rg-gradient-accent: linear-gradient(135deg, #00c8ff 0%, #7b2fff 100%);
  --rg-gradient-fire:   linear-gradient(135deg, #ff4d00 0%, #ffaa00 100%);
  --rg-gradient-card:   linear-gradient(145deg, rgba(17,24,39,0.9) 0%, rgba(26,35,50,0.9) 100%);
  --rg-gradient-glow:   radial-gradient(ellipse at center, rgba(0,200,255,0.15) 0%, transparent 70%);

  /* Typography */
  --rg-font-heading:    'Exo 2', 'Rajdhani', 'Orbitron', sans-serif;
  --rg-font-body:       'Inter', 'Roboto', system-ui, sans-serif;
  --rg-font-mono:       'JetBrains Mono', 'Fira Code', monospace;

  --rg-text-xs:   0.75rem;
  --rg-text-sm:   0.875rem;
  --rg-text-base: 1rem;
  --rg-text-lg:   1.125rem;
  --rg-text-xl:   1.25rem;
  --rg-text-2xl:  1.5rem;
  --rg-text-3xl:  1.875rem;
  --rg-text-4xl:  2.25rem;
  --rg-text-5xl:  3rem;
  --rg-text-6xl:  3.75rem;
  --rg-text-7xl:  4.5rem;

  /* Spacing */
  --rg-space-1:   0.25rem;
  --rg-space-2:   0.5rem;
  --rg-space-3:   0.75rem;
  --rg-space-4:   1rem;
  --rg-space-6:   1.5rem;
  --rg-space-8:   2rem;
  --rg-space-10:  2.5rem;
  --rg-space-12:  3rem;
  --rg-space-16:  4rem;
  --rg-space-20:  5rem;
  --rg-space-24:  6rem;
  --rg-space-32:  8rem;

  /* Borders */
  --rg-radius-sm:  4px;
  --rg-radius-md:  8px;
  --rg-radius-lg:  12px;
  --rg-radius-xl:  20px;
  --rg-radius-full: 9999px;

  /* Shadows / Glows */
  --rg-shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --rg-shadow-md:   0 4px 24px rgba(0,0,0,0.5);
  --rg-shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
  --rg-glow-cyan:   0 0 20px rgba(0,200,255,0.4), 0 0 60px rgba(0,200,255,0.15);
  --rg-glow-purple: 0 0 20px rgba(123,47,255,0.4), 0 0 60px rgba(123,47,255,0.15);
  --rg-glow-fire:   0 0 20px rgba(255,77,0,0.4), 0 0 60px rgba(255,77,0,0.15);

  /* Transitions */
  --rg-transition-fast:   0.15s ease;
  --rg-transition-base:   0.3s ease;
  --rg-transition-slow:   0.5s ease;
  --rg-transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --rg-container-sm:  640px;
  --rg-container-md:  768px;
  --rg-container-lg:  1024px;
  --rg-container-xl:  1280px;
  --rg-container-2xl: 1400px;
  --rg-header-height: 80px;
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--rg-font-body);
  font-size: var(--rg-text-base);
  line-height: 1.7;
  color: var(--rg-text-primary);
  background-color: var(--rg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: var(--rg-accent);
  text-decoration: none;
  transition: color var(--rg-transition-fast);
}

a:hover { color: var(--rg-accent-2); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rg-font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--rg-text-primary);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   2. LAYOUT UTILITIES
   ========================================================================== */
.rg-container {
  width: 100%;
  max-width: var(--rg-container-xl);
  margin-inline: auto;
  padding-inline: var(--rg-space-6);
}

.rg-container--wide {
  max-width: var(--rg-container-2xl);
}

.rg-container--narrow {
  max-width: var(--rg-container-md);
}

.rg-section {
  padding-block: var(--rg-space-24);
}

.rg-grid {
  display: grid;
  gap: var(--rg-space-8);
}

.rg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.rg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rg-grid--4 { grid-template-columns: repeat(4, 1fr); }

.rg-flex { display: flex; }
.rg-flex--center { align-items: center; justify-content: center; }
.rg-flex--between { align-items: center; justify-content: space-between; }

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

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
.rg-heading-xl {
  font-size: clamp(2.5rem, 6vw, var(--rg-text-7xl));
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rg-heading-lg {
  font-size: clamp(2rem, 4vw, var(--rg-text-5xl));
  font-weight: 700;
}

.rg-heading-md {
  font-size: clamp(1.5rem, 3vw, var(--rg-text-4xl));
  font-weight: 700;
}

.rg-heading-sm {
  font-size: var(--rg-text-2xl);
  font-weight: 600;
}

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

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

.rg-label {
  font-family: var(--rg-font-mono);
  font-size: var(--rg-text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rg-accent);
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.rg-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--rg-space-2);
  padding: var(--rg-space-3) var(--rg-space-8);
  border-radius: var(--rg-radius-sm);
  font-family: var(--rg-font-heading);
  font-size: var(--rg-text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--rg-transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.rg-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--rg-transition-fast);
}

.rg-btn:hover::before { opacity: 1; }

.rg-btn--primary {
  background: var(--rg-gradient-accent);
  color: white;
  box-shadow: var(--rg-glow-cyan);
}

.rg-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,200,255,0.5), 0 0 80px rgba(0,200,255,0.2);
  color: white;
}

.rg-btn--secondary {
  background: transparent;
  color: var(--rg-accent);
  border: 1px solid var(--rg-border-strong);
}

.rg-btn--secondary:hover {
  background: rgba(0,200,255,0.08);
  border-color: var(--rg-accent);
  transform: translateY(-2px);
  color: var(--rg-accent);
}

.rg-btn--fire {
  background: var(--rg-gradient-fire);
  color: white;
  box-shadow: var(--rg-glow-fire);
}

.rg-btn--fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,77,0,0.5), 0 0 80px rgba(255,77,0,0.2);
  color: white;
}

.rg-btn--lg {
  padding: var(--rg-space-4) var(--rg-space-10);
  font-size: var(--rg-text-base);
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
#rg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--rg-header-height);
  display: flex;
  align-items: center;
  transition: all var(--rg-transition-base);
}

#rg-header .rg-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#rg-header.scrolled {
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rg-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* Logo */
.rg-logo {
  display: flex;
  align-items: center;
  gap: var(--rg-space-3);
  text-decoration: none;
}

.rg-logo img {
  height: 40px;
  width: auto;
}

.rg-logo__text {
  font-family: var(--rg-font-heading);
  font-size: var(--rg-text-xl);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rg-text-primary);
}

.rg-logo__text span { color: var(--rg-accent); }

/* Navigation */
.rg-nav {
  display: flex;
  align-items: center;
  gap: var(--rg-space-8);
}

.rg-nav__menu {
  display: flex;
  align-items: center;
  gap: var(--rg-space-6);
}

.rg-nav__menu a {
  font-family: var(--rg-font-heading);
  font-size: var(--rg-text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rg-text-secondary);
  transition: color var(--rg-transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.rg-nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rg-gradient-accent);
  transition: width var(--rg-transition-base);
}

.rg-nav__menu a:hover,
.rg-nav__menu .current-menu-item a {
  color: var(--rg-accent);
}

.rg-nav__menu a:hover::after,
.rg-nav__menu .current-menu-item a::after {
  width: 100%;
}

/* Mobile menu toggle */
.rg-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--rg-space-2);
  z-index: 1001;
}

.rg-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rg-text-primary);
  transition: all var(--rg-transition-base);
  transform-origin: center;
}

.rg-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rg-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rg-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.rg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--rg-gradient-hero);
  padding-top: var(--rg-header-height);
}

#rg-starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rg-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.rg-hero__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.12) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.rg-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--rg-space-16) var(--rg-space-6);
  max-width: 900px;
  margin-inline: auto;
}

.rg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--rg-space-2);
  background: rgba(0,200,255,0.1);
  border: 1px solid var(--rg-border-strong);
  border-radius: var(--rg-radius-full);
  padding: var(--rg-space-1) var(--rg-space-4);
  margin-bottom: var(--rg-space-6);
}

.rg-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rg-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,255,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(0,200,255,0); }
}

.rg-hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--rg-space-6);
}

.rg-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--rg-text-secondary);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--rg-space-10);
  line-height: 1.8;
}

.rg-hero__cta {
  display: flex;
  gap: var(--rg-space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--rg-space-16);
}

.rg-hero__stats {
  display: flex;
  gap: var(--rg-space-12);
  justify-content: center;
  flex-wrap: wrap;
}

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

.rg-hero__stat-number {
  font-family: var(--rg-font-heading);
  font-size: var(--rg-text-3xl);
  font-weight: 800;
  background: var(--rg-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.rg-hero__stat-label {
  font-size: var(--rg-text-sm);
  color: var(--rg-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rg-hero__scroll {
  position: absolute;
  bottom: var(--rg-space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rg-space-2);
  color: var(--rg-text-muted);
  font-size: var(--rg-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.rg-hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--rg-accent);
  border-bottom: 2px solid var(--rg-accent);
  transform: rotate(45deg);
  opacity: 0.6;
}

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

/* ==========================================================================
   7. SECTION HEADERS
   ========================================================================== */
.rg-section-header {
  text-align: center;
  margin-bottom: var(--rg-space-16);
}

.rg-section-header__eyebrow {
  font-family: var(--rg-font-mono);
  font-size: var(--rg-text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rg-accent);
  margin-bottom: var(--rg-space-4);
  display: block;
}

.rg-section-header__title {
  font-size: clamp(2rem, 4vw, var(--rg-text-5xl));
  font-weight: 800;
  margin-bottom: var(--rg-space-4);
}

.rg-section-header__desc {
  font-size: var(--rg-text-lg);
  color: var(--rg-text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.8;
}

/* ==========================================================================
   8. SERVICES SECTION
   ========================================================================== */
.rg-services {
  background: var(--rg-secondary);
  position: relative;
  overflow: hidden;
}

.rg-services::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123,47,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.rg-service-card {
  background: var(--rg-gradient-card);
  border: 1px solid var(--rg-border);
  border-radius: var(--rg-radius-lg);
  padding: var(--rg-space-10);
  position: relative;
  overflow: hidden;
  transition: all var(--rg-transition-base);
  cursor: default;
}

.rg-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rg-gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--rg-transition-base);
}

.rg-service-card:hover {
  border-color: var(--rg-border-strong);
  transform: translateY(-6px);
  box-shadow: var(--rg-shadow-lg), var(--rg-glow-cyan);
}

.rg-service-card:hover::before { transform: scaleX(1); }

.rg-service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--rg-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--rg-space-6);
  font-size: 28px;
  background: rgba(0,200,255,0.1);
  border: 1px solid var(--rg-border);
  transition: all var(--rg-transition-base);
}

.rg-service-card:hover .rg-service-card__icon {
  background: rgba(0,200,255,0.2);
  box-shadow: var(--rg-glow-cyan);
}

.rg-service-card__number {
  position: absolute;
  top: var(--rg-space-6);
  right: var(--rg-space-6);
  font-family: var(--rg-font-mono);
  font-size: var(--rg-text-xs);
  color: var(--rg-text-muted);
  letter-spacing: 0.1em;
}

.rg-service-card__title {
  font-size: var(--rg-text-xl);
  font-weight: 700;
  margin-bottom: var(--rg-space-3);
  color: var(--rg-text-primary);
}

.rg-service-card__desc {
  font-size: var(--rg-text-sm);
  color: var(--rg-text-secondary);
  line-height: 1.8;
}

.rg-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--rg-space-2);
  margin-top: var(--rg-space-6);
  font-size: var(--rg-text-sm);
  font-weight: 600;
  color: var(--rg-accent);
  font-family: var(--rg-font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap var(--rg-transition-fast);
}

.rg-service-card__link:hover { gap: var(--rg-space-3); color: var(--rg-accent); }

/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */
.rg-about {
  background: var(--rg-primary);
  position: relative;
  overflow: hidden;
}

.rg-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rg-space-16);
  align-items: center;
}

.rg-about__visual {
  position: relative;
}

.rg-about__image-wrap {
  border-radius: var(--rg-radius-xl);
  overflow: hidden;
  border: 1px solid var(--rg-border);
  position: relative;
}

.rg-about__image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.rg-about__badge {
  position: absolute;
  bottom: var(--rg-space-6);
  right: -var(--rg-space-6);
  background: var(--rg-surface);
  border: 1px solid var(--rg-border-strong);
  border-radius: var(--rg-radius-lg);
  padding: var(--rg-space-4) var(--rg-space-6);
  box-shadow: var(--rg-shadow-lg);
}

.rg-about__badge-number {
  font-family: var(--rg-font-heading);
  font-size: var(--rg-text-4xl);
  font-weight: 900;
  background: var(--rg-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rg-about__badge-text {
  font-size: var(--rg-text-xs);
  color: var(--rg-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rg-about__title {
  font-size: clamp(2rem, 3.5vw, var(--rg-text-5xl));
  font-weight: 800;
  margin-bottom: var(--rg-space-6);
  line-height: 1.1;
}

.rg-about__desc {
  font-size: var(--rg-text-base);
  color: var(--rg-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--rg-space-8);
}

.rg-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rg-space-4);
  margin-bottom: var(--rg-space-10);
}

.rg-about__feature {
  display: flex;
  align-items: center;
  gap: var(--rg-space-3);
  font-size: var(--rg-text-sm);
  color: var(--rg-text-secondary);
}

.rg-about__feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,200,255,0.15);
  border: 1px solid var(--rg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--rg-accent);
}

/* ==========================================================================
   10. CTA SECTION
   ========================================================================== */
.rg-cta {
  background: var(--rg-secondary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.rg-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,200,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(123,47,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.rg-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
}

.rg-cta__title {
  font-size: clamp(2.2rem, 5vw, var(--rg-text-6xl));
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--rg-space-6);
}

.rg-cta__desc {
  font-size: var(--rg-text-lg);
  color: var(--rg-text-secondary);
  margin-bottom: var(--rg-space-10);
  line-height: 1.8;
}

.rg-cta__buttons {
  display: flex;
  gap: var(--rg-space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
#rg-footer {
  background: var(--rg-primary);
  border-top: 1px solid var(--rg-border);
  padding-top: var(--rg-space-20);
}

.rg-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--rg-space-12);
  padding-bottom: var(--rg-space-16);
  border-bottom: 1px solid var(--rg-border);
}

.rg-footer__brand-desc {
  font-size: var(--rg-text-sm);
  color: var(--rg-text-secondary);
  line-height: 1.8;
  margin-top: var(--rg-space-4);
  max-width: 280px;
}

.rg-footer__social {
  display: flex;
  gap: var(--rg-space-3);
  margin-top: var(--rg-space-6);
}

.rg-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--rg-radius-sm);
  border: 1px solid var(--rg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rg-text-muted);
  font-size: var(--rg-text-sm);
  transition: all var(--rg-transition-fast);
}

.rg-footer__social a:hover {
  border-color: var(--rg-accent);
  color: var(--rg-accent);
  box-shadow: var(--rg-glow-cyan);
}

.rg-footer__col-title {
  font-family: var(--rg-font-heading);
  font-size: var(--rg-text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rg-text-primary);
  margin-bottom: var(--rg-space-6);
}

.rg-footer__menu li + li { margin-top: var(--rg-space-3); }

.rg-footer__menu a {
  font-size: var(--rg-text-sm);
  color: var(--rg-text-secondary);
  transition: color var(--rg-transition-fast);
}

.rg-footer__menu a:hover { color: var(--rg-accent); }

.rg-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--rg-space-6);
  flex-wrap: wrap;
  gap: var(--rg-space-4);
}

.rg-footer__copy {
  font-size: var(--rg-text-sm);
  color: var(--rg-text-muted);
}

.rg-footer__legal {
  display: flex;
  gap: var(--rg-space-6);
}

.rg-footer__legal a {
  font-size: var(--rg-text-sm);
  color: var(--rg-text-muted);
  transition: color var(--rg-transition-fast);
}

.rg-footer__legal a:hover { color: var(--rg-accent); }

/* ==========================================================================
   12. CARD COMPONENTS
   ========================================================================== */
.rg-card {
  background: var(--rg-gradient-card);
  border: 1px solid var(--rg-border);
  border-radius: var(--rg-radius-lg);
  overflow: hidden;
  transition: all var(--rg-transition-base);
}

.rg-card:hover {
  transform: translateY(-4px);
  border-color: var(--rg-border-strong);
  box-shadow: var(--rg-shadow-lg);
}

/* ==========================================================================
   13. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-rg-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-rg-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-rg-reveal-delay="1"] { transition-delay: 0.1s; }
[data-rg-reveal-delay="2"] { transition-delay: 0.2s; }
[data-rg-reveal-delay="3"] { transition-delay: 0.3s; }
[data-rg-reveal-delay="4"] { transition-delay: 0.4s; }
[data-rg-reveal-delay="5"] { transition-delay: 0.5s; }
[data-rg-reveal-delay="6"] { transition-delay: 0.6s; }

/* ==========================================================================
   14. ELEMENTOR COMPATIBILITY
   ========================================================================== */
.elementor-page .rg-hero { min-height: 100vh; }
.elementor-section, .e-container { position: relative; }

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--rg-font-heading);
}

.e-con-inner > .elementor-widget,
.elementor-column > .elementor-widget-wrap {
  width: 100%;
}

/* Fix for Elementor full-width layouts */
.elementor-section.elementor-section-full_width .elementor-container {
  max-width: 100%;
}

/* ==========================================================================
   15. WORDPRESS CORE CLASSES
   ========================================================================== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: var(--rg-text-sm); color: var(--rg-text-muted); text-align: center; margin-top: var(--rg-space-2); }
.sticky { position: relative; }
.bypostauthor {}
.alignleft { float: left; margin: 0 var(--rg-space-6) var(--rg-space-4) 0; }
.alignright { float: right; margin: 0 0 var(--rg-space-4) var(--rg-space-6); }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { margin-inline: calc(-1 * var(--rg-space-8)); }
.alignfull { margin-inline: calc(50% - 50vw); width: 100vw; max-width: 100vw; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--rg-accent);
  color: var(--rg-text-inverse);
  padding: var(--rg-space-3) var(--rg-space-6);
  z-index: 9999;
  transition: top var(--rg-transition-fast);
  font-weight: 600;
}

.skip-link:focus { top: 0; }

/* ==========================================================================
   16. RESPONSIVE — TABLET (max 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .rg-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .rg-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .rg-footer__main { grid-template-columns: 1fr 1fr; gap: var(--rg-space-10); }
  .rg-about__inner { gap: var(--rg-space-10); }
  .rg-about__badge { right: var(--rg-space-4); bottom: var(--rg-space-4); }
}

/* ==========================================================================
   17. RESPONSIVE — MOBILE (max 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root { --rg-header-height: 64px; }

  .rg-nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10,14,26,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: var(--rg-space-20) var(--rg-space-8);
    transition: right var(--rg-transition-base);
    border-left: 1px solid var(--rg-border);
    z-index: 999;
  }

  .rg-nav__menu.is-open { right: 0; }

  .rg-nav__menu a {
    font-size: var(--rg-text-lg);
    padding-block: var(--rg-space-3);
  }

  .rg-nav__cta { display: none; }
  .rg-menu-toggle { display: flex; }

  .rg-grid--2,
  .rg-grid--3,
  .rg-grid--4 { grid-template-columns: 1fr; }

  .rg-hero__stats { gap: var(--rg-space-8); }

  .rg-about__inner { grid-template-columns: 1fr; }
  .rg-about__image-wrap img { height: 300px; }
  .rg-about__features { grid-template-columns: 1fr; }

  .rg-footer__main { grid-template-columns: 1fr; gap: var(--rg-space-8); }
  .rg-footer__bottom { flex-direction: column; text-align: center; }

  .rg-section { padding-block: var(--rg-space-16); }
}

/* ==========================================================================
   18. PRINT STYLES
   ========================================================================== */
@media print {
  #rg-header, .rg-hero, #rg-footer, .rg-cta { display: none; }
  body { background: white; color: black; }
}
