/* 
 * VCA UI Enhancements 2025/2026
 * Modern, professional healthcare website styling
 * Comprehensive UI improvements for all pages
 */

/* ============================================
   MODERN DESIGN TOKENS
   ============================================ */
:root {
    /* Enhanced shadows with depth */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 24px 48px rgba(0, 0, 0, 0.16), 0 12px 24px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(216, 47, 60, 0.15);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    
    /* Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
    
    /* Smooth easing functions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
}

/* ============================================
   GLOBAL ENHANCEMENTS
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    min-height: 100vh;
}

/* Smooth scroll padding for fixed header */
html {
    scroll-padding-top: 120px;
}

/* Selection styling */
::selection {
    background: var(--vca-red-20);
    color: var(--vca-red-dark);
}

/* ============================================
   ENHANCED NAVIGATION
   ============================================ */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

.nav-link {
    position: relative;
    padding: 12px 18px;
    font-weight: 500;
    color: var(--vca-grey-700);
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--vca-red);
    background: var(--vca-red-05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--vca-red), var(--vca-red-light));
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.login-link {
    background: linear-gradient(135deg, var(--vca-red) 0%, var(--vca-red-dark) 100%);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(216, 47, 60, 0.3);
    transition: all 0.3s var(--ease-out-expo);
}

.login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 47, 60, 0.4);
}

/* ============================================
   ENHANCED BUTTONS
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--vca-red) 0%, var(--vca-red-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(216, 47, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 47, 60, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--vca-red);
    border: 2px solid var(--vca-red);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--vca-red-05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--vca-grey-700);
    border: 2px solid var(--vca-grey-300);
}

.btn-outline:hover {
    border-color: var(--vca-red);
    color: var(--vca-red);
    background: var(--vca-red-05);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Icon in buttons */
.btn i {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   MODERN CARD SYSTEM
   ============================================ */
.card,
.service-card,
.service-box,
.benefit-card,
.value-card,
.problem-card,
.brochure-card,
.faq-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.card::before,
.service-card::before,
.service-box::before,
.benefit-card::before,
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vca-red), var(--vca-red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.card:hover,
.service-card:hover,
.service-box:hover,
.benefit-card:hover,
.value-card:hover,
.problem-card:hover,
.brochure-card:hover,
.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.card:hover::before,
.service-card:hover::before,
.service-box:hover::before,
.benefit-card:hover::before,
.value-card:hover::before {
    transform: scaleX(1);
}

/* Card icon styling */
.card-icon,
.service-icon,
.benefit-icon,
.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vca-red-10), var(--vca-red-05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease-out-expo);
}

.card-icon i,
.service-icon i,
.benefit-icon i,
.problem-icon i {
    font-size: 1.8rem;
    color: var(--vca-red);
    transition: transform 0.4s var(--ease-out-expo);
}

.card:hover .card-icon,
.service-card:hover .service-icon,
.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--vca-red), var(--vca-red-dark));
    transform: scale(1.1) rotate(5deg);
}

.card:hover .card-icon i,
.service-card:hover .service-icon i,
.benefit-card:hover .benefit-icon i {
    color: white;
}

/* ============================================
   ENHANCED SECTION STYLING
   ============================================ */
section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--vca-grey-800);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--vca-red), var(--vca-red-light));
    border-radius: 4px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--vca-grey-600);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Section backgrounds */
.section-light {
    background: linear-gradient(180deg, #ffffff 0%, var(--vca-grey-50) 100%);
}

.section-grey {
    background: linear-gradient(180deg, var(--vca-grey-50) 0%, var(--vca-grey-100) 100%);
}

.section-gradient {
    background: linear-gradient(135deg, var(--vca-red-05) 0%, var(--vca-blue-light) 100%);
}

/* ============================================
   HERO SECTION IMPROVEMENTS
   ============================================ */
.hero,
.split-section,
.services-hero,
.about-hero,
.careers-hero,
.contact-hero {
    position: relative;
    overflow: hidden;
}

/* Animated background patterns */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--vca-red-05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--vca-blue-10) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

/* Hero content styling */
.hero-title,
.brochure-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--vca-grey-800);
}

.hero-title span,
.brochure-title span {
    background: linear-gradient(135deg, var(--vca-red), var(--vca-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TRUST BADGES ENHANCEMENT
   ============================================ */
.trust-badge,
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--vca-grey-200);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vca-grey-700);
    transition: all 0.3s var(--ease-out-expo);
}

.trust-badge:hover,
.hero-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-badge i,
.hero-trust-badge i {
    color: var(--vca-red);
}

/* Trust badges section */
.trust-badges-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.trust-badges-section > div > div:last-child > div {
    transition: all 0.4s var(--ease-out-expo);
}

.trust-badges-section > div > div:last-child > div:hover {
    transform: translateY(-8px) scale(1.02);
}

/* ============================================
   FORM STYLING
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--vca-grey-700);
    background: white;
    border: 2px solid var(--vca-grey-200);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s var(--ease-out-expo);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--vca-red);
    box-shadow: 0 0 0 4px var(--vca-red-10);
}

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

/* Form labels */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--vca-grey-700);
    font-size: 0.95rem;
}

/* Form groups */
.form-group {
    margin-bottom: 1.5rem;
}

/* ============================================
   TESTIMONIALS ENHANCEMENT
   ============================================ */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--vca-red-10);
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--vca-grey-700);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--vca-red);
}

/* Star rating */
.star-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.process-step,
.step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vca-red), var(--vca-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(216, 47, 60, 0.3);
    transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover .step-number,
.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(216, 47, 60, 0.4);
}

/* Connection line between steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: var(--vca-grey-200);
    z-index: 0;
}

/* ============================================
   FAQ IMPROVEMENTS
   ============================================ */
.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px !important;
    border-left: 4px solid var(--vca-red) !important;
}

.faq-item h3 {
    color: var(--vca-grey-800);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item:hover h3 {
    color: var(--vca-red);
}

.faq-item p {
    color: var(--vca-grey-600);
    line-height: 1.8;
}

/* ============================================
   SERVICES PAGE ENHANCEMENTS
   ============================================ */
.services-hero {
    background: linear-gradient(135deg, var(--vca-grey-800) 0%, var(--vca-grey-900) 100%);
    padding: 8rem 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.services-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.service-box {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.service-box .service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-box .service-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--vca-red), var(--vca-red-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* Service features list */
.service-box ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-box ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--vca-grey-100);
    color: var(--vca-grey-700);
}

.service-box ul li:last-child {
    border-bottom: none;
}

.service-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vca-green);
    font-weight: 700;
}

/* ============================================
   ABOUT PAGE ENHANCEMENTS
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--vca-red) 0%, var(--vca-red-dark) 100%);
    padding: 8rem 0;
    margin-top: 80px;
    text-align: center;
}

.about-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

.about-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.values-grid,
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
}

.value-card i {
    font-size: 3rem;
    color: var(--vca-red);
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.value-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--vca-grey-800);
}

/* ============================================
   CAREERS PAGE ENHANCEMENTS
   ============================================ */
.careers-hero {
    background: linear-gradient(135deg, var(--vca-blue) 0%, var(--vca-purple) 100%);
    padding: 8rem 0;
    margin-top: 80px;
    text-align: center;
}

.careers-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

.careers-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--vca-blue);
    transition: all 0.4s var(--ease-out-expo);
}

.job-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.job-type {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-type.full-time {
    background: var(--vca-green-light);
    color: var(--vca-green);
}

.job-type.part-time {
    background: var(--vca-blue-light);
    color: var(--vca-blue);
}

/* ============================================
   CONTACT PAGE ENHANCEMENTS
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, var(--vca-grey-800) 0%, var(--vca-grey-900) 100%);
    padding: 6rem 0;
    margin-top: 80px;
    text-align: center;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--vca-red) 0%, var(--vca-red-dark) 100%);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 1.25rem;
    color: white;
}

/* ============================================
   LOGIN/REGISTER PAGE ENHANCEMENTS
   ============================================ */
.login-container,
.register-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--vca-grey-50) 0%, var(--vca-grey-100) 100%);
    margin-top: 80px;
}

.login-box,
.register-box {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px;
}

.login-box h1,
.register-box h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--vca-grey-800);
}

.login-box .logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.login-box .logo-container img {
    width: 80px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   GALLERY PAGE ENHANCEMENTS
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta,
.cta-section {
    background: linear-gradient(135deg, var(--vca-red) 0%, var(--vca-red-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: white;
    color: var(--vca-red);
}

.cta .btn-primary:hover {
    background: var(--vca-grey-50);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
footer {
    position: relative;
}

footer a {
    transition: all 0.3s var(--ease-out-expo);
}

footer a:hover {
    transform: translateX(4px);
}

/* Social icons animation */
footer .fab {
    transition: transform 0.3s var(--ease-out-expo);
}

footer a:hover .fab {
    transform: scale(1.2);
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s var(--ease-out-expo) forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s var(--ease-out-expo) forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */
@media (max-width: 1024px) {
    .hero-title,
    .brochure-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .card,
    .service-card,
    .service-box,
    .benefit-card,
    .value-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .contact-form-container,
    .login-box,
    .register-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .trust-badge,
    .hero-trust-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .card-icon,
    .service-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i,
    .service-icon i,
    .benefit-icon i {
        font-size: 1.5rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible styles */
:focus-visible {
    outline: 3px solid var(--vca-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--vca-red);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s ease;
}

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    footer,
    .btn,
    .cta {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
    
    .card,
    .service-box {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
