/* ================================================
   Toledo Recovery - Modern 2025 Design System
   ================================================ */

/* ===== CSS Variables - 2025 Color Palette ===== */
:root {
    /* Primary Colors - Teal/Cyan Gradient */
    --primary: #2DD4BF;
    --primary-light: #5EEAD4;
    --primary-dark: #0D9488;
    --secondary: #06B6D4;
    --secondary-light: #22D3EE;
    --secondary-dark: #0891B2;

    /* Accent Colors */
    --accent: #14B8A6;
    --accent-light: #2DD4BF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Neutral Colors - 2025 Soft Palette */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #0F172A;

    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    --text-light: #CBD5E1;
    --text-white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2DD4BF 0%, #06B6D4 100%);
    --gradient-secondary: linear-gradient(135deg, #14B8A6 0%, #0891B2 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);

    /* Shadows - Modern Elevated */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(45, 212, 191, 0.3);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Space Grotesk', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius - 2025 Smooth */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ===== Navigation - Modern Floating ===== */
.nav-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
    transition: all var(--transition-base);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    gap: var(--space-md);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.brand-logo {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.brand-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-menu {
    display: flex;
    gap: var(--space-sm);
}

.nav-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
    background: rgba(45, 212, 191, 0.1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-info {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-weight: 700;
    font-family: Georgia, serif;
    font-style: italic;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-info:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ===== Hero Section - Modern Gradient ===== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(45, 212, 191, 0.9) 0%,
        rgba(6, 182, 212, 0.85) 50%,
        rgba(14, 165, 233, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.title-primary {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1;
    letter-spacing: -0.03em;
}

.title-secondary {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 800px;
}

.hero-features {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 600;
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: white;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1.25rem 3rem;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.btn-hero-outline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid white;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-info-inline {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 0.875rem;
    font-family: Georgia, serif;
    font-style: italic;
}

.hero-decoration {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.service-box {
    position: relative;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(203, 213, 225, 0.2);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.service-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(45, 212, 191, 0.1);
    line-height: 1;
}

.service-icon-wrap {
    margin-bottom: var(--space-md);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.service-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Success Story ===== */
.story-modern {
    padding: var(--space-3xl) 0;
    background: white;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.story-visual {
    position: relative;
    text-align: center;
}

.story-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: var(--radius-xl);
    z-index: 0;
}

.story-icon {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-md);
}

.story-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.story-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.story-disclaimer {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-tertiary);
    margin-bottom: var(--space-lg);
}

.story-cta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-info-secondary {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-weight: 700;
    font-family: Georgia, serif;
    font-style: italic;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-info-secondary:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ===== Gallery ===== */
.gallery-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.gallery-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-note {
    text-align: center;
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-tertiary);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ===== Journey Timeline ===== */
.journey-modern {
    padding: var(--space-3xl) 0;
    background: white;
}

.timeline-modern {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    flex: 1;
    text-align: center;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15) rotate(10deg);
}

.timeline-card {
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.timeline-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.timeline-card p {
    color: var(--text-secondary);
}

.timeline-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin-top: 40px;
    border-radius: var(--radius-full);
}

/* ===== Map Section ===== */
.map-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    margin-bottom: var(--space-md);
}

.map-note {
    text-align: center;
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-tertiary);
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ===== FAQ Section ===== */
.faq-modern {
    padding: var(--space-3xl) 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.faq-card:hover {
    box-shadow: var(--shadow-lg);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: 50%;
    transition: all var(--transition-base);
}

.faq-card.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-card.active .faq-body {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-body p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Privacy Section ===== */
.privacy-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.privacy-box {
    text-align: center;
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-icon {
    margin-bottom: var(--space-lg);
}

.privacy-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-xl);
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.privacy-item:hover {
    background: rgba(45, 212, 191, 0.1);
    transform: translateX(8px);
}

.privacy-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ===== CTA Section ===== */
.cta-modern {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
}

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

.btn-cta-primary {
    padding: 1.25rem 3rem;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-base);
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.btn-cta-outline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid white;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

/* ===== Footer ===== */
.footer-modern {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.footer-phone a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-phone a:hover {
    color: var(--primary-light);
}

.btn-info-small {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-weight: 700;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-info-small:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.footer-nav,
.footer-legal,
.footer-resources {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
    flex-wrap: wrap;
}

.footer-nav a,
.footer-legal a,
.footer-resources a {
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-resources a:hover {
    color: var(--primary);
}

.footer-copyright {
    margin-top: var(--space-lg);
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-note {
    margin-top: var(--space-xs);
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    font-style: italic;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .timeline-modern {
        flex-direction: column;
        align-items: center;
    }

    .timeline-line {
        width: 4px;
        height: 40px;
        margin: 0;
    }

    .story-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: var(--space-md);
        box-shadow: var(--shadow-xl);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        flex-wrap: wrap;
    }

    .status-badge {
        display: none;
    }

    .hero-modern {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .privacy-features {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .story-cta,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .title-primary {
        font-size: 2.5rem;
    }

    .btn-hero,
    .btn-cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
