/*
Theme Name: Nexus Business Pro
Theme URI: https://nexus-business.com
Author: Nexus Themes
Author URI: https://nexus-business.com
Description: A premium, professional WordPress theme fully compatible with Elementor page builder. Features elegant navy and gold design, smooth animations, and modern business aesthetics.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nexus-business-pro
Tags: business, corporate, elementor, responsive, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options

Nexus Business Pro WordPress Theme, Copyright 2024 Nexus Themes
Nexus Business Pro is distributed under the terms of the GNU GPL
*/

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables & Root
   2. Reset & Base Styles
   3. Typography
   4. Layout & Grid
   5. Header & Navigation
   6. Hero Section
   7. Services Section
   8. About Section
   9. Statistics Section
   10. Team Section
   11. Testimonials Section
   12. CTA Section
   13. Footer
   14. Elementor Compatibility
   15. Responsive Design
   16. Animations
   ============================================ */

/* ============================================
   1. CSS VARIABLES & ROOT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Primary Colors */
    --navy-50: #f0f4f8;
    --navy-100: #d9e2ec;
    --navy-200: #bcccdc;
    --navy-300: #9fb3c8;
    --navy-400: #829ab1;
    --navy-500: #627d98;
    --navy-600: #486581;
    --navy-700: #334e68;
    --navy-800: #243b53;
    --navy-900: #102a43;
    --navy-950: #0a1929;
    
    /* Gold Colors */
    --gold-50: #fdf9f0;
    --gold-100: #f9edc8;
    --gold-200: #f5e1a0;
    --gold-300: #f0d578;
    --gold-400: #ecc950;
    --gold-500: #e6b800;
    --gold-600: #d4a800;
    --gold-700: #c29800;
    --gold-800: #b08800;
    --gold-900: #9e7800;
    
    /* Theme Variables */
    --primary-color: var(--navy-900);
    --secondary-color: var(--gold-500);
    --accent-color: var(--gold-400);
    --text-color: var(--navy-800);
    --text-light: var(--navy-600);
    --bg-color: var(--navy-50);
    --white: #ffffff;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Spacing */
    --section-padding: 6rem;
    --container-width: 1400px;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
    --shadow-soft-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px -10px rgba(230, 184, 0, 0.4);
    --shadow-glow-navy: 0 0 40px -10px rgba(16, 42, 67, 0.4);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-normal);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-gradient {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    color: var(--gold-500);
}

/* ============================================
   4. LAYOUT & GRID
   ============================================ */
.nexus-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.nexus-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.nexus-grid {
    display: grid;
    gap: 2rem;
}

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

@media (max-width: 1024px) {
    .nexus-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nexus-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nexus-grid-2,
    .nexus-grid-3,
    .nexus-grid-4 { grid-template-columns: 1fr; }
    
    :root {
        --section-padding: 4rem;
    }
}

/* Flex Utilities */
.nexus-flex {
    display: flex;
}

.nexus-flex-col { flex-direction: column; }
.nexus-items-center { align-items: center; }
.nexus-justify-center { justify-content: center; }
.nexus-justify-between { justify-content: space-between; }
.nexus-gap-2 { gap: 0.5rem; }
.nexus-gap-4 { gap: 1rem; }
.nexus-gap-6 { gap: 1.5rem; }
.nexus-gap-8 { gap: 2rem; }

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
.nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1.25rem 0;
}

.nexus-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

.nexus-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nexus-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nexus-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow var(--transition-normal);
}

.nexus-logo:hover .nexus-logo-icon {
    box-shadow: var(--shadow-glow-navy);
}

.nexus-logo-icon span {
    color: var(--gold-400);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
}

.nexus-logo-text {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--white);
    transition: color var(--transition-normal);
}

.nexus-header.scrolled .nexus-logo-text {
    color: var(--navy-900);
}

/* Navigation Menu */
.nexus-nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nexus-nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-normal);
}

.nexus-header.scrolled .nexus-nav-menu a {
    color: var(--navy-700);
}

.nexus-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition-normal);
}

.nexus-nav-menu a:hover {
    color: var(--gold-500);
}

.nexus-nav-menu a:hover::after {
    width: 100%;
}

/* Header Buttons */
.nexus-header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nexus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.nexus-btn-primary {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--white);
}

.nexus-btn-primary:hover {
    box-shadow: var(--shadow-glow-navy);
    transform: translateY(-2px);
}

.nexus-btn-gold {
    background: var(--gold-500);
    color: var(--navy-900);
}

.nexus-btn-gold:hover {
    background: var(--gold-600);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.nexus-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.nexus-header.scrolled .nexus-btn-outline {
    border-color: var(--navy-200);
    color: var(--navy-700);
}

.nexus-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nexus-header.scrolled .nexus-btn-outline:hover {
    background: var(--navy-50);
}

/* Mobile Menu Toggle */
.nexus-mobile-toggle {
    display: none;
    padding: 0.5rem;
    color: var(--white);
}

.nexus-header.scrolled .nexus-mobile-toggle {
    color: var(--navy-900);
}

@media (max-width: 1024px) {
    .nexus-nav-menu,
    .nexus-header-buttons {
        display: none;
    }
    
    .nexus-mobile-toggle {
        display: block;
    }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.nexus-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.nexus-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nexus-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nexus-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.95) 0%, rgba(36, 59, 83, 0.85) 50%, rgba(51, 78, 104, 0.7) 100%);
    z-index: 1;
}

.nexus-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 2;
    animation: pulse-slow 4s ease-in-out infinite;
}

.nexus-hero-glow-1 {
    width: 18rem;
    height: 18rem;
    background: var(--gold-500);
    top: 5rem;
    left: 2.5rem;
}

.nexus-hero-glow-2 {
    width: 24rem;
    height: 24rem;
    background: var(--navy-400);
    bottom: 5rem;
    right: 2.5rem;
    animation-delay: 2s;
}

.nexus-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.nexus-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .nexus-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-hero-visual {
        display: none;
    }
}

/* Hero Badge */
.nexus-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: var(--gold-400);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.nexus-hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gold-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.nexus-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.nexus-hero-title span {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.nexus-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 36rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero Buttons */
.nexus-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.nexus-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.nexus-hero-btn-primary {
    background: var(--gold-500);
    color: var(--navy-900);
}

.nexus-hero-btn-primary:hover {
    background: var(--gold-600);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.nexus-hero-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.nexus-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Stats */
.nexus-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nexus-hero-stat {
    text-align: left;
}

.nexus-hero-stat-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.nexus-hero-stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-400);
}

.nexus-hero-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
}

.nexus-hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual Card */
.nexus-hero-visual {
    position: relative;
}

.nexus-hero-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    animation: float 6s ease-in-out infinite;
}

.nexus-hero-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nexus-hero-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-hero-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--gold-400);
}

.nexus-hero-card-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.nexus-hero-card-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Progress Bar */
.nexus-progress {
    margin-bottom: 1rem;
}

.nexus-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.nexus-progress-label {
    color: rgba(255, 255, 255, 0.6);
}

.nexus-progress-value {
    color: var(--white);
    font-weight: 500;
}

.nexus-progress-bar {
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.nexus-progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, var(--gold-400) 0%, var(--gold-500) 100%);
    border-radius: 9999px;
}

.nexus-progress-achieved {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.nexus-progress-achieved-label {
    color: rgba(255, 255, 255, 0.6);
}

.nexus-progress-achieved-value {
    color: var(--gold-400);
    font-weight: 600;
}

/* Mini Stats Grid */
.nexus-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nexus-mini-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.nexus-mini-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.nexus-mini-stat-value {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Floating Badges */
.nexus-float-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.nexus-float-badge-1 {
    bottom: -1.5rem;
    left: -1.5rem;
    animation-delay: 1s;
}

.nexus-float-badge-2 {
    top: -1rem;
    right: -1rem;
    animation-delay: 2s;
}

.nexus-float-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-float-badge-icon.green {
    background: rgba(34, 197, 94, 0.2);
}

.nexus-float-badge-icon.gold {
    background: rgba(230, 184, 0, 0.2);
}

.nexus-float-badge-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.nexus-float-badge-icon.green svg {
    color: #4ade80;
}

.nexus-float-badge-icon.gold svg {
    color: var(--gold-400);
}

.nexus-float-badge-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.nexus-float-badge-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* ============================================
   7. SERVICES SECTION
   ============================================ */
.nexus-services {
    background: var(--navy-50);
    position: relative;
}

.nexus-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--navy-200) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.nexus-section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.nexus-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--navy-100);
    color: var(--navy-700);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.nexus-section-title {
    margin-bottom: 1.5rem;
}

.nexus-section-desc {
    font-size: 1.125rem;
    color: var(--navy-600);
}

/* Service Cards */
.nexus-service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.nexus-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.nexus-service-card:hover {
    box-shadow: var(--shadow-soft-lg);
    transform: translateY(-5px);
}

.nexus-service-card:hover::before {
    opacity: 0.05;
}

.nexus-service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-slow);
}

.nexus-service-card:hover .nexus-service-icon {
    transform: scale(1.1) rotate(3deg);
}

.nexus-service-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.nexus-service-icon.gold {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
}

.nexus-service-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.nexus-service-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.nexus-service-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.nexus-service-icon.rose {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}

.nexus-service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}

.nexus-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.nexus-service-card:hover .nexus-service-title {
    color: var(--navy-700);
}

.nexus-service-desc {
    color: var(--navy-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.nexus-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-700);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
}

.nexus-service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy-700);
    transition: width var(--transition-normal);
}

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

.nexus-service-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-normal);
}

.nexus-service-link:hover svg {
    transform: translate(2px, -2px);
}

/* ============================================
   8. ABOUT SECTION
   ============================================ */
.nexus-about {
    background: linear-gradient(to bottom, var(--navy-50), var(--white));
    position: relative;
}

.nexus-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .nexus-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* About Image */
.nexus-about-image-wrap {
    position: relative;
}

.nexus-about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft-lg);
}

.nexus-about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.nexus-about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 42, 67, 0.6), transparent);
}

.nexus-about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.nexus-about-badge-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nexus-about-badge-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gold-500);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nexus-about-badge-icon span {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy-900);
}

.nexus-about-badge-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.nexus-about-badge-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Floating Success Card */
.nexus-success-card {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .nexus-success-card {
        display: none;
    }
}

.nexus-success-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-success-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #22c55e;
}

.nexus-success-title {
    font-weight: 600;
    color: var(--navy-900);
}

.nexus-success-text {
    color: var(--navy-500);
    font-size: 0.875rem;
}

/* Decorative Elements */
.nexus-about-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.2;
}

.nexus-about-deco-1 {
    width: 6rem;
    height: 6rem;
    background: var(--gold-400);
    bottom: -1rem;
    left: -1rem;
}

.nexus-about-deco-2 {
    width: 4rem;
    height: 4rem;
    background: var(--navy-400);
    top: -1rem;
    left: -1rem;
}

/* About Content */
.nexus-about-content {
    space-y: 2rem;
}

.nexus-about-badge-inline {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-100);
    color: var(--gold-700);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.nexus-about-title {
    margin-bottom: 1.5rem;
}

.nexus-about-text {
    font-size: 1.125rem;
    color: var(--navy-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Features List */
.nexus-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .nexus-features-list {
        grid-template-columns: 1fr;
    }
}

.nexus-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.nexus-feature-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-500);
    margin-top: 2px;
    flex-shrink: 0;
}

.nexus-feature-text {
    color: var(--navy-700);
    font-size: 0.9375rem;
}

/* Values */
.nexus-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--navy-100);
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .nexus-values {
        grid-template-columns: 1fr;
    }
}

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

@media (min-width: 641px) {
    .nexus-value {
        text-align: left;
    }
}

.nexus-value-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--navy-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

@media (min-width: 641px) {
    .nexus-value-icon {
        margin-left: 0;
    }
}

.nexus-value-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--navy-700);
}

.nexus-value-title {
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.nexus-value-text {
    color: var(--navy-500);
    font-size: 0.875rem;
}

/* About Buttons */
.nexus-about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================
   9. STATISTICS SECTION
   ============================================ */
.nexus-stats {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    position: relative;
    overflow: hidden;
}

.nexus-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.1;
}

.nexus-stats-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: pulse-slow 4s ease-in-out infinite;
}

.nexus-stats-glow-1 {
    width: 16rem;
    height: 16rem;
    background: var(--gold-500);
    top: 25%;
    left: 25%;
}

.nexus-stats-glow-2 {
    width: 20rem;
    height: 20rem;
    background: var(--navy-400);
    bottom: 25%;
    right: 25%;
    animation-delay: 2s;
}

.nexus-stats .nexus-section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-400);
}

.nexus-stats .nexus-section-title {
    color: var(--white);
}

.nexus-stats .nexus-section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Stat Cards */
.nexus-stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-slow);
}

.nexus-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.nexus-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform var(--transition-slow);
}

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

.nexus-stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}

.nexus-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.nexus-stat-suffix {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold-400);
}

.nexus-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.nexus-stat-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity var(--transition-slow);
    filter: blur(20px);
    z-index: -1;
}

.nexus-stat-card:hover .nexus-stat-glow {
    opacity: 0.1;
}

/* ============================================
   10. TEAM SECTION
   ============================================ */
.nexus-team {
    background: var(--navy-50);
    position: relative;
}

.nexus-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--navy-200) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Team Cards */
.nexus-team-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-slow);
}

.nexus-team-card:hover {
    box-shadow: var(--shadow-soft-lg);
}

.nexus-team-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.nexus-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.nexus-team-card:hover .nexus-team-image img {
    transform: scale(1.05);
}

.nexus-team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 42, 67, 0.8), rgba(16, 42, 67, 0.2), transparent);
}

/* Social Links */
.nexus-team-social {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all var(--transition-slow);
}

.nexus-team-card:hover .nexus-team-social {
    opacity: 1;
    transform: translateY(0);
}

.nexus-team-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.nexus-team-social a:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.nexus-team-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Team Info */
.nexus-team-info {
    padding: 1.5rem;
    text-align: center;
}

.nexus-team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
    transition: color var(--transition-normal);
}

.nexus-team-card:hover .nexus-team-name {
    color: var(--navy-700);
}

.nexus-team-role {
    color: var(--gold-600);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.nexus-team-bio {
    color: var(--navy-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Team CTA */
.nexus-team-cta {
    margin-top: 4rem;
    text-align: center;
}

.nexus-team-cta-inner {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem 2rem;
}

@media (max-width: 640px) {
    .nexus-team-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

.nexus-team-cta-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nexus-team-cta-icon span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

.nexus-team-cta-title {
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.nexus-team-cta-text {
    color: var(--navy-600);
    font-size: 0.875rem;
}

/* ============================================
   11. TESTIMONIALS SECTION
   ============================================ */
.nexus-testimonials {
    background: linear-gradient(to bottom, var(--white), var(--navy-50));
    position: relative;
    overflow: hidden;
}

.nexus-testimonials-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.nexus-testimonials-glow-1 {
    width: 16rem;
    height: 16rem;
    background: var(--gold-400);
    top: 5rem;
    left: 2.5rem;
}

.nexus-testimonials-glow-2 {
    width: 20rem;
    height: 20rem;
    background: var(--navy-400);
    bottom: 5rem;
    right: 2.5rem;
}

/* Testimonial Carousel */
.nexus-testimonial-carousel {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
}

.nexus-testimonial-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-soft-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.nexus-testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    background: var(--gold-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-testimonial-quote svg {
    width: 2rem;
    height: 2rem;
    color: var(--gold-500);
}

.nexus-testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.nexus-testimonial-rating svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-400);
    fill: var(--gold-400);
}

.nexus-testimonial-text {
    font-size: 1.5rem;
    color: var(--navy-800);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
}

.nexus-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nexus-testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.nexus-testimonial-name {
    font-weight: 600;
    color: var(--navy-900);
}

.nexus-testimonial-role {
    color: var(--navy-500);
    font-size: 0.875rem;
}

.nexus-testimonial-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500), var(--gold-400));
}

/* Navigation */
.nexus-testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nexus-testimonial-btn {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--navy-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-700);
    transition: all var(--transition-normal);
}

.nexus-testimonial-btn:hover {
    background: var(--navy-50);
    border-color: var(--navy-300);
}

.nexus-testimonial-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.nexus-testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.nexus-testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--navy-200);
    transition: all var(--transition-normal);
}

.nexus-testimonial-dot.active {
    background: var(--gold-500);
    width: 2rem;
    border-radius: 9999px;
}

/* Client Logos */
.nexus-clients {
    margin-top: 5rem;
    text-align: center;
}

.nexus-clients-title {
    color: var(--navy-500);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.nexus-clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 4rem;
    opacity: 0.5;
}

.nexus-client-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-400);
    transition: color var(--transition-normal);
}

.nexus-client-logo:hover {
    color: var(--navy-600);
}

/* ============================================
   12. CTA SECTION
   ============================================ */
.nexus-cta {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    position: relative;
    overflow: hidden;
}

.nexus-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: pulse-slow 4s ease-in-out infinite;
}

.nexus-cta-glow-1 {
    width: 24rem;
    height: 24rem;
    background: var(--gold-500);
    top: 33%;
    left: 25%;
}

.nexus-cta-glow-2 {
    width: 20rem;
    height: 20rem;
    background: var(--navy-400);
    bottom: 33%;
    right: 25%;
    animation-delay: 2s;
}

.nexus-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .nexus-cta-grid {
        grid-template-columns: 1fr;
    }
}

.nexus-cta .nexus-section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-400);
}

.nexus-cta .nexus-section-title {
    color: var(--white);
}

.nexus-cta .nexus-section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Info */
.nexus-contact-info {
    space-y: 1.5rem;
}

.nexus-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nexus-contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nexus-contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-400);
}

.nexus-contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.nexus-contact-value {
    color: var(--white);
    font-weight: 500;
}

/* CTA Form */
.nexus-cta-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-3xl);
    padding: 2.5rem;
}

.nexus-cta-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.nexus-cta-form-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.nexus-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .nexus-form-row {
        grid-template-columns: 1fr;
    }
}

.nexus-form-group {
    margin-bottom: 1.25rem;
}

.nexus-form-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.nexus-form-input,
.nexus-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.9375rem;
    transition: all var(--transition-normal);
}

.nexus-form-input::placeholder,
.nexus-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nexus-form-input:focus,
.nexus-form-textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.1);
}

.nexus-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.nexus-form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.nexus-form-submit:hover {
    background: var(--gold-600);
    box-shadow: var(--shadow-glow);
}

.nexus-form-submit svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--transition-normal);
}

.nexus-form-submit:hover svg {
    transform: translateX(4px);
}

.nexus-form-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
}

/* ============================================
   13. FOOTER
   ============================================ */
.nexus-footer {
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.nexus-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500), var(--gold-400));
}

.nexus-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.5;
}

.nexus-footer-main {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.nexus-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
}

@media (max-width: 1024px) {
    .nexus-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nexus-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Brand */
.nexus-footer-brand {
    max-width: 24rem;
}

.nexus-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.nexus-footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border: 1px solid rgba(230, 184, 0, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-footer-logo-icon span {
    color: var(--gold-400);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
}

.nexus-footer-logo-text {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--white);
}

.nexus-footer-desc {
    color: var(--navy-300);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Footer Social */
.nexus-footer-social {
    display: flex;
    gap: 0.75rem;
}

.nexus-footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--navy-900);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-400);
    transition: all var(--transition-normal);
}

.nexus-footer-social a:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.nexus-footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Links */
.nexus-footer-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

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

.nexus-footer-links li {
    margin-bottom: 0.75rem;
}

.nexus-footer-links a {
    color: var(--navy-400);
    font-size: 0.9375rem;
    transition: color var(--transition-normal);
}

.nexus-footer-links a:hover {
    color: var(--gold-400);
}

/* Newsletter */
.nexus-newsletter {
    padding: 2rem 0;
    border-top: 1px solid var(--navy-800);
    border-bottom: 1px solid var(--navy-800);
    position: relative;
    z-index: 1;
}

.nexus-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (max-width: 768px) {
    .nexus-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
}

.nexus-newsletter-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.nexus-newsletter-text {
    color: var(--navy-400);
    font-size: 0.9375rem;
}

.nexus-newsletter-form {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 28rem;
}

@media (max-width: 640px) {
    .nexus-newsletter-form {
        flex-direction: column;
    }
}

.nexus-newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--navy-900);
    border: 1px solid var(--navy-800);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.9375rem;
    transition: border-color var(--transition-normal);
}

.nexus-newsletter-input::placeholder {
    color: var(--navy-500);
}

.nexus-newsletter-input:focus {
    outline: none;
    border-color: var(--gold-500);
}

.nexus-newsletter-btn {
    padding: 0.875rem 1.5rem;
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 600;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.nexus-newsletter-btn:hover {
    background: var(--gold-600);
}

.nexus-newsletter-btn svg {
    width: 1rem;
    height: 1rem;
}

/* Footer Bottom */
.nexus-footer-bottom {
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.nexus-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nexus-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

.nexus-copyright {
    color: var(--navy-400);
    font-size: 0.875rem;
}

.nexus-footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nexus-footer-legal a {
    color: var(--navy-400);
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

.nexus-footer-legal a:hover {
    color: var(--gold-400);
}

/* ============================================
   14. ELEMENTOR COMPATIBILITY
   ============================================ */

/* Elementor Canvas Support */
.elementor-template-canvas .nexus-header,
.elementor-template-canvas .nexus-footer {
    display: none;
}

/* Elementor Full Width */
.elementor-page .nexus-content {
    padding: 0;
}

.elementor-page .nexus-container {
    max-width: 100%;
    padding: 0;
}

/* Elementor Widget Styling */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
    font-family: var(--font-serif);
}

.elementor-widget-button .elementor-button {
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.elementor-widget-button .elementor-button:hover {
    transform: translateY(-2px);
}

/* Elementor Section Backgrounds */
.elementor-section.navy-bg {
    background: var(--navy-900);
}

.elementor-section.gold-accent .elementor-heading-title {
    color: var(--gold-500);
}

/* Elementor Form Styling */
.elementor-form .elementor-field-textual {
    border-radius: var(--radius-md);
    border: 1px solid var(--navy-200);
    padding: 0.875rem 1rem;
    transition: border-color var(--transition-normal);
}

.elementor-form .elementor-field-textual:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.1);
}

.elementor-form .elementor-button {
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: var(--radius-md);
    font-weight: 600;
    padding: 1rem 2rem;
}

.elementor-form .elementor-button:hover {
    background: var(--gold-600);
}

/* Elementor Card Widgets */
.elementor-widget-icon-box .elementor-icon-box-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-slow);
}

.elementor-widget-icon-box .elementor-icon-box-wrapper:hover {
    box-shadow: var(--shadow-soft-lg);
    transform: translateY(-5px);
}

/* Elementor Image Widget */
.elementor-widget-image img {
    border-radius: var(--radius-xl);
}

/* Elementor Tabs */
.elementor-widget-tabs .elementor-tab-title {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--navy-700);
}

.elementor-widget-tabs .elementor-tab-title.elementor-active {
    color: var(--gold-500);
}

/* Elementor Testimonial */
.elementor-widget-testimonial .elementor-testimonial-content {
    font-family: var(--font-sans);
    font-style: italic;
    color: var(--navy-700);
}

/* Elementor Counter */
.elementor-widget-counter .elementor-counter-number-wrapper {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--navy-900);
}

/* Elementor Progress Bar */
.elementor-widget-progress .elementor-progress-wrapper {
    border-radius: 9999px;
    background: var(--navy-100);
}

.elementor-widget-progress .elementor-progress-bar {
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
}

/* Elementor Social Icons */
.elementor-widget-social-icons .elementor-social-icon {
    background: var(--navy-100);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.elementor-widget-social-icons .elementor-social-icon:hover {
    background: var(--gold-500);
}

.elementor-widget-social-icons .elementor-social-icon:hover svg {
    fill: var(--navy-900);
}

/* Elementor Menu */
.elementor-nav-menu--main .elementor-nav-menu a {
    font-weight: 500;
    color: var(--navy-700);
}

.elementor-nav-menu--main .elementor-nav-menu a:hover {
    color: var(--gold-500);
}

.elementor-nav-menu--main .elementor-item-active {
    color: var(--gold-500) !important;
}

/* ============================================
   15. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1280px) {
    :root {
        --container-padding: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .nexus-nav-menu,
    .nexus-header-buttons {
        display: none;
    }
    
    .nexus-mobile-toggle {
        display: block;
    }
    
    .nexus-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-hero-visual {
        display: none;
    }
    
    .nexus-about-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
        --container-padding: 1rem;
    }
    
    .nexus-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nexus-features-list {
        grid-template-columns: 1fr;
    }
    
    .nexus-values {
        grid-template-columns: 1fr;
    }
    
    .nexus-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .nexus-newsletter-form {
        flex-direction: column;
    }
    
    .nexus-footer-bottom-inner {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .nexus-hero-buttons {
        flex-direction: column;
    }
    
    .nexus-hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nexus-about-buttons {
        flex-direction: column;
    }
    
    .nexus-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nexus-form-row {
        grid-template-columns: 1fr;
    }
    
    .nexus-testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .nexus-testimonial-text {
        font-size: 1.125rem;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

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

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

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Reveal Animation */
.nexus-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.nexus-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.nexus-delay-100 { transition-delay: 100ms; }
.nexus-delay-200 { transition-delay: 200ms; }
.nexus-delay-300 { transition-delay: 300ms; }
.nexus-delay-400 { transition-delay: 400ms; }
.nexus-delay-500 { transition-delay: 500ms; }

/* Hover Transitions */
.nexus-transition {
    transition: all var(--transition-normal);
}

.nexus-transition-transform {
    transition: transform var(--transition-normal);
}

.nexus-transition-opacity {
    transition: opacity var(--transition-normal);
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* WordPress Alignment */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--navy-500);
    text-align: center;
    padding: 0.5rem 0;
}

/* Screen Reader Text */
.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;
}

.screen-reader-text:focus {
    background-color: var(--navy-100);
    clip: auto !important;
    clip-path: none;
    color: var(--navy-900);
    display: block;
    font-size: 0.875rem;
    height: auto;
    left: 5px;
    padding: 15px 23px 14px;
    top: 5px;
    width: auto;
    z-index: 100000;
}
