/*
Theme Name: Premium Pro 2025
Theme URI: https://example.com
Author: Your Name
Description: A luxury premium WordPress theme that actually looks good - with hero sections, premium colors, and professional design
Version: 1.0
License: GPL v2 or later
Text Domain: premium-pro
Tags: luxury, premium, hero, modern, professional
*/

/* ============================================
 * WARNING: AI-Generated CSS Not Available
 * The Design Agent should generate the 'actual_css' field
 * Check Design Agent execution for errors
 * ============================================ */

/* Minimal emergency styles - Design Agent CSS generation failed */
:root {
    --color-primary: #3b82f6;
    --color-secondary: #1e40af;
}

body { font-family: system-ui, -apple-system, sans-serif; line-height: 1.6; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header { padding: 20px 0; background: #f8f9fa; }
.site-main { padding: 40px 0; }
.site-footer { padding: 20px 0; background: #2c3e50; color: white; }



:root {
    /* Premium Luxury Colors */
    --color-navy: #1e3a8a;
    --color-royal: #3b82f6;
    --color-gold: #f59e0b;
    --color-gold-light: #fbbf24;
    --color-purple: #7c3aed;
    
    /* Neutrals */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-600: #475569;
    --color-gray-900: #0f172a;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
    
    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Others */
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-900);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }

p { margin-bottom: var(--space-4); line-height: 1.7; }
a { text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; display: block; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title a {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navigation ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.main-navigation a {
    padding: 0.75rem 1.25rem;
    color: var(--color-gray-900);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.75rem;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--color-navy);
    background: rgba(59, 130, 246, 0.1);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

.menu-toggle-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    transition: 0.3s;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    transition: 0.3s;
}

.menu-toggle-icon::before { top: -8px; }
.menu-toggle-icon::after { top: 8px; }

.menu-toggle.active .menu-toggle-icon { background: transparent; }
.menu-toggle.active .menu-toggle-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active .menu-toggle-icon::after { top: 0; transform: rotate(-45deg); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: 0.4s;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-navigation.mobile-open { right: 0; }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
        padding: var(--space-20) var(--space-6) var(--space-8);
    }
    
    .main-navigation a {
        padding: var(--space-5) var(--space-4);
        border-radius: var(--radius-lg);
        font-size: 1.0625rem;
    }
}

/* ============================================
   HERO SECTION - Actually Good Looking
   ============================================ */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    color: white;
    padding: var(--space-24) var(--space-6);
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.hero-section h1 {
    color: white;
    margin-bottom: var(--space-6);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-section p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

/* ============================================
   PAGE HERO BANNER - For Subpages
   ============================================ */
.page-hero {
    position: relative;
    background: var(--gradient-hero);
    color: white;
    padding: clamp(3rem, 8vw, 5rem) var(--space-6);
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.page-hero h1 {
    color: white;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    margin-top: var(--space-6);
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin: var(--space-12) 0;
}

.contact-method {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--color-gray-200);
    transition: all 0.3s;
    text-align: center;
}

.contact-method:hover {
    border-color: var(--color-navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-4);
    color: white;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    color: var(--color-navy);
}

.contact-method p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
}

.contact-method a {
    color: var(--color-navy);
    font-weight: 600;
    text-decoration: underline;
}

.contact-method a:hover {
    color: var(--color-gold);
}

/* Contact Form Container */
.contact-form-section {
    background: white;
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-gray-200);
    margin: var(--space-12) 0;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    color: var(--color-navy);
}

/* Office/Location Card */
.office-card {
    background: var(--color-gray-50);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border-left: 4px solid var(--color-gold);
    margin: var(--space-8) 0;
}

.office-card h3 {
    color: var(--color-navy);
    margin-bottom: var(--space-4);
}

.office-card p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-2);
}

/* ============================================
   CONTENT SECTIONS - Better Spacing
   ============================================ */
.content-section {
    padding: clamp(3rem, 8vw, 6rem) var(--space-6);
}

.content-section.alt-bg {
    background: var(--color-gray-50);
}

.content-section.dark-bg {
    background: var(--color-gray-900);
    color: white;
}

.content-section.dark-bg h2,
.content-section.dark-bg h3 {
    color: white;
}

.content-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Better Content Typography */
.entry-content h2,
.content-section h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-top: var(--space-12);
    margin-bottom: var(--space-6);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.entry-content h2:first-child,
.content-section h2:first-child {
    margin-top: 0;
}

.entry-content h3,
.content-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-top: var(--space-10);
    margin-bottom: var(--space-5);
    line-height: 1.3;
}

.entry-content h4,
.content-section h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    line-height: 1.4;
}

.entry-content p,
.content-section p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
    max-width: 75ch;
}

.entry-content p:last-child {
    margin-bottom: 0;
}

/* First heading after content */
.entry-content > h2:first-child,
.entry-content > h3:first-child {
    margin-top: var(--space-8);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-6);
    margin-top: 0;
}

.section-title p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-section.dark-bg .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

/* Article/Page specific */
article.page,
article.post {
    background: white;
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    article.page,
    article.post {
        padding: var(--space-6);
    }
}

/* ============================================
   FEATURE GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.feature-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-6);
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

.content-section.dark-bg .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-section.dark-bg .feature-card h3 {
    color: white;
}

.content-section.dark-bg .feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PREMIUM DESIGN ELEMENTS - Next Level
   ============================================ */

/* Stats/Numbers Section */
.stats-section {
    background: var(--gradient-hero);
    color: white;
    padding: clamp(4rem, 10vw, 6rem) var(--space-6);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Icon Badges */
.icon-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(var(--color-primary-rgb), 0.1);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin: var(--space-2);
}

.icon-badge-icon {
    font-size: 1.25rem;
}

/* Decorative CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: clamp(4rem, 10vw, 7rem) var(--space-6);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-6);
}

.cta-section p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

/* Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.testimonial-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-gold);
    font-family: Georgia, serif;
    line-height: 0;
    margin-right: var(--space-2);
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-gray-900);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
}

/* Image + Content Section */
.image-content-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: var(--space-12);
    align-items: center;
}

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

.image-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-content-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.image-content-image:hover::after {
    opacity: 1;
}

.image-content-text h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-6);
}

.image-content-text ul {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0;
}

.image-content-text ul li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--space-4);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.image-content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-12);
    position: relative;
}

.process-step {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--color-gray-300);
    font-weight: 300;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-luxury);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Decorative Shapes */
.shape-blob {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.shape-blob-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-blob-2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

/* Pricing Cards (if needed) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.pricing-card {
    background: white;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--color-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: var(--space-6);
}

.pricing-price span {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-gray-600);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--space-8) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.pricing-features li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.feature-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-6);
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

.content-section.dark-bg .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-section.dark-bg .feature-card h3 {
    color: white;
}

.content-section.dark-bg .feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   BUTTONS - Actually Stand Out
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-primary {
    background: var(--gradient-hero);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
}

.btn-outline:hover {
    background: white;
    color: var(--color-navy);
}

/* ============================================
   POSTS & BLOG
   ============================================ */
.blog-grid .hentry {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    height: 100%;
}

.blog-grid .hentry:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hentry {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: var(--space-12);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.3s;
}

.hentry:hover {
    box-shadow: var(--shadow-xl);
}

.post-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gradient-hero);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hentry:hover .post-thumbnail img {
    transform: scale(1.05);
}

.entry-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
}

.blog-grid .entry-header {
    flex: 0 0 auto;
}

.entry-title {
    margin-bottom: var(--space-4);
    font-size: 1.5rem;
}

.entry-title a {
    color: var(--color-gray-900);
    transition: color 0.3s;
}

.entry-title a:hover {
    color: var(--color-navy);
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-top: var(--space-3);
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.entry-content {
    padding: 0 var(--space-6) var(--space-6);
    line-height: 1.7;
}

.blog-grid .entry-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.blog-grid .entry-content p {
    flex: 1 1 auto;
    margin-bottom: var(--space-6);
}

.blog-grid .entry-content .btn {
    flex: 0 0 auto;
    align-self: flex-start;
}

.entry-footer {
    padding: var(--space-6) var(--space-6);
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    font-size: 0.875rem;
}

.entry-footer span {
    color: var(--color-gray-600);
}

.entry-footer a {
    color: var(--color-navy);
    font-weight: 600;
}

.entry-footer a:hover {
    color: var(--color-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-gray-900);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
    color: white;
}

.site-info {
    padding-top: var(--space-8);
    margin-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

/* ============================================
   FORMS - Premium Styling
   ============================================ */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-gray-900);
    background: white;
    transition: all 0.3s;
    appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--color-gray-400);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-gray-900);
    font-size: 0.9375rem;
}

.form-group {
    margin-bottom: var(--space-6);
}

button[type="submit"],
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* Form validation states */
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: var(--color-error);
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: var(--color-success);
}

/* Required field indicator */
label .required {
    color: var(--color-error);
    margin-left: 0.25rem;
}

/* Form grid for side-by-side fields */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

/* Contact Form 7 specific styling */
.wpcf7-form p {
    margin-bottom: var(--space-6);
}

.wpcf7-form input[type="submit"] {
    margin-top: var(--space-4);
}

.wpcf7-not-valid-tip {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--space-2);
}

.wpcf7-response-output {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-top: var(--space-6);
}

.wpcf7-mail-sent-ok {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid var(--color-success);
    color: var(--color-success);
}

.wpcf7-validation-errors {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--color-error);
    color: var(--color-error);
}

/* ============================================
   LISTS
   ============================================ */
.entry-content ul {
    list-style: none;
    padding-left: 0;
}

.entry-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}

.entry-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.entry-content ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.entry-content ol li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
    counter-increment: item;
}

.entry-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section { 
        padding: clamp(3rem, 10vw, 5rem) var(--space-4); 
    }
    
    .content-section { 
        padding: clamp(2rem, 6vw, 4rem) var(--space-4); 
    }
    
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: var(--space-6);
    }
    
    .feature-card { 
        padding: var(--space-6); 
    }
    
    .entry-header, 
    .entry-content { 
        padding-left: var(--space-4); 
        padding-right: var(--space-4); 
    }
    
    article.page,
    article.post {
        padding: var(--space-6);
    }
    
    .entry-content h2 {
        margin-top: var(--space-8);
        margin-bottom: var(--space-4);
    }
    
    .entry-content h3 {
        margin-top: var(--space-6);
        margin-bottom: var(--space-3);
    }
    
    .entry-content p {
        margin-bottom: var(--space-4);
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-8) !important;
    }
    
    .contact-methods {
        grid-template-columns: 1fr !important;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* New elements responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .testimonials-grid,
    .icon-boxes-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 30px !important;
        transform: none !important;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .entry-content h2 {
        font-size: clamp(1.5rem, 6vw, 1.875rem);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   STATS SECTION - Numbers That Pop
   ============================================ */
.stats-section {
    background: var(--gradient-hero);
    color: white;
    padding: var(--space-20) var(--space-6);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: var(--space-6);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, white 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS - Social Proof
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.testimonial-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-gray-900);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTIONS - Call To Action
   ============================================ */
.cta-section {
    background: var(--gradient-hero);
    color: white;
    padding: var(--space-20) var(--space-6);
    text-align: center;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    margin: var(--space-16) 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-6);
}

.cta-section p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

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

/* ============================================
   ICON BOXES - Feature Highlights
   ============================================ */
.icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.icon-box {
    background: linear-gradient(135deg, var(--color-gray-50) 0%, white 100%);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-gray-200);
    transition: all 0.3s;
    text-align: center;
}

.icon-box:hover {
    border-color: var(--color-navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.icon-box-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--space-6);
    color: white;
    box-shadow: var(--shadow-luxury);
}

.icon-box h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-3);
    color: var(--color-navy);
}

.icon-box p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   PRICING CARDS - Beautiful Pricing Tables
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.pricing-card {
    background: white;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-navy);
}

.pricing-card.featured {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
    color: var(--color-navy);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.pricing-price span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-600);
}

.pricing-period {
    color: var(--color-gray-600);
    margin-bottom: var(--space-6);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--space-8) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--space-3) 0;
    color: var(--color-gray-700);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================
   TIMELINE / STEPS - Process Flow
   ============================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: var(--space-12) auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-hero);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-12);
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 2rem);
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-gray-200);
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 0 0 8px var(--color-gray-50);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
    color: var(--color-navy);
}

.timeline-content p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ============================================
   SPLIT CONTENT - Image + Text Layouts
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-12);
    align-items: center;
    margin: var(--space-16) 0;
}

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

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-6);
    color: var(--color-navy);
}

.split-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
}

.split-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-8);
}

.split-content ul li {
    padding: var(--space-3) 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-gray-700);
}

.split-content ul li::before {
    content: '→';
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

/* ============================================
   BADGE / TAG ELEMENTS
   ============================================ */
.badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: var(--gradient-hero);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
}

.badge.outline {
    background: transparent;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
}

.badge.gold {
    background: var(--gradient-gold);
}

/* ============================================
   ALERT / NOTIFICATION BOXES
   ============================================ */
.alert {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin: var(--space-6) 0;
    border-left: 4px solid;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-navy);
    color: var(--color-gray-900);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--color-success);
    color: var(--color-gray-900);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gray-900);
}

/* ============================================
   CARDS WITH OVERLAYS
   ============================================ */
.overlay-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 400px;
}

.overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-8);
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay-card:hover .overlay-content {
    opacity: 1;
}

.overlay-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--space-3);
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}
