/* ============================================
   Lumina Vesper Creative Portfolio
   A modern, colorful creative strategist template
   ============================================ */

/* ─────────────────────────────────────────────
   CSS Custom Properties
   ───────────────────────────────────────────── */
:root {
    /* Primary Colors */
    --lv-primary: #FF6B6B;
    --lv-primary-dark: #E55A5A;
    --lv-secondary: #4ECDC4;
    --lv-secondary-dark: #3DBDB5;
    --lv-accent: #FFE66D;
    --lv-accent-dark: #E6CF5A;
    --lv-purple: #667eea;
    --lv-purple-dark: #764ba2;

    /* Neutrals */
    --lv-dark: #2C3E50;
    --lv-dark-light: #34495E;
    --lv-text: #4A5568;
    --lv-text-light: #718096;
    --lv-light: #F8F9FA;
    --lv-cream: #FFF8F0;
    --lv-white: #FFFFFF;
    --lv-border: #E2E8F0;

    /* Gradients */
    --lv-gradient-hero: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 50%, #4ECDC4 100%);
    --lv-gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #E55A5A 100%);
    --lv-gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Typography */
    --lv-font-heading: 'Playfair Display', Georgia, serif;
    --lv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --lv-font-accent: 'Space Grotesk', sans-serif;

    /* Spacing */
    --lv-section-padding: 6rem;
    --lv-container-max: 1200px;

    /* Transitions */
    --lv-transition: 0.3s ease;
    --lv-transition-slow: 0.5s ease;

    /* Shadows */
    --lv-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --lv-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --lv-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --lv-radius-sm: 8px;
    --lv-radius-md: 12px;
    --lv-radius-lg: 20px;
    --lv-radius-xl: 30px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --lv-dark: #E2E8F0;
    --lv-dark-light: #CBD5E1;
    --lv-text: #A0AEC0;
    --lv-text-light: #718096;
    --lv-light: #1A202C;
    --lv-cream: #171923;
    --lv-white: #2D3748;
    --lv-border: #4A5568;
}

/* ─────────────────────────────────────────────
   Base Styles
   ───────────────────────────────────────────── */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--lv-font-body);
    color: var(--lv-text);
    background-color: var(--lv-light);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

[data-theme="dark"] body {
    background-color: #0F172A;
    color: #CBD5E1;
}

/* Skip Link */
.lv-skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lv-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--lv-radius-md);
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top var(--lv-transition);
}

.lv-skip-link:focus {
    top: 1rem;
}

/* Fixed Theme Toggle - Bottom Right */
.lv-theme-toggle-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--lv-white);
    border: 2px solid var(--lv-border);
    box-shadow: var(--lv-shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--lv-transition), box-shadow var(--lv-transition), background var(--lv-transition);
}

.lv-theme-toggle-fixed:hover {
    transform: scale(1.1);
    box-shadow: var(--lv-shadow-lg);
}

.lv-theme-toggle-fixed:focus {
    outline: 3px solid var(--lv-primary);
    outline-offset: 2px;
}

.lv-theme-toggle-fixed .icon-sun,
.lv-theme-toggle-fixed .icon-moon {
    font-size: 1.25rem;
    transition: opacity var(--lv-transition), transform var(--lv-transition);
}

.lv-theme-toggle-fixed .icon-sun {
    color: #F59E0B;
}

.lv-theme-toggle-fixed .icon-moon {
    color: #6366F1;
    display: none;
}

[data-theme="dark"] .lv-theme-toggle-fixed {
    background: #1E293B;
    border-color: #334155;
}

[data-theme="dark"] .lv-theme-toggle-fixed .icon-sun {
    display: none;
}

[data-theme="dark"] .lv-theme-toggle-fixed .icon-moon {
    display: block;
}

/* Container */
.container {
    max-width: var(--lv-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─────────────────────────────────────────────
   Navigation
   ───────────────────────────────────────────── */
.lv-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lv-border);
    transition: background var(--lv-transition);
}

[data-theme="dark"] .lv-navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: #1E293B;
}

.lv-brand {
    font-family: var(--lv-font-heading);
}

.lv-logo-text {
    font-family: var(--lv-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lv-dark);
    background: var(--lv-gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lv-navbar .rsl-navbar-link {
    font-family: var(--lv-font-accent);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--lv-text);
    transition: color var(--lv-transition);
}

.lv-navbar .rsl-navbar-link:hover {
    color: var(--lv-primary);
}

[data-theme="dark"] .lv-navbar .rsl-navbar-link {
    color: #CBD5E1;
}

[data-theme="dark"] .lv-navbar .rsl-navbar-link:hover {
    color: var(--lv-primary);
}

/* ─────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────── */
.lv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.lv-hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--lv-gradient-hero);
    opacity: 0.15;
}

[data-theme="dark"] .lv-hero-gradient {
    opacity: 0.25;
}

/* Decorative Shapes */
.lv-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.lv-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.lv-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--lv-primary);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.lv-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--lv-secondary);
    top: 50%;
    right: -5%;
    animation-delay: -7s;
}

.lv-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--lv-accent);
    bottom: 10%;
    left: 30%;
    animation-delay: -14s;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .lv-shape {
        animation: none;
    }
}

.lv-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.lv-hero-eyebrow {
    font-family: var(--lv-font-accent);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lv-primary);
    margin-bottom: 1rem;
    display: block;
}

.lv-hero-title {
    font-family: var(--lv-font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--lv-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

[data-theme="dark"] .lv-hero-title {
    color: #F1F5F9;
}

.lv-hero-tagline {
    font-family: var(--lv-font-body);
    font-size: 1.5rem;
    color: var(--lv-text);
    margin: 0 0 2.5rem 0;
    min-height: 2.5rem;
}

[data-theme="dark"] .lv-hero-tagline {
    color: #94A3B8;
}

.lv-typewriter {
    display: inline;
}

.lv-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.lv-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--lv-text-light);
    font-family: var(--lv-font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.lv-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--lv-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lv-scroll-line {
        animation: none;
    }
}

/* ─────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────── */
.lv-btn-primary {
    background: var(--lv-gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--lv-radius-xl);
    font-family: var(--lv-font-accent);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--lv-transition), box-shadow var(--lv-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.lv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.lv-btn-outline {
    background: transparent;
    color: var(--lv-dark);
    border: 2px solid var(--lv-dark);
    padding: 1rem 2rem;
    border-radius: var(--lv-radius-xl);
    font-family: var(--lv-font-accent);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--lv-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

[data-theme="dark"] .lv-btn-outline {
    color: #F1F5F9;
    border-color: #F1F5F9;
}

[data-theme="dark"] .lv-btn-outline:hover {
    background: #F1F5F9;
    color: #0F172A;
}

/* ─────────────────────────────────────────────
   Sections
   ───────────────────────────────────────────── */
.lv-section {
    padding: var(--lv-section-padding) 0;
}

.lv-section-light {
    background: var(--lv-light);
}

[data-theme="dark"] .lv-section-light {
    background: #0F172A;
}

.lv-section-cream {
    background: var(--lv-cream);
}

[data-theme="dark"] .lv-section-cream {
    background: #1E293B;
}

.lv-section-gradient {
    background: var(--lv-gradient-accent);
    color: white;
}

.lv-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.lv-section-header-light .lv-section-eyebrow,
.lv-section-header-light .lv-section-title,
.lv-section-header-light .lv-section-subtitle {
    color: white;
}

.lv-section-header-light .lv-section-eyebrow {
    opacity: 0.8;
}

.lv-section-eyebrow {
    font-family: var(--lv-font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lv-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.lv-section-title {
    font-family: var(--lv-font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--lv-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

[data-theme="dark"] .lv-section-title {
    color: #F1F5F9;
}

.lv-section-subtitle {
    font-size: 1.125rem;
    color: var(--lv-text);
    margin: 0;
}

[data-theme="dark"] .lv-section-subtitle {
    color: #94A3B8;
}

/* ─────────────────────────────────────────────
   Portfolio Grid
   ───────────────────────────────────────────── */
.lv-portfolio-grid {
    margin-bottom: 2rem;
}

.lv-thumbnail {
    border-radius: var(--lv-radius-md);
    overflow: hidden;
    box-shadow: var(--lv-shadow-md);
    transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}

.lv-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: var(--lv-shadow-lg);
}

/* ─────────────────────────────────────────────
   About Section
   ───────────────────────────────────────────── */
.lv-about-layout {
    align-items: center;
}

.lv-about-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.lv-about-image-frame {
    position: relative;
    border-radius: var(--lv-radius-lg);
    overflow: hidden;
    box-shadow: var(--lv-shadow-lg);
}

.lv-about-image {
    width: 100%;
    height: auto;
    display: block;
}

.lv-about-image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--lv-primary);
    border-radius: var(--lv-radius-lg);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.lv-about-content {
    padding: 2rem 0;
}

.lv-about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--lv-dark);
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .lv-about-lead {
    color: #F1F5F9;
}

.lv-skills {
    margin-top: 2rem;
}

.lv-skills-title {
    font-family: var(--lv-font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lv-text-light);
    margin-bottom: 1rem;
}

.lv-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lv-skill-badge {
    background: linear-gradient(135deg, var(--lv-primary) 0%, var(--lv-secondary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--lv-radius-xl);
    font-family: var(--lv-font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
}

/* ─────────────────────────────────────────────
   Services Accordion
   ───────────────────────────────────────────── */
.lv-services-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.lv-accordion-item {
    background: var(--lv-white);
    border-radius: var(--lv-radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--lv-shadow-sm);
    overflow: hidden;
    border: 1px solid var(--lv-border);
    transition: box-shadow var(--lv-transition);
}

[data-theme="dark"] .lv-accordion-item {
    background: #1E293B;
    border-color: #334155;
}

.lv-accordion-item:hover {
    box-shadow: var(--lv-shadow-md);
}

.lv-accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
}

.lv-accordion-title:focus {
    outline: 2px solid var(--lv-primary);
    outline-offset: -2px;
}

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

.lv-service-title-text {
    flex: 1;
}

.lv-service-name {
    display: block;
    font-family: var(--lv-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lv-dark);
}

[data-theme="dark"] .lv-service-name {
    color: #F1F5F9;
}

.lv-service-tagline {
    display: block;
    font-size: 0.875rem;
    color: var(--lv-text-light);
    margin-top: 0.25rem;
}

.lv-accordion-icon {
    color: var(--lv-text-light);
    transition: transform var(--lv-transition);
}

.lv-accordion-title[aria-expanded="true"] .lv-accordion-icon {
    transform: rotate(45deg);
}

.lv-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.lv-accordion-content.open {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.lv-service-details p {
    margin: 0 0 1rem 0;
    color: var(--lv-text);
}

[data-theme="dark"] .lv-service-details p {
    color: #94A3B8;
}

.lv-service-details h4 {
    font-family: var(--lv-font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lv-dark);
    margin: 1.5rem 0 1rem;
}

[data-theme="dark"] .lv-service-details h4 {
    color: #F1F5F9;
}

.lv-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lv-deliverables li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--lv-text);
}

[data-theme="dark"] .lv-deliverables li {
    color: #94A3B8;
}

.lv-deliverables li i {
    color: var(--lv-secondary);
    font-size: 0.875rem;
}

/* ─────────────────────────────────────────────
   Testimonials
   ───────────────────────────────────────────── */
.lv-testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.lv-testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--lv-radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.lv-testimonial .rsl-testimonial-quote {
    font-family: var(--lv-font-heading);
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.6;
    margin: 1.5rem 0;
    color: white;
}

.lv-testimonial .rsl-testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 1rem;
}

.lv-testimonial .rsl-testimonial-name {
    font-family: var(--lv-font-accent);
    font-weight: 600;
    color: white;
    font-style: normal;
}

.lv-testimonial .rsl-testimonial-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Star rating in testimonials */
.lv-testimonial .rsl-star-rating {
    justify-content: center;
}

.lv-testimonial .rsl-star-rating .rsl-star {
    color: var(--lv-accent);
}

/* ─────────────────────────────────────────────
   Contact Section
   ───────────────────────────────────────────── */
.lv-contact-layout {
    align-items: flex-start;
}

.lv-contact-info {
    padding-right: 2rem;
}

.lv-contact-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.lv-contact-details {
    margin: 2rem 0;
}

.lv-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.lv-contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lv-gradient-hero);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
}

.lv-contact-item a {
    color: var(--lv-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--lv-transition);
}

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

[data-theme="dark"] .lv-contact-item a,
[data-theme="dark"] .lv-contact-item span {
    color: #F1F5F9;
}

.lv-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.lv-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lv-light);
    border: 1px solid var(--lv-border);
    border-radius: 50%;
    color: var(--lv-text);
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--lv-transition);
}

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

[data-theme="dark"] .lv-social-link {
    background: #1E293B;
    border-color: #334155;
    color: #94A3B8;
}

/* Contact Form */
.lv-contact-form {
    background: var(--lv-white);
    padding: 2.5rem;
    border-radius: var(--lv-radius-lg);
    box-shadow: var(--lv-shadow-md);
    /* Override RSL form dark defaults for light theme */
    --rsl-field-bg: #ffffff;
    --rsl-field-border: var(--lv-border);
    --rsl-field-text: var(--lv-dark);
    --rsl-field-muted: #64748B;
    --rsl-field-focus: var(--lv-primary);
}

[data-theme="dark"] .lv-contact-form {
    background: #1E293B;
    --rsl-field-bg: #0F172A;
    --rsl-field-border: #334155;
    --rsl-field-text: #F1F5F9;
    --rsl-field-muted: #94A3B8;
    --rsl-field-focus: var(--lv-primary);
}

.lv-field {
    margin-bottom: 1.5rem;
}

.lv-field .rsl-field-label {
    font-family: var(--lv-font-accent);
    font-weight: 500;
    color: var(--lv-dark);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .lv-field .rsl-field-label {
    color: #F1F5F9;
}

/* Light mode form field styling */
.lv-field .rsl-field-tile {
    background: var(--rsl-field-bg);
    border-color: var(--rsl-field-border);
}

.lv-field .rsl-field-input {
    background: var(--rsl-field-bg);
    color: var(--rsl-field-text);
    border-radius: var(--lv-radius-sm);
    border: 1px solid var(--rsl-field-border);
    padding: 0.875rem 1rem;
    font-family: var(--lv-font-body);
    transition: border-color var(--lv-transition), box-shadow var(--lv-transition);
}

.lv-field .rsl-field-input::placeholder {
    color: var(--rsl-field-muted);
}

.lv-field .rsl-field-input:focus {
    border-color: var(--lv-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    outline: none;
}

.lv-field .rsl-field-bar {
    display: none;
}

.lv-btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.lv-footer {
    background: var(--lv-dark);
    color: white;
    padding: 4rem 0 2rem;
}

[data-theme="dark"] .lv-footer {
    background: #0F172A;
    border-top: 1px solid #1E293B;
}

.lv-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lv-footer-brand .lv-logo-text {
    -webkit-text-fill-color: white;
    background: none;
    margin-bottom: 0.5rem;
    display: block;
}

.lv-footer-brand p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.875rem;
}

.lv-footer-links {
    display: flex;
    gap: 2rem;
}

.lv-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--lv-font-accent);
    font-size: 0.875rem;
    transition: color var(--lv-transition);
}

.lv-footer-links a:hover {
    color: white;
}

.lv-footer-social {
    display: flex;
    gap: 1rem;
}

.lv-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--lv-transition);
}

.lv-footer-social a:hover {
    background: var(--lv-primary);
    border-color: var(--lv-primary);
    color: white;
}

.lv-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.lv-footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.7;
}

.lv-back-to-top {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lv-primary);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform var(--lv-transition), box-shadow var(--lv-transition);
}

.lv-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* ─────────────────────────────────────────────
   Responsive Styles
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --lv-section-padding: 4rem;
    }

    .lv-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .lv-btn-primary,
    .lv-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .lv-about-image-accent {
        top: 10px;
        left: 10px;
    }

    .lv-contact-info {
        padding-right: 0;
    }

    .lv-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .lv-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .lv-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lv-hero-tagline {
        font-size: 1.25rem;
    }

    .lv-accordion-title {
        padding: 1rem;
    }

    .lv-service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lv-service-name {
        font-size: 1rem;
    }

    .lv-contact-form {
        padding: 1.5rem;
    }

    .lv-testimonial {
        padding: 1.5rem;
    }

    .lv-testimonial .rsl-testimonial-quote {
        font-size: 1.125rem;
    }
}

/* ─────────────────────────────────────────────
   Accessibility Widget Theming
   ───────────────────────────────────────────── */
:root {
    --rsl-a11y-primary: var(--lv-primary);
    --rsl-a11y-primary-dark: var(--lv-primary-dark);
    --rsl-a11y-button-gradient: var(--lv-gradient-primary);
    --rsl-a11y-button-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

/* ─────────────────────────────────────────────
   Animation Enhancements
   Works with RSL's animate-on-scroll.js
   Uses RSL's standard animations: fade-in, fade-from-left, fade-from-right
   ───────────────────────────────────────────── */

/* RSL animate-on-scroll.js handles animations automatically via animations.css
   No custom animation CSS needed - using standard RSL animation classes */

@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-animate].rsl-animate-pending {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}
