/*
 * Camjez Consulting - Modern Financial Advisory Website
 * Professional, Trust-Building Design for Financial Services
 */

/* ===== CSS RESET & BASE STYLES ===== */
:root {
    /* Colors - Professional Financial Theme */
    --primary-color: #1e3a8a;         /* Deep professional blue */
    --primary-dark: #1e40af;          /* Darker blue */
    --primary-light: #3b82f6;         /* Bright blue */
    --secondary-color: #f59e0b;       /* Professional gold */
    --secondary-dark: #d97706;        /* Deep amber */
    --accent-color: #10b981;          /* Success green accent */
    --logo-green: #22c55e;            /* Logo green color */
    --logo-green-dark: #16a34a;       /* Darker logo green */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Neutrals */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #fbbf24);
    --gradient-hero: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.85) 50%, rgba(245, 158, 11, 0.15) 100%);
    --gradient-cta: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(30, 58, 138, 0.15);
    --shadow-card: 0 4px 20px rgba(30, 58, 138, 0.08);
    --shadow-hover: 0 8px 30px rgba(30, 58, 138, 0.15);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Animations */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    /* Modern professional background with transparency */
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(249, 250, 251, 0.95) 0%, 
            rgba(255, 255, 255, 0.98) 25%, 
            rgba(248, 250, 252, 0.96) 50%,
            rgba(255, 255, 255, 0.99) 75%,
            rgba(249, 250, 251, 0.97) 100%
        );
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Additional subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(30, 58, 138, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.92) 0%, 
        rgba(34, 197, 94, 0.85) 100%);
    padding: var(--spacing-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    font-size: var(--font-size-sm);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.1);
}

/* ===== NAVIGATION ===== */
.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.06);
    padding: var(--spacing-md) 0;
    top: 30px;
    transition: all var(--transition-normal);
}

.glass-nav.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
}

/* Brand Logo */
.brand-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xs) 0;
}

.brand-logo-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 45px;
    object-fit: contain;
    transition: all var(--transition-fast);
    /* Clean SVG rendering */
    background: transparent;
    opacity: 0.95;
    position: relative;
}

/* Alternative approach for white background removal */
.logo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.brand-logo:hover .logo-image {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.25));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--logo-green);
    letter-spacing: -0.02em;
    margin-bottom: 0.1rem;
    text-shadow: 0 1px 3px rgba(34, 197, 94, 0.2);
    transition: all var(--transition-normal);
}

.brand-logo:hover .brand-name {
    color: var(--logo-green-dark);
    text-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Brand */
@media (max-width: 768px) {
    .brand-container {
        gap: var(--spacing-sm);
    }
    
    .logo-image {
        height: 38px;
        max-width: 38px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
}

/* Scrolled Navbar Brand */
.navbar.scrolled .logo-image {
    height: 40px;
    max-width: 40px;
}

.navbar.scrolled .brand-name {
    font-size: 1rem;
}

.navbar.scrolled .brand-tagline {
    font-size: 0.7rem;
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.1);
}

.navbar-nav .nav-link i {
    font-size: var(--font-size-sm);
}

/* Dropdown */
.glass-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-sm);
}

.dropdown-item {
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-family: var(--font-family-primary);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta {
    background: var(--gradient-cta);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
    position: relative;
    z-index: 1;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(249, 250, 251, 0.4) 0%, 
        rgba(30, 58, 138, 0.08) 25%,
        rgba(34, 197, 94, 0.06) 50%,
        rgba(245, 158, 11, 0.04) 75%,
        rgba(255, 255, 255, 0.6) 100%);
    background-size: 400% 400%;
    animation: subtleGradientShift 20s ease infinite;
    z-index: -3;
}

@keyframes subtleGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 0% 75%; }
    100% { background-position: 0% 50%; }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* SVG de fondo financiero */
        url('../images/hero-financial-bg.svg'),
        /* Financial grid pattern */
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        /* Geometric shapes */
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(46, 225, 73, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(0, 161, 157, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 35%),
        /* Hexagonal pattern */
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(46, 225, 73, 0.12) 0%, transparent 40%);
    background-size: 
        100% 100%,
        50px 50px,
        50px 50px,
        600px 600px,
        800px 800px,
        700px 700px,
        500px 500px,
        400px 400px,
        600px 600px;
    background-position:
        center center,
        0 0,
        0 0,
        0% 0%,
        100% 100%,
        50% 50%,
        25% 75%,
        75% 25%,
        100% 0%;
    animation: patternFloat 20s ease-in-out infinite;
    z-index: -2;
}

@keyframes patternFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(10px) translateY(-5px);
    }
    66% {
        transform: translateX(-5px) translateY(10px);
    }
}

/* Overlay para mejorar legibilidad del texto */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-content {
    padding: var(--spacing-2xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
}

.hero-cta {
    margin-bottom: var(--spacing-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: var(--spacing-3xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    width: 300px;
    height: 200px;
}

.hero-card.floating {
    animation: float 6s ease-in-out infinite;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.card-title {
    font-weight: 600;
    color: var(--text-primary);
}

.card-chart {
    display: flex;
    align-items: end;
    gap: var(--spacing-sm);
    height: 80px;
}

.chart-bar {
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    width: 20px;
    animation: growUp 1s ease-out forwards;
    animation-delay: calc(var(--i) * 0.2s);
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

.hero-float-card {
    position: absolute;
}

/* ===== HERO WIDE LAYOUT ===== */
.hero-content-wide {
    padding: var(--spacing-3xl) var(--spacing-xs);
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title-large {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.text-gradient-large {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.text-highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
}

.hero-subtitle-wide {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-wide {
    margin-bottom: var(--spacing-4xl);
}

.btn-xl {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.hero-stats-wide {
    margin-top: var(--spacing-4xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item-large {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.stat-item-large:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.stat-item-large .stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item-large .stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual Background - Widgets Agrandados */
.hero-visual-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-financial-chart {
    position: absolute;
    bottom: 12%;
    right: 6%;
    width: 220px;
    height: 160px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: float 8s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.chart-container {
    display: flex;
    align-items: end;
    gap: var(--spacing-sm);
    height: 100%;
    justify-content: center;
}

.hero-financial-chart .chart-bar {
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
    width: 22px;
    animation: growUp 2s ease-out forwards;
    animation-delay: calc(var(--i) * 0.3s);
}

.hero-financial-chart .chart-bar:nth-child(1) { animation-delay: 0.2s; }
.hero-financial-chart .chart-bar:nth-child(2) { animation-delay: 0.4s; }
.hero-financial-chart .chart-bar:nth-child(3) { animation-delay: 0.6s; }
.hero-financial-chart .chart-bar:nth-child(4) { animation-delay: 0.8s; }
.hero-financial-chart .chart-bar:nth-child(5) { animation-delay: 1.0s; }
.hero-financial-chart .chart-bar:nth-child(6) { animation-delay: 1.2s; }

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    animation: floatRandom 12s ease-in-out infinite;
    white-space: nowrap;
    min-width: 160px;
}

.floating-card:nth-child(1) {
    top: 18%;
    left: 4%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 62%;
    left: 6%;
    animation-delay: 3s;
}

.floating-card:nth-child(3) {
    top: 32%;
    right: 4%;
    animation-delay: 6s;
}

.floating-card i {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
}

@keyframes floatRandom {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% { 
        transform: translateY(-12px) translateX(8px) scale(1.02);
    }
    50% { 
        transform: translateY(-6px) translateX(-8px) scale(0.98);
    }
    75% { 
        transform: translateY(-18px) translateX(6px) scale(1.01);
    }
}

/* Responsive adjustments for wide hero */
@media (max-width: 1600px) {
    .hero-content-wide {
        max-width: 1400px;
        padding: var(--spacing-2xl) var(--spacing-sm);
    }
}

@media (max-width: 1400px) {
    .hero-content-wide {
        padding: var(--spacing-2xl) var(--spacing-md);
        max-width: 1200px;
    }
    
    .hero-title-large {
        max-width: 1100px;
    }
    
    .hero-subtitle-wide {
        max-width: 900px;
    }
    
    .hero-financial-chart {
        width: 200px;
        height: 140px;
    }
    
    .floating-card {
        min-width: 140px;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 1200px) {
    .hero-content-wide {
        padding: var(--spacing-2xl) var(--spacing-sm);
        max-width: 100%;
    }
    
    .hero-title-large {
        font-size: clamp(3rem, 8vw, 6rem);
        max-width: 1000px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .hero-financial-chart {
        bottom: 15%;
        right: 5%;
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero-content-wide {
        padding: var(--spacing-xl) var(--spacing-xs);
    }
    
    .hero-title-large {
        font-size: clamp(2.5rem, 9vw, 4rem);
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-subtitle-wide {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-2xl);
        max-width: 100%;
    }
    
    .btn-xl {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--font-size-base);
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta-wide {
        margin-bottom: var(--spacing-2xl);
    }
    
    .hero-financial-chart {
        display: none;
    }
    
    .stat-item-large .stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .hero-stats-wide {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content-wide {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-stats-wide .row {
        gap: var(--spacing-sm);
    }
    
    .stat-item-large {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-title-large {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card.top {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.hero-float-card.bottom {
    bottom: 20%;
    left: 10%;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.25rem;
}

/* ===== SECTIONS ===== */
.services-section,
.why-choose-section,
.blog-preview-section {
    padding: var(--spacing-3xl) 0;
}

.cta-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.08) 0%, 
        rgba(34, 197, 94, 0.1) 100%);
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.05);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
}

/* ===== SERVICE CARDS ===== */
.service-card-modern {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    transition: all var(--transition-normal);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--logo-green), var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.12);
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(255, 255, 255, 0.92);
}

.service-card-modern:hover::before {
    opacity: 1;
}

/* Efecto de zoom para tarjetas interactivas - Mayor especificidad */
.service-card-modern.service-card-interactive {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    cursor: pointer;
}

.service-card-modern.service-card-interactive:hover {
    transform: scale(1.25) translateY(-8px) !important; /* Combina zoom con elevación */
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(0, 102, 204, 0.3) !important;
}

/* Grid de servicios con mejor espaciado */
#services-grid {
    margin-bottom: var(--spacing-3xl);
}

#services-grid .col-lg-4 {
    padding: 0 1.5rem;
}

/* Mejorar tamaño del texto en las cards */
.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.service-features i {
    color: var(--success-color);
    margin-top: 2px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: var(--spacing-sm);
}

/* ===== SERVICE CARDS HOVER ZOOM ===== */
.service-card-modern.service-card-interactive {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Transición completa */
    cursor: pointer;
}

.service-card-modern.service-card-interactive:hover {
    transform: scale(1.05) translateY(-8px); /* Escala + elevación */
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 204, 0.3);
}

/* ===== ENHANCED IRA CHART ===== */
.enhanced-ira-chart {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.enhanced-ira-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.chart-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.chart-header .chart-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.chart-header .chart-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Barras del Gráfico Mejoradas */
.chart-bars-container {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: end;
    min-height: 180px;
}

.chart-bar {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.bar-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-md);
    min-height: 160px;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-lg);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.traditional-fill {
    background: linear-gradient(180deg, 
        rgba(0, 102, 204, 0.8) 0%, 
        rgba(0, 102, 204, 0.6) 100%);
    height: 78%;
    animation: fillTraditional 1.5s ease-out 0.5s both;
}

.roth-fill {
    background: linear-gradient(180deg, 
        rgba(46, 225, 73, 0.8) 0%, 
        rgba(46, 225, 73, 0.6) 100%);
    height: 100%;
    animation: fillRoth 1.5s ease-out 0.8s both;
}

@keyframes fillTraditional {
    from { height: 0%; }
    to { height: 78%; }
}

@keyframes fillRoth {
    from { height: 0%; }
    to { height: 100%; }
}

.bar-label {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: auto;
}

.bar-details {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bar-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.bar-subtext {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* Métricas Adicionales */
.chart-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.metric-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1;
}

/* Fuente del Gráfico */
.chart-source {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.chart-source i {
    color: var(--success-color);
}

/* Responsive para el Gráfico */
@media (max-width: 768px) {
    .chart-metrics {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .metric-item {
        padding: var(--spacing-xs);
    }
    
    .bar-content {
        min-height: 120px;
        padding: var(--spacing-sm);
    }
    
    .chart-bars-container {
        min-height: 140px;
    }
}

/* Estilos para destacados del artículo */
.featured-highlights {
    margin: var(--spacing-lg) 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

/* ===== RETIREMENT PLANS CAROUSEL ===== */
.retirement-plans-carousel {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(248, 252, 255, 0.98));
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    box-shadow: 0 25px 80px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.retirement-plans-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    gap: var(--spacing-sm);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Carousel Container */
.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    margin-right: var(--spacing-md);
}

.carousel-slide:last-child {
    margin-right: 0;
}

/* Plan Content Styles */
.plan-content {
    padding: var(--spacing-lg);
}

.plan-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.traditional-badge {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
}

.roth-badge {
    background: linear-gradient(135deg, #2ee149, #1ca832);
    color: white;
}

.company-badge {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: white;
}

.simple-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.sep-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.plan-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* Plan Highlights */
.plan-highlights {
    margin-bottom: var(--spacing-lg);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(46, 225, 73, 0.05);
    transform: translateX(5px);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Benefit Cards */
.plan-benefits {
    margin-bottom: var(--spacing-lg);
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.benefit-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Plan Buttons */
.plan-btn {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-traditional {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
}

.btn-roth {
    background: linear-gradient(135deg, #2ee149, #1ca832);
    color: white;
}

.btn-company {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: white;
}

.btn-simple {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-sep {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Plan Visual Charts */
.plan-visual {
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-chart {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Tax Savings Demo (Traditional IRA) */
.tax-savings-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.tax-before, .tax-after {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    width: 100%;
}

.tax-before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
}

.tax-after {
    background: linear-gradient(135deg, rgba(46, 225, 73, 0.1), rgba(28, 168, 50, 0.1));
}

.tax-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tax-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tax-savings {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.tax-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

/* Growth Demo (Roth IRA) */
.growth-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.contribution, .final-amount {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.contrib-label, .final-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contrib-amount, .final-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.final-note {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.growth-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.growth-arrow span {
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

/* Matching Demo (401k) */
.matching-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    text-align: center;
}

.employee-contrib, .employer-contrib, .total-contrib {
    flex: 1;
    min-width: 80px;
}

.contrib-source {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contrib-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contrib-amount.total {
    font-size: 1.3rem;
    color: var(--success-color);
}

.plus-sign, .equals-sign {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.free-money {
    font-size: 0.7rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Simplicity Demo (SIMPLE IRA) */
.simplicity-demo {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.complexity-meter, .cost-meter, .benefit-meter {
    text-align: center;
}

.meter-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.meter-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.meter-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.simple-fill {
    background: linear-gradient(90deg, #10b981, #059669);
}

.cost-fill {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.benefit-fill {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.meter-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Contribution Scenarios (SEP IRA) */
.contribution-scenarios {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.scenario {
    text-align: center;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.scenario.highlighted {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.scenario:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scenario-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.scenario-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.scenario-percent {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Auto-play indicator */
.auto-play-indicator {
    margin-top: var(--spacing-lg);
    height: 4px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.1s linear;
}

/* Carousel CTA */
.carousel-cta {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
}

.carousel-cta h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .retirement-plans-carousel {
        padding: var(--spacing-lg);
        margin: var(--spacing-md) 0;
    }
    
    .carousel-controls {
        margin-bottom: var(--spacing-lg);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-slide {
        padding: var(--spacing-md);
    }
    
    .plan-content {
        padding: var(--spacing-md);
    }
    
    .plan-title {
        font-size: 1.5rem;
    }
    
    .growth-demo, .matching-demo {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .growth-arrow {
        transform: rotate(90deg);
    }
    
    .carousel-cta {
        padding: var(--spacing-lg);
    }
    
    .carousel-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .carousel-cta .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .carousel-indicators {
        gap: var(--spacing-xs);
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .plan-highlights {
        margin-bottom: var(--spacing-md);
    }
    
    .highlight-item {
        padding: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .benefit-card {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.05) 0%, 
        rgba(248, 252, 255, 0.8) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(0, 102, 204, 0.03), 
        rgba(46, 225, 73, 0.03));
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.card-1 i {
    color: #0066cc;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation: float 6s ease-in-out infinite 2s;
}

.card-2 i {
    color: #2ee149;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation: float 6s ease-in-out infinite 4s;
}

.card-3 i {
    color: #7c3aed;
}

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

/* Featured Retirement Section */
.featured-retirement-section {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(248, 252, 255, 0.95));
}

.retirement-article-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.05);
    position: relative;
    overflow: hidden;
}

.retirement-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.retirement-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.article-category {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.article-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.tag {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 0.25rem var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    color: white;
}

/* All Articles Section */
.all-articles-section {
    padding: var(--spacing-section) 0;
}

.filter-tabs {
    margin-bottom: var(--spacing-xl);
}

.filter-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 102, 204, 0.2);
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    margin: 0 var(--spacing-xs);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.filter-btn .count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.blog-article-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.05);
}

.blog-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.1), 
        rgba(46, 225, 73, 0.1));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.retirement-badge {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
}

.general-badge {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-article-card:hover .card-overlay {
    opacity: 1;
}

.overlay-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overlay-link:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.card-content {
    padding: var(--spacing-lg);
}

.continue-reading {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.continue-reading:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.05) 0%, 
        rgba(248, 252, 255, 0.8) 100%);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.newsletter-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form .form-control {
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.newsletter-form .btn {
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 600;
}

/* No Articles Section */
.no-articles-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.no-articles-content {
    max-width: 500px;
    margin: 0 auto;
}

/* Filter Animation */
.blog-article-card.hidden {
    display: none;
}

.blog-article-card.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-cards {
        height: 300px;
    }
    
    .floating-card {
        min-width: 100px;
        padding: var(--spacing-md);
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .retirement-article-card {
        padding: var(--spacing-lg);
    }
    
    .card-header {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .filter-btn {
        display: block;
        margin: var(--spacing-xs) 0;
        width: 100%;
    }
    
    .newsletter-card {
        padding: var(--spacing-lg);
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .floating-card {
        min-width: 80px;
        padding: var(--spacing-sm);
    }
    
    .article-tags {
        gap: 0.25rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem var(--spacing-xs);
    }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.features-list {
    margin-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h6 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
}

.why-visual {
    position: relative;
    padding: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
}

.stars {
    color: var(--warning-color);
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    font-size: 2rem;
    color: var(--primary-color);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.success-metrics {
    display: flex;
    gap: var(--spacing-lg);
}

.metric {
    background: rgba(0, 161, 157, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    flex: 1;
}

.metric-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--secondary-color);
}

.metric-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: var(--spacing-xl);
}

.cta-note {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 161, 157, 0.02) 100%);
}

/* Enhanced Blog Header */
.blog-header-content {
    padding-right: var(--spacing-xl);
}

.blog-header-content .section-badge {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: inline-flex;
    align-items: center;
}

/* Newsletter Card */
.newsletter-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.newsletter-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto var(--spacing-md);
}

.newsletter-card h6 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.newsletter-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
}

.newsletter-form .input-group {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.newsletter-form .form-control {
    border: none;
    padding: var(--spacing-md);
    flex: 1;
    border-radius: 0;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: var(--spacing-md);
    border: none;
}

.newsletter-note {
    color: var(--text-light);
    font-size: var(--font-size-xs);
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

/* Featured Article */
.featured-article {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.featured-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    display: inline-flex;
    align-items: center;
}

.featured-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.featured-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.featured-title a:hover {
    color: var(--primary-color);
}

.featured-excerpt {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.author-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.publish-date {
    color: var(--text-light);
    font-size: var(--font-size-xs);
}

.article-tags {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.tag {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--white);
}

.tag-retirement { background: #6c5ce7; }
.tag-investment { background: #00b894; }

.featured-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Featured Visual */
.featured-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
}

.featured-image {
    width: 100%;
    max-width: 400px;
}

.featured-chart {
    background: rgba(0, 102, 204, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.chart-title {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.chart-bar {
    position: relative;
}

.chart-bar::before {
    content: '';
    display: block;
    height: 40px;
    border-radius: var(--radius-md);
    transition: width 2s ease-out;
    margin-bottom: var(--spacing-sm);
}

.chart-bar.traditional::before {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    width: 85%;
}

.chart-bar.roth::before {
    background: linear-gradient(135deg, #00b894, #00a085);
    width: 100%;
}

.bar-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.bar-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    float: right;
}

/* Recent Articles */
.recent-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.recent-articles-header h4 {
    color: var(--text-primary);
    margin: 0;
}

.articles-filter {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Enhanced Blog Cards */
.blog-card-enhanced {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.blog-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 204, 0.3);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.blog-bookmark {
    cursor: pointer;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.blog-bookmark:hover {
    color: var(--primary-color);
}

.blog-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.blog-category {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category.credit { background: #e17055; }
.blog-category.investment { background: #00b894; }
.blog-category.business { background: #6c5ce7; }

.blog-date {
    color: var(--text-light);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.blog-card-enhanced .blog-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.blog-card-enhanced .blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card-enhanced .blog-title a:hover {
    color: var(--primary-color);
}

.blog-card-enhanced .blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.read-time {
    color: var(--text-light);
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
}

.blog-card-enhanced .blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
    font-size: var(--font-size-sm);
}

.blog-card-enhanced .blog-link:hover {
    color: var(--primary-dark);
    gap: var(--spacing-sm);
}

/* Knowledge Resources */
.knowledge-resources {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-md);
}

.knowledge-resources h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.knowledge-resources p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.resource-stats {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: flex-end;
}

.resource-stats .stat-item {
    text-align: center;
}

.resource-stats .stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
}

.resource-stats .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.resource-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin: 0 auto var(--spacing-md);
}

.resource-card h6 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.resource-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.resource-link:hover {
    color: var(--primary-dark);
}

/* Blog CTA */
.blog-cta {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>');
    pointer-events: none;
}

.blog-cta h5 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.blog-cta p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
}

.blog-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Blog Section */
@media (max-width: 768px) {
    .blog-header-content {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .featured-article {
        padding: var(--spacing-xl);
    }
    
    .featured-title {
        font-size: var(--font-size-2xl);
    }
    
    .featured-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .recent-articles-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .resource-stats {
        justify-content: center;
        margin-top: var(--spacing-lg);
    }
    
    .blog-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .featured-visual {
        display: none;
    }
    
    .newsletter-card {
        padding: var(--spacing-lg);
    }
    
    .knowledge-resources {
        padding: var(--spacing-xl);
    }
    
    .resource-stats {
        gap: var(--spacing-lg);
    }
    
    .blog-cta {
        padding: var(--spacing-xl);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    margin-top: var(--spacing-3xl);
}

.footer-main {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.footer-brand {
    margin-bottom: var(--spacing-xl);
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .brand-tagline {
    color: var(--gray-300);
}

.footer-description {
    color: var(--gray-300);
    margin: var(--spacing-lg) 0;
    line-height: 1.6;
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-trust .trust-item {
    font-size: var(--font-size-sm);
    color: var(--gray-300);
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--gray-300);
}

.contact-item i {
    color: var(--primary-light);
    width: 16px;
}

.contact-item a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-cta {
    margin-bottom: var(--spacing-xl);
}

.footer-cta h6 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: var(--spacing-xl) 0;
}

.footer-copyright {
    color: var(--gray-300);
    margin: 0;
    font-size: var(--font-size-sm);
}

.footer-legal {
    text-align: right;
}

.legal-text {
    color: var(--gray-300);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-xs);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-cta);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 161, 157, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 161, 157, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 161, 157, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    display: flex;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        text-align: center;
    }
    
    .trust-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .success-metrics {
        flex-direction: column;
    }
    
    .footer-legal {
        text-align: left;
        margin-top: var(--spacing-md);
    }
    
    .floating-cta {
        right: 20px;
        bottom: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-float-card {
        display: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.glass-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Legacy Bootstrap compatibility */
.service-card {
    transition: transform 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: var(--gradient-hero);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: center;
}

.contact-section {
    padding: var(--spacing-3xl) 0;
    max-width: 100%;
    overflow-x: hidden;
}

.contact-section .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Enhanced Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.form-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.form-section {
    margin-bottom: var(--spacing-3xl);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: var(--spacing-2xl);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.section-title {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) 3rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    background: var(--white);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.field-icon {
    position: absolute;
    left: var(--spacing-md);
    top: calc(var(--font-size-sm) + var(--spacing-sm) + var(--spacing-md));
    color: var(--text-light);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.form-group.focused .field-icon,
.form-group.filled .field-icon {
    color: var(--primary-color);
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: var(--success-color);
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--danger-color);
}

.char-counter {
    text-align: right;
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-top: var(--spacing-xs);
}

.privacy-notice {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    font-size: var(--font-size-sm);
    color: var(--success-color);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.form-submit {
    text-align: center;
}

.submit-note {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Success and Error Messages */
.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    text-align: center;
    color: var(--success-color);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: var(--spacing-lg);
}

.next-steps {
    margin-top: var(--spacing-2xl);
    text-align: left;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.next-steps h6 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.next-steps a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    color: var(--danger-color);
}

.error-message ul {
    margin: var(--spacing-sm) 0 0 0;
    padding-left: var(--spacing-lg);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-info-card,
.trust-signals-card,
.quick-actions-card,
.testimonial-preview {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.contact-info-card h5,
.trust-signals-card h6,
.quick-actions-card h6 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.method-content h6 {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.method-content small {
    color: var(--text-light);
    font-size: var(--font-size-xs);
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--gradient-secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    font-weight: 500;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.testimonial-preview {
    background: var(--gradient-primary);
    color: var(--white);
}

.testimonial-content .stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author strong {
    color: var(--white);
    display: block;
}

.testimonial-author small {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
}

/* ===== RESPONSIVE CONTACT STYLES ===== */
@media (max-width: 768px) {
    .contact-form-container {
        padding: var(--spacing-xl);
        margin: 0;
    }
    
    .form-section {
        margin-bottom: var(--spacing-xl);
        padding-bottom: var(--spacing-lg);
    }
    
    .contact-sidebar {
        margin-top: var(--spacing-2xl);
    }
    
    .quick-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .quick-btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .contact-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm) 2.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .contact-form-container {
        padding: var(--spacing-lg);
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .form-header h2 {
        font-size: var(--font-size-3xl);
    }
    
    .quick-buttons {
        flex-direction: column;
    }
    
    .contact-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact-section .row > * {
        padding-left: 5px;
        padding-right: 5px;
    }
}

