/* Home Page Styles - Uses Global Theme System */
/* All colors now come from theme.css variables for single-hex control */

/* Legacy variable mapping for backward compatibility */
:root {
    --color-white: var(--o8-white);
    --color-light-gray: var(--o8-light-gray);
    --color-navy: var(--o8-theme);
    --color-navy-light: var(--o8-theme-light);
    --color-coral: var(--o8-accent);
    --color-coral-light: var(--o8-accent-light);
    --color-coral-dark: var(--o8-accent-dark);
    --color-text-primary: var(--o8-text-primary);
    --color-text-secondary: var(--o8-text-secondary);
    --color-text-muted: var(--o8-text-muted);
    --color-border: var(--o8-border);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

/* Background Colors - Light Theme */
.bg-primary-light {
    background: var(--color-white) !important;
}

.bg-section-alt {
    background: var(--color-light-gray) !important;
}

/* Override old dark classes */
.bg-primary-dark {
    background: var(--color-white) !important;
}

.bg-slate-solid {
    background: var(--color-light-gray) !important;
}

section {
    min-height: 1px;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    scroll-restoration: manual;
}

html, body {
    background: var(--color-white) !important;
    overflow-x: hidden;
    color: var(--color-text-primary);
}

body {
    scroll-behavior: smooth;
}

/* Custom Scrollbar - Uses theme accent */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--o8-accent) 0%, var(--o8-accent-dark) 100%);
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--o8-accent-light) 0%, var(--o8-accent) 100%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--o8-accent) #f1f5f9;
}

/* Logo Styles */
nav a[href="/"] {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

nav a[href="/"] img {
    background: transparent !important;
}

/* Navigation Links */
.nav-link {
    transition: all 0.3s ease;
    position: relative;
    color: var(--o8-theme);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--o8-accent);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    transform: translateY(-2px);
    color: var(--o8-accent);
}

.mobile-nav-link {
    transition: all 0.3s ease;
    color: var(--o8-white);
}

.mobile-nav-link:hover {
    transform: translateX(5px);
    color: var(--o8-accent);
}

/* Navbar Styles */
nav {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    border-bottom: none !important;
}

nav.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--o8-border) !important;
    box-shadow: 0 4px 30px var(--o8-theme-alpha-10);
}

nav.navbar-scrolled #navbar-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--o8-accent-alpha-10);
    border: 1px solid var(--o8-accent-alpha-20);
    border-radius: 9999px;
}

.hero-badge span {
    color: var(--o8-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--o8-theme-alpha-10);
    border: 1px solid var(--o8-theme-alpha-20);
    border-radius: 9999px;
}

.section-badge span {
    color: var(--o8-theme);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-badge .dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--o8-accent);
    border-radius: 50%;
}

/* Service Cards - Light Theme */
.service-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--o8-white);
    border: 1px solid var(--o8-theme-alpha-10);
    border-radius: 20px;
    box-shadow: 0 4px 25px -5px var(--o8-theme-alpha-10);
    overflow: hidden;
    opacity: 1 !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--o8-accent-alpha-05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--o8-accent-alpha-20);
    box-shadow: 0 20px 40px -10px var(--o8-theme-alpha-20), 0 0 0 1px var(--o8-accent-alpha-10);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card-icon {
    transition: all 0.4s ease;
    background: var(--o8-accent-alpha-10) !important;
    border: 1px solid var(--o8-accent-alpha-15) !important;
}

.service-card:hover .service-card-icon {
    background: var(--o8-accent-alpha-15) !important;
    transform: scale(1.1);
}

.service-card-icon svg {
    color: var(--o8-accent) !important;
}

/* Hero Stat Cards - Dark Theme */
.hero-stat-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 66, 95, 0.1), transparent);
    transition: left 0.6s ease;
}

.hero-stat-card:hover::before {
    left: 100%;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 66, 95, 0.4) !important;
    box-shadow: 0 15px 40px -10px rgba(236, 66, 95, 0.3);
}

/* Stat Cards in Regular Sections - Light Theme */
.stat-card {
    position: relative;
    overflow: visible;
    background: var(--color-white);
    border: 1px solid rgba(10, 30, 52, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 25px -5px rgba(10, 30, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 66, 95, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.stat-card:hover::before {
    width: 250px;
    height: 250px;
}

.stat-card > * {
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 66, 95, 0.2);
    box-shadow: 0 20px 50px -10px rgba(10, 30, 52, 0.15);
}

.stat-card .text-5xl,
.stat-card .text-6xl {
    transition: transform 0.3s ease;
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
    word-break: keep-all;
    white-space: nowrap;
    transform-origin: left center;
    color: var(--color-coral) !important;
}

.stat-card:hover .text-5xl,
.stat-card:hover .text-6xl {
    transform: scale(1.02);
}

/* Why Choose Us Section - Light Theme */
.why-choose-section {
    opacity: 1;
}

.why-choose-section.visible .why-choose-card {
    opacity: 1;
    transform: translateY(0);
}

.geometric-shape {
    position: absolute;
    border: 2px solid var(--o8-accent-alpha-10);
    pointer-events: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    border-radius: 50% 0 50% 0;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: -3%;
    border-radius: 0 50% 0 50%;
    transform: rotate(-30deg);
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
}

.why-choose-card {
    perspective: 1000px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    display: flex;
    height: 100%;
}

.why-choose-section.visible .why-choose-card {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-card:nth-child(1) { transition-delay: 0.1s; }
.why-choose-card:nth-child(2) { transition-delay: 0.3s; }
.why-choose-card:nth-child(3) { transition-delay: 0.5s; }

.card-inner {
    position: relative;
    background: var(--o8-white) !important;
    border: 1px solid var(--o8-theme-alpha-10) !important;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 25px -5px var(--o8-theme-alpha-10);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover .card-inner {
    transform: translateY(-12px);
    border-color: var(--o8-accent-alpha-20) !important;
    box-shadow: 0 25px 50px -10px var(--o8-theme-alpha-20);
}

.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--o8-accent) 0%, var(--o8-accent-dark) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px var(--o8-accent-alpha-30);
}

.why-choose-card:hover .icon-bg {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 40px var(--o8-accent-alpha-40);
}

.icon-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: transform 0.5s ease;
}

.why-choose-card:hover .icon-content {
    transform: rotate(-45deg) scale(1.1);
}

.icon-content svg {
    color: var(--o8-white) !important;
}

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

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--o8-theme);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.why-choose-card:hover .card-title {
    color: var(--o8-accent);
}

.card-description {
    font-size: 1rem;
    color: var(--o8-text-secondary);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.why-choose-card:hover .card-description {
    color: var(--o8-text-primary);
}

.card-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--o8-accent), transparent);
    transition: width 0.5s ease;
}

.why-choose-card:hover .card-line {
    width: 60%;
}

/* Process Section - Light Theme */
.process-section {
    position: relative;
}

.process-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--o8-accent-alpha-05) 0%, transparent 70%);
    pointer-events: none;
    animation: processFloat 15s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: -5%;
    animation-delay: 3s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes processFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--o8-theme-alpha-10) 20%, 
        var(--o8-theme-alpha-20) 50%, 
        var(--o8-theme-alpha-10) 80%, 
        transparent 100%);
    z-index: 0;
    display: none;
}

@media (min-width: 1024px) {
    .timeline-line {
        display: block;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-connector {
    position: absolute;
    top: 80px;
    left: 100%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--o8-accent-alpha-40), var(--o8-accent-alpha-10));
    transition: width 0.8s ease;
    z-index: 0;
    display: none;
}

@media (min-width: 1024px) {
    .process-step:not(:last-child) .step-connector {
        display: block;
    }
    
    .process-step:hover .step-connector {
        width: calc(100% - 80px);
    }
}

.step-number-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-bg {
    position: absolute;
    inset: 0;
    background: var(--o8-white);
    border: 2px solid var(--o8-theme-alpha-10);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px -5px var(--o8-theme-alpha-10);
}

.process-step:hover .step-number-bg {
    border-color: var(--o8-accent);
    box-shadow: 0 15px 40px -10px var(--o8-accent-alpha-30);
    transform: scale(1.1);
}

.step-number {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--o8-accent);
    z-index: 1;
    transition: transform 0.5s ease, color 0.5s ease;
}

.process-step:hover .step-number {
    transform: scale(1.2);
}

.step-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--o8-accent-alpha-30);
    border-radius: 50%;
    animation: stepPulse 2s ease-in-out infinite;
    opacity: 0;
}

.process-step:hover .step-pulse {
    animation: stepPulse 1s ease-in-out infinite;
}

@keyframes stepPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content {
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--o8-accent-alpha-10);
    border: 1px solid var(--o8-accent-alpha-15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--o8-accent);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(-5deg);
}

.process-step:hover .step-icon {
    transform: rotate(0deg) scale(1.15);
    background: var(--o8-accent-alpha-15);
    border-color: var(--o8-accent-alpha-30);
    box-shadow: 0 10px 30px -5px var(--o8-accent-alpha-20);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--o8-theme);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.process-step:hover .step-title {
    color: var(--o8-accent);
}

.step-description {
    font-size: 1rem;
    color: var(--o8-text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.process-step:hover .step-description {
    color: var(--o8-text-primary);
}

/* Stats Section - Light Theme */
.stats-section {
    position: relative;
}

.stats-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--o8-theme-alpha-10) 1px, transparent 1px),
        linear-gradient(90deg, var(--o8-theme-alpha-10) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.stats-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--o8-accent-alpha-10) 0%, transparent 70%);
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: -3%;
    animation-delay: 4s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.stat-item {
    position: relative;
}

.stat-card-wrapper {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.stat-card-bg {
    position: absolute;
    inset: 0;
    background: var(--o8-white);
    border: 1px solid var(--o8-theme-alpha-10);
    border-radius: 20px;
    box-shadow: 0 4px 25px -5px var(--o8-theme-alpha-10);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-item:hover .stat-card-bg {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--o8-accent-alpha-20);
    box-shadow: 0 25px 50px -10px var(--o8-theme-alpha-20);
}

.stat-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--o8-accent-alpha-10) 0%, transparent 70%);
    border-radius: 0 20px 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover .stat-card-bg::before {
    opacity: 1;
}

.stat-content {
    position: relative;
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 1;
}

.stat-number-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.stat-number-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--o8-accent-alpha-15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.stat-item:hover .stat-number-glow {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--o8-accent);
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-variant-numeric: tabular-nums;
}

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

@media (min-width: 1024px) {
    .stat-number {
        font-size: 4.5rem;
    }
}

.stat-label {
    font-size: 1rem;
    color: var(--o8-text-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--o8-text-primary);
}

.stat-progress-bar {
    position: relative;
    width: 100%;
    height: 4px;
    background: var(--o8-theme-alpha-10);
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--o8-accent), var(--o8-accent-dark));
    border-radius: 2px;
    transition: width 2s ease-out;
}

.stat-item:hover .stat-progress-fill {
    box-shadow: 0 0 15px var(--o8-accent-alpha-40);
}

/* CTA Section - Light Theme */
.cta-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at center, var(--o8-accent-alpha-05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 30% 70%, var(--o8-theme-alpha-10) 0%, transparent 50%);
    animation: ctaGradientMove 15s ease-in-out infinite;
}

@keyframes ctaGradientMove {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(20px, -20px); }
}

.cta-ripple {
    position: absolute;
    border: 2px solid var(--o8-accent-alpha-15);
    border-radius: 50%;
    animation: ctaRipple 4s ease-out infinite;
}

.ripple-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ripple-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.ripple-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes ctaRipple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.cta-content-card {
    position: relative;
    background: var(--o8-white);
    border: 1px solid var(--o8-theme-alpha-10);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 0 8px 40px -10px var(--o8-theme-alpha-10);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-content-card:hover {
    transform: translateY(-10px);
    border-color: var(--o8-accent-alpha-15);
    box-shadow: 0 25px 60px -15px var(--o8-theme-alpha-20);
}

.cta-heading {
    position: relative;
    color: var(--o8-theme);
}

.cta-description {
    position: relative;
    color: var(--o8-text-secondary);
}

.cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--o8-accent) 0%, var(--o8-accent-dark) 100%);
    color: var(--o8-white);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -5px var(--o8-accent-alpha-40);
    z-index: 1;
}

.cta-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--o8-accent-light) 0%, var(--o8-accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cta-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px -5px var(--o8-accent-alpha-50);
}

.cta-btn-primary:hover .cta-btn-glow {
    opacity: 1;
}

.cta-btn-text {
    position: relative;
    z-index: 1;
}

.cta-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--o8-theme);
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid var(--o8-theme-alpha-20);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cta-btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--o8-theme-alpha-10);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-btn-secondary:hover {
    transform: translateY(-4px);
    border-color: var(--o8-theme);
    box-shadow: 0 10px 30px -5px var(--o8-theme-alpha-20);
}

.cta-btn-secondary:hover::before {
    opacity: 1;
}

/* Text Effects */
.text-glow-coral {
    text-shadow: 0 0 30px var(--o8-accent-alpha-40);
}

/* Button Styles */
.btn-coral {
    background: linear-gradient(135deg, var(--o8-accent) 0%, var(--o8-accent-dark) 100%);
    color: var(--o8-white);
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px var(--o8-accent-alpha-40);
}

.btn-outline-navy {
    border: 2px solid var(--o8-theme-alpha-20);
    color: var(--o8-theme);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-navy:hover {
    background: var(--o8-theme-alpha-10);
    border-color: var(--o8-theme);
    transform: translateY(-2px);
}

/* Legacy button overrides */
.btn-cyan {
    background: linear-gradient(135deg, var(--o8-accent) 0%, var(--o8-accent-dark) 100%) !important;
    color: var(--o8-white) !important;
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px var(--o8-accent-alpha-40) !important;
}

.btn-outline {
    border: 2px solid var(--o8-theme-alpha-20) !important;
    color: var(--o8-theme) !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--o8-theme-alpha-10) !important;
    border-color: var(--o8-theme) !important;
    transform: translateY(-2px);
}

/* Magnetic Effect Styles */
.big-char {
    display: inline-block;
    color: var(--o8-accent);
    font-weight: 300;
    cursor: default;
    user-select: none;
    will-change: font-weight, text-shadow;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.magnetic-char {
    display: inline-block;
    will-change: font-weight, text-shadow;
}

/* Hero text specific styling */
#tech-talent, #ready {
    cursor: default;
    color: var(--o8-accent) !important;
    display: block;
    line-height: 1.1;
}

#hero-description {
    cursor: default;
    color: var(--o8-text-secondary) !important;
}

/* Hover effect for description */
.hover-effect-text {
    transition: color 0.3s ease;
}

.hover-effect-text:hover {
    color: var(--o8-theme) !important;
}

/* Hover color classes */
.hover\:text-coral:hover {
    color: var(--o8-accent) !important;
}

/* Footer link hover */
footer a:hover {
    color: var(--o8-accent);
}
