/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #090721;
    overflow-x: hidden;
}

:root {
    --primary-color: #702037;
    --secondary-color: #090721;
    --primary-dark: #5a1a2c;
    --primary-light: #8a2a47;
    --accent-dark: #202020;
    --gray-50: #fafbfc;
    --gray-100: #f7f8fa;
    --gray-200: #eef0f3;
    --gray-300: #dde1e6;
    --gray-400: #b8bcc5;
    --gray-500: #8a8d96;
    --gray-600: #5c5f69;
    --gray-700: #3a3d47;
    --gray-800: #202020;
    --gray-900: #090721;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --border-radius: 24px;
    --border-radius-lg: 32px;
    --border-radius-xl: 40px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-soft: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Glassmorphism Effects */
.glass-card {
    background: rgba(32, 32, 32, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(112, 32, 55, 0.3);
    box-shadow: 0 8px 32px rgba(112, 32, 55, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.glass-card .btn {
    margin-top: auto;
}

.glass-stats {
    background: rgba(32, 32, 32, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 32, 55, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Section Enhanced */
.hero-section {
    background: #202020;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Blue Light */
.hero-light {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(112, 32, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: moveLight 20s ease-in-out infinite;
    top: -200px;
    right: -200px;
    z-index: 1;
}

@keyframes moveLight {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-300px, 200px) scale(1.2);
    }
    50% {
        transform: translate(-100px, 400px) scale(0.9);
    }
    75% {
        transform: translate(200px, 100px) scale(1.1);
    }
}

/* Floating Glass Elements */
.floating-glass {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    z-index: 2;
}

.glass-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation: float1 15s ease-in-out infinite;
}

.glass-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation: float2 20s ease-in-out infinite;
}

.glass-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation: float3 25s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(100px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(50px, 50px) rotate(240deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-80px, -80px) rotate(180deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 30px) rotate(270deg);
    }
}

/* Hero Wave Shape */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 5;
}

.hero-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Hero Content with Glass Effect */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

/* Hero Image Glow */
.hero-image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(112, 32, 55, 0.5) 0%, transparent 60%);
    top: -10%;
    left: -10%;
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Hero Photo Enhanced */
.hero-photo {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    position: relative;
    z-index: 3;
}

.hero-photo.no-shadow {
    box-shadow: none !important;
}

.hero-photo:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Buttons - Animated Fill Style */
.btn {
    background: transparent !important;
    position: relative;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #702037 !important;
    border-radius: 30px;
    outline: none;
    overflow: hidden;
    color: #702037 !important;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: fill 0.3s 0.1s ease-out;
}

.btn i {
    font-size: 18px;
    transition: color 0.3s 0.1s ease-out;
}

.btn:hover svg,
.btn:hover i {
    color: inherit;
    fill: currentColor;
}

.btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 30px;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.btn:hover {
    color: #fff !important;
    border-color: #702037 !important;
    background: transparent !important;
}

.btn:hover::before {
    box-shadow: inset 0 0 0 10em #702037 !important;
}

/* Primary Button Variant */
.btn-primary {
    background: transparent !important;
    border: 2px solid #702037 !important;
    color: #702037 !important;
}

.btn-primary:hover {
    color: #fff !important;
    border-color: #702037 !important;
    background: transparent !important;
}

.btn-primary:hover::before {
    box-shadow: inset 0 0 0 10em #702037 !important;
}

/* Outline Primary Variant */
.btn-outline-primary {
    border: 2px solid #702037 !important;
    color: #702037 !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    border-color: #702037 !important;
    background: transparent !important;
}

.btn-outline-primary:hover::before {
    box-shadow: inset 0 0 0 10em #702037 !important;
}

/* White Button Variant (for dark backgrounds) */
.btn-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-white:hover {
    color: #702037;
    border-color: #ffffff;
}

.btn-white:hover::before {
    box-shadow: inset 0 0 0 10em #ffffff;
}

/* Success Button (WhatsApp, etc) */
.btn-success {
    border: 2px solid #28a745;
    color: #28a745;
    background: transparent;
}

.btn-success:hover {
    color: #fff;
    border-color: #28a745;
}

.btn-success:hover::before {
    box-shadow: inset 0 0 0 10em #28a745;
}

/* Button Size Variants */
.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Social Media Button Variants - Usando cores da marca */
.btn-instagram,
.btn-youtube,
.btn-flickr {
    border: 2px solid #702037;
    color: #702037;
    background: transparent;
}

.btn-instagram:hover,
.btn-youtube:hover,
.btn-flickr:hover {
    color: #fff;
    border-color: #702037;
}

.btn-instagram:hover::before,
.btn-youtube:hover::before,
.btn-flickr:hover::before {
    box-shadow: inset 0 0 0 10em #702037;
}

/* WhatsApp mantém verde por ser padrão reconhecível */
.btn-whatsapp {
    border: 2px solid #25D366;
    color: #25D366;
    background: transparent;
}

.btn-whatsapp:hover {
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp:hover::before {
    box-shadow: inset 0 0 0 10em #25D366;
}

.rounded-pill {
    border-radius: 50rem !important;
}

/* Navbar Enhanced - Floating */
.floating-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(32, 32, 32, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(112, 32, 55, 0.4);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1030;
}

.floating-navbar.scrolled {
    background: rgba(32, 32, 32, 0.95) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: #ffffff !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #702037;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #702037 !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Glass Button */
.glass-button {
    background: transparent !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #702037 !important;
    color: #702037;
    position: relative;
    overflow: hidden;
}

.glass-button::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.glass-button:hover {
    color: #fff !important;
    border-color: #702037 !important;
    transform: translateY(-2px);
}

.glass-button:hover::before {
    box-shadow: inset 0 0 0 10em #702037 !important;
}

/* Glass Effects */
.glass-effect {
    background: rgba(32, 32, 32, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(112, 32, 55, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.glass-input {
    background: rgba(32, 32, 32, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(112, 32, 55, 0.4) !important;
    color: #ffffff;
}

.glass-input:focus {
    background: rgba(32, 32, 32, 0.9) !important;
    border-color: #702037 !important;
    box-shadow: 0 0 0 4px rgba(112, 32, 55, 0.2) !important;
    color: #ffffff;
}

/* Remove Photo Shadows */
.no-shadow {
    box-shadow: none !important;
}

.hero-photo {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    position: relative;
    z-index: 3;
}

.hero-photo:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Small Floating Glass Elements */
.floating-glass-sm {
    position: absolute;
    background: rgba(112, 32, 55, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.glass-sm-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -75px;
    animation: float-gentle 15s ease-in-out infinite;
}

.glass-sm-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: -50px;
    animation: float-gentle 20s ease-in-out infinite reverse;
}

@keyframes float-gentle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Contact Photo */
.contact-photo {
    max-width: 250px;
    border-radius: var(--border-radius-lg);
    animation: float 6s ease-in-out infinite;
}

/* Button Group Custom */
.btn-group-custom {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.btn-group-custom label {
    flex: 1;
    max-width: 300px;
    border-radius: var(--border-radius) !important;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

/* Hero Section with padding for floating navbar */
.hero-section {
    padding-top: 120px;
    background: #202020 url('../IMG/Jornada-das-Liderancas-1600-x-838-px-4.png') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 32, 32, 0.7);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

/* Hero Section Animations */
@keyframes fadeInUp {
    from {
        opacity: 0.8;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-location {
    margin-bottom: 2rem;
}

.hero-logos {
    padding: 4rem 0 2rem 0;
}

.logo-item {
    padding: 2rem;
}

.product-logo {
    width: 350%;
    max-width: none;
    height: auto;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.product-logo:hover {
    transform: translateX(-50%) scale(1.05);
    opacity: 0.9;
}

.hero-stats {
    background: rgba(32, 32, 32, 0.8);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 32, 55, 0.4);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #702037;
    margin-bottom: 0.25rem;
}

/* Problem Solution Section with Glass */
.problem-solution-section {
    background: #090721;
    position: relative;
    color: #ffffff;
    padding: 5rem 0;
}

.problem-content h2,
.problem-content p {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.problem-content .text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.solution-highlight {
    background: rgba(112, 32, 55, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 32, 55, 0.4);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

/* Services Section with Glass */
.services-section {
    background: #090721;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #702037;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 32, 55, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    animation: float-slow 30s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}

/* How It Works with Glass */
.how-it-works-section {
    position: relative;
    overflow: hidden;
    background: #090721;
    border-bottom: 3px solid #702037;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(112, 32, 55, 0.12) 0%, transparent 70%);
    filter: blur(50px);
    animation: pulse-slow 8s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Final CTA Enhanced with Glass */
.cta-rounded-box {
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Map Section with Glass Border */
.map-container {
    position: relative;
    padding: 1rem;
    background: rgba(32, 32, 32, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(112, 32, 55, 0.4);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(112, 32, 55, 0.3) 0%, rgba(112, 32, 55, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #702037;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(32, 32, 32, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 32, 55, 0.3);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #702037;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(112, 32, 55, 0.3) 0%, rgba(112, 32, 55, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #702037;
}

/* Benefits Section Enhanced */
.benefit-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    padding: 2rem;
    background: rgba(32, 32, 32, 0.85);
    box-shadow: 0 0 6px 0 rgba(112, 32, 55, 0.2);
    border-radius: var(--border-radius);
    transition: all 0.35s ease;
    margin-bottom: 1rem;
    overflow: hidden;
}

.benefit-card::before,
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.benefit-card::before {
    background: #702037;
    width: 0;
    opacity: 0;
    transition: opacity 0s ease, width 0s ease;
    transition-delay: 0.5s;
}

.benefit-card::after {
    width: 100%;
    background: rgba(112, 32, 55, 0.3);
    transition: width 0.5s ease;
}

.benefit-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px 0 rgba(112, 32, 55, 0.3);
}

.benefit-card:hover::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
    transition-delay: 0;
}

.benefit-card:hover::after {
    width: 0;
    opacity: 0;
    transition: width 0s ease;
}

.benefit-card.highlight {
    background: rgba(112, 32, 55, 0.25);
}

.benefit-card.highlight::after {
    background: #702037;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: #702037;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Timeline Vertical Styles */
.timeline-box {
    background: rgba(32, 32, 32, 0.9);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(112, 32, 55, 0.2);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.timeline-step {
    display: flex;
    margin-bottom: -10.3rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-line {
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: -0.75rem;
    width: 2px;
    background: rgba(112, 32, 55, 0.3);
    z-index: 1;
}

.timeline-step:last-child .timeline-line {
    display: none;
}

.timeline-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-completed .timeline-circle {
    background: #702037;
    color: white;
}

.timeline-active .timeline-circle {
    background: #702037;
    color: white;
    box-shadow: 0 0 0 4px rgba(112, 32, 55, 0.2);
}

.timeline-content {
    flex: 1;
    padding-top: 0.25rem;
}

.timeline-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.timeline-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: rgba(112, 32, 55, 0.2);
    color: #702037;
}

.timeline-status-active {
    background: rgba(112, 32, 55, 0.3);
    color: #ffffff;
}

.timeline-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Section Enhanced */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
    width: 100%;
    padding: 2.5rem;
    background: rgba(32, 32, 32, 0.85);
    box-shadow: 0 0 6px 0 rgba(112, 32, 55, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all 0.35s ease;
    height: 100%;
    overflow: hidden;
}

.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.service-card::before {
    background: #702037;
    width: 0;
    opacity: 0;
    transition: opacity 0s ease, width 0s ease;
    transition-delay: 0.5s;
}

.service-card::after {
    width: 100%;
    background: rgba(112, 32, 55, 0.3);
    transition: width 0.5s ease;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px 0 rgba(112, 32, 55, 0.3);
}

.service-card:hover::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
    transition-delay: 0;
}

.service-card:hover::after {
    width: 0;
    opacity: 0;
    transition: width 0s ease;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(112, 32, 55, 0.4);
}

/* Video Cards Enhanced */
.video-card {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 1.5rem;
    background: rgba(32, 32, 32, 0.85);
    box-shadow: 0 0 6px 0 rgba(112, 32, 55, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all 0.35s ease;
    overflow: hidden;
}

.video-card::before,
.video-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.video-card::before {
    background: #702037;
    width: 0;
    opacity: 0;
    transition: opacity 0s ease, width 0s ease;
    transition-delay: 0.5s;
}

.video-card::after {
    width: 100%;
    background: rgba(112, 32, 55, 0.3);
    transition: width 0.5s ease;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px 0 rgba(112, 32, 55, 0.3);
}

.video-card:hover::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
    transition-delay: 0;
}

.video-card:hover::after {
    width: 0;
    opacity: 0;
    transition: width 0s ease;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* Timeline Section Enhanced */
.timeline-section {
    background: #090721;
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Timeline Progress Bar */
.timeline-progress {
    width: 100%;
    height: 4px;
    background: rgba(112, 32, 55, 0.3);
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.timeline-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    border-radius: 2px;
    width: 14.28%; /* 1/7 for first slide */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Timeline Navigation Enhanced */
.timeline-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(32, 32, 32, 0.8);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 32, 55, 0.3);
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #702037 rgba(112, 32, 55, 0.3);
}

.timeline-navigation::-webkit-scrollbar {
    height: 6px;
}

.timeline-navigation::-webkit-scrollbar-track {
    background: rgba(112, 32, 55, 0.3);
    border-radius: 3px;
}

.timeline-navigation::-webkit-scrollbar-thumb {
    background: #702037;
    border-radius: 3px;
}

/* Timeline Buttons Enhanced */
.timeline-btn {
    background: rgba(112, 32, 55, 0.2);
    border: 2px solid rgba(112, 32, 55, 0.4);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    min-width: 110px;
    max-width: 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    color: #ffffff;
}

.timeline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    transition: var(--transition);
    z-index: -1;
}

.timeline-btn::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.timeline-btn:hover::before,
.timeline-btn.active::before {
    left: 0;
}

.timeline-btn:hover::after {
    opacity: 1;
    transform: scale(1);
    animation: sparkle 1s ease;
}

.timeline-btn:hover {
    border-color: #702037;
    transform: translateY(-5px);
    color: white;
    box-shadow: var(--shadow);
}

.timeline-btn.active {
    background: transparent;
    border-color: #702037;
    color: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.timeline-btn.active::after {
    opacity: 1;
    transform: scale(1);
}

.timeline-btn i {
    font-size: 1.5rem;
}

.timeline-year {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline-title {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.2;
}

.timeline-hint {
    font-size: 0.65rem;
    opacity: 0.8;
    font-style: italic;
    line-height: 1.1;
}

/* Timeline Navigation Controls */
.timeline-navigation-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(32, 32, 32, 0.8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.timeline-nav-btn {
    background: #702037;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.timeline-nav-btn:hover {
    background: #5a1a2c;
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.timeline-nav-btn:active {
    transform: scale(0.95);
}

/* Timeline Indicators */
.timeline-indicators {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(112, 32, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator:hover {
    background: #8a2a47;
    transform: scale(1.2);
}

.indicator.active {
    background: #702037;
    border-color: white;
    box-shadow: 0 0 0 2px #702037;
    transform: scale(1.3);
}

/* Timeline Content */
.timeline-content {
    position: relative;
    min-height: 400px;
}

.timeline-slide {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    background: rgba(32, 32, 32, 0.8);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.timeline-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Interaction Hint */
.interaction-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(112, 32, 55, 0.3) 0%, rgba(112, 32, 55, 0.15) 100%);
    border-radius: var(--border-radius);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    animation: pulse 3s infinite;
}

.interaction-hint i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Timeline Image Gallery */
.timeline-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item.main {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Photo Album for Presentation */
.photo-album {
    padding: 1.5rem;
    background: rgba(32, 32, 32, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.album-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.album-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.album-item:hover img {
    transform: scale(1.1);
}

.polaroid {
    background: rgba(32, 32, 32, 0.9);
    padding: 20px 20px 60px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: var(--transition);
    position: relative;
    max-width: 300px;
    margin: 20px;
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.polaroid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.polaroid-caption {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

/* Timeline Video */
.timeline-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-video .video-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 0;
    padding-bottom: 140%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(32, 32, 32, 0.8);
    background: rgba(32, 32, 32, 0.8);
    transform: rotate(-1deg);
    transition: var(--transition);
}

.timeline-video .video-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.timeline-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-description {
    background: rgba(32, 32, 32, 0.6);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #702037;
}

/* How It Works Section */
.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 2rem;
    background: rgba(32, 32, 32, 0.85);
    box-shadow: 0 0 6px 0 rgba(112, 32, 55, 0.2);
    border-radius: var(--border-radius);
    transition: all 0.35s ease;
    height: 100%;
    overflow: hidden;
}

.step-card::before,
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.step-card::before {
    background: #702037;
    width: 0;
    opacity: 0;
    transition: opacity 0s ease, width 0s ease;
    transition-delay: 0.5s;
}

.step-card::after {
    width: 100%;
    background: rgba(112, 32, 55, 0.3);
    transition: width 0.5s ease;
}

.step-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px 0 rgba(112, 32, 55, 0.3);
}

.step-card:hover::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
    transition-delay: 0;
}

.step-card:hover::after {
    width: 0;
    opacity: 0;
    transition: width 0s ease;
}

.step-card.social-card::after {
    background: #702037;
    opacity: 1;
}

.step-card.social-card::before {
    background: #8a2a47;
}

/* Ecosystem Cards */
.ecosystem-card {
    background: rgba(32, 32, 32, 0.8);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(112, 32, 55, 0.3);
    transition: var(--transition);
    position: relative;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(112, 32, 55, 0.4);
    border-color: #702037;
}

.ecosystem-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.ecosystem-card:hover .ecosystem-img {
    transform: scale(1.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #702037;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

/* FAQ Section Enhanced */
.accordion-item {
    border: 1px solid rgba(112, 32, 55, 0.3);
    border-radius: var(--border-radius-lg) !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: rgba(32, 32, 32, 0.8);
}

.accordion-button {
    background: rgba(32, 32, 32, 0.8);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 2rem;
    border-radius: var(--border-radius-lg) !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 2rem;
    background: rgba(112, 32, 55, 0.1);
}

/* Contact Section Enhanced */
.contact-section {
    background: #090721;
}

/* Flickr Gallery Section */
.flickr-gallery-section {
    background: #090721;
}

.flickr-photo-card {
    background: rgba(32, 32, 32, 0.8);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(112, 32, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.flickr-photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
}

.flickr-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(112, 32, 55, 0.4);
}

.flickr-photo-card a {
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.flickr-photo-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.flickr-photo-card:hover img {
    transform: scale(1.05);
}

.contact-card {
    background: rgba(32, 32, 32, 0.8);
    padding: 4rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid rgba(112, 32, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid rgba(112, 32, 55, 0.4);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(32, 32, 32, 0.6);
    color: #ffffff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #702037;
    box-shadow: 0 0 0 4px rgba(112, 32, 55, 0.2);
    background: rgba(32, 32, 32, 0.8);
    transform: translateY(-2px);
    color: #ffffff;
}

.contact-form .form-label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Contact Items Enhanced */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(32, 32, 32, 0.6);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.contact-item:hover {
    background: rgba(32, 32, 32, 0.8);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    border-color: #702037;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* Final CTA Enhanced */
.final-cta-section {
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform: rotate(45deg);
}

.final-cta-section .btn-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.final-cta-section .btn-primary::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.final-cta-section .btn-primary:hover {
    color: #702037;
    border-color: white;
    transform: translateY(-4px);
}

.final-cta-section .btn-primary:hover::before {
    box-shadow: inset 0 0 0 10em white;
}

/* Map Enhanced */
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
}

/* Footer Enhanced */
.footer {
    background: #202020;
    color: white;
    position: relative;
    margin-top: 4rem;
    padding-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: #202020;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    height: 60px;
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #702037;
}

.social-links a {
    color: var(--gray-300);
    font-size: 1.25rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: #702037;
    transform: translateY(-2px);
}

/* Footer divider line */
.footer hr {
    border-color: var(--gray-700);
    margin: 2rem 0;
}

/* Copyright text */
.footer .text-muted {
    color: var(--gray-400) !important;
}

/* WhatsApp Float Enhanced */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 70px;
    height: 70px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background: #1e7e34;
    box-shadow: 0 15px 50px rgba(40, 167, 69, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 0;
    right: 0;
    border: 3px solid var(--success);
    border-radius: 50%;
    animation: pulse-whatsapp 2s infinite;
    pointer-events: none;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Chat Popup */
.whatsapp-chat-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 370px;           /* Aumenta a largura para evitar quebra dos botões */
    max-height: 440px;      /* Um pouco mais alto para acomodar o conteúdo */
    height: auto;
    background: rgba(32, 32, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(112, 32, 55, 0.4);
    z-index: 99999;
    display: none;
    overflow-y: auto;
    animation: slideInUp 0.4s ease;
}

/* Ajuste para telas pequenas */
@media (max-width: 400px) {
    .whatsapp-chat-popup {
        width: 98vw;
        right: 1vw;
        left: 1vw;
        max-height: 80vh;
    }
}

.whatsapp-chat-popup.active {
    display: block;
}

.whatsapp-chat-header {
    background: var(--success);
    color: white;
    padding: 1.5rem;
    padding-right: 3.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.chat-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid white;
}

.chat-header-info h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-online {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-online i {
    font-size: 0.5rem;
}

.chat-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.whatsapp-chat-body {
    padding: 2rem;
}

.chat-welcome {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.welcome-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-option-btn {
    background: rgba(112, 32, 55, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(112, 32, 55, 0.4);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.chat-option-btn:hover {
    background: #702037;
    border-color: #702037;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 32, 55, 0.4);
}

.chat-option-btn i {
    font-size: 1.5rem;
    color: #702037;
}

.chat-option-btn:hover i {
    color: white;
}

.chat-option-btn span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.chat-option-btn small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.chat-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.chat-divider span {
    background: rgba(32, 32, 32, 0.95);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
}

.chat-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(112, 32, 55, 0.3);
    z-index: -1;
}

.whatsapp-direct {
    background: var(--success) !important;
    border-color: var(--success) !important;
    color: white !important;
}

.whatsapp-direct i {
    color: white !important;
}

.whatsapp-direct:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
}

/* Developer Credit */
.developer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-credit img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.developer-credit:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Award Cards - Expandable Style */
.award-card {
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
    width: 100%;
    padding: 2.5rem 1.5rem;
    background: rgba(32, 32, 32, 0.85);
    box-shadow: 0 0 6px 0 rgba(112, 32, 55, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all 0.35s ease;
    overflow: hidden;
}

.award-card::before,
.award-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.award-card::before {
    background: #702037;
    width: 0;
    opacity: 0;
    transition: opacity 0s ease, width 0s ease;
    transition-delay: 0.5s;
}

.award-card::after {
    width: 100%;
    background: rgba(112, 32, 55, 0.3);
    transition: width 0.5s ease;
}

.award-content {
    width: 100%;
    max-width: 90%;
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.35s ease;
}

.award-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    transition: all 0.35s ease;
}

.award-year {
    color: #702037;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.award-hover-content {
    overflow: hidden;
    max-height: 0;
    transform: translateY(1em);
    transition: all 0.55s ease;
}

.award-hover-content p {
    margin: 1.5em 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5em;
    font-size: 0.95rem;
}

.award-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px 0 rgba(112, 32, 55, 0.4);
}

.award-card:hover::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
    transition-delay: 0;
}

.award-card:hover::after {
    width: 0;
    opacity: 0;
    transition: width 0s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(112, 32, 55, 0.5);
}

.award-card:hover .award-title {
    margin-bottom: 0.25em;
}

.award-card:hover .award-hover-content {
    max-height: 12em;
    transform: none;
}

/* Enhanced sections with glass effects */
.service-card, .benefit-card {
    background: rgba(32, 32, 32, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.step-card {
    background: rgba(32, 32, 32, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.timeline-slide {
    background: rgba(32, 32, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(112, 32, 55, 0.3);
}

.accordion-item {
    background: rgba(32, 32, 32, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Contact Form Enhanced */
.contact-photo {
    max-width: 300px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.btn-group label {
    border-radius: var(--border-radius) !important;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-check:checked + label {
    background: #702037;
    border-color: #702037;
    color: white;
    transform: scale(1.05);
}

#novoPacienteFields {
    transition: all 0.3s ease;
}

#novoPacienteFields.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

/* Services Section Enhanced */
.service-card-complete {
    background: rgba(32, 32, 32, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 32, 55, 0.3);
    transition: var(--transition);
    overflow: hidden;
}

.service-card-complete:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #702037;
}

.service-media {
    position: relative;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.service-img.main {
    grid-column: span 2;
    height: 150px;
}

.service-img.wide {
    grid-column: span 2;
    height: 200px;
}

.service-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.service-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.service-videos-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-videos-row iframe {
    width: 100%;
    height: 120px;
    border-radius: 12px;
}

/* Final CTA Section Enhanced */
.final-cta-section {
    background: transparent;
    padding: 4rem 0;
}

.cta-rounded-box {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(112, 32, 55, 0.4);
}

.cta-rounded-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-image {
    position: relative;
    z-index: 2;
}

.cta-image img {
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Chat Widget Enhanced */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 320px;
    background: rgba(32, 32, 32, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(112, 32, 55, 0.4);
    display: none;
    overflow: hidden;
}

.chat-window.active {
    display: block;
    animation: slideInUp 0.3s ease;
}

.chat-header {
    background: linear-gradient(135deg, #702037 0%, #5a1a2c 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-messages {
    padding: 1.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.chat-message {
    background: rgba(112, 32, 55, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.chat-actions {
    padding: 1rem;
    border-top: 1px solid rgba(112, 32, 55, 0.4);
}

/* Custom Grid for 5 columns */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/* Custom Radio Tabs Style - Inspired by Uiverse.io */
.custom-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.wrap {
    --round: 10px;
    --p-x: 8px;
    --p-y: 4px;
    --w-label: 240px;
    --color-pure: #ffffff;
    --color-primary: rgba(32, 32, 32, 0.95);
    --color-secondary: rgba(255, 255, 255, 0.9);
    --muted: #702037;
    
    display: flex;
    align-items: center;
    padding: var(--p-y) var(--p-x);
    position: relative;
    background: var(--color-primary);
    border-radius: var(--round);
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
}

.wrap::-webkit-scrollbar {
    display: none;
}

.wrap input {
    height: 0;
    width: 0;
    position: absolute;
    overflow: hidden;
    display: none;
    visibility: hidden;
}

.wrap .label {
    cursor: pointer;
    outline: none;
    font-size: 0.875rem;
    letter-spacing: initial;
    font-weight: 600;
    color: var(--color-secondary);
    background: transparent;
    padding: 12px 16px;
    width: var(--w-label);
    min-width: var(--w-label);
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}

.wrap .label span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: nowrap;
}

.wrap input[class*="rd-"]:checked + .label {
    color: var(--color-pure);
}

.wrap .bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    transform-origin: 0 0 0;
    height: 100%;
    width: var(--w-label);
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
}

.wrap .bar::before,
.wrap .bar::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--muted);
}

.wrap .bar::before {
    top: 0;
    border-radius: 0 0 9999px 9999px;
}

.wrap .bar::after {
    bottom: 0;
    border-radius: 9999px 9999px 0 0;
}

.wrap .slidebar {
    position: absolute;
    height: calc(100% - (var(--p-y) * 4));
    width: var(--w-label);
    border-radius: calc(var(--round) - var(--p-y));
    background: var(--muted);
    transform-origin: 0 0 0;
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
}

.wrap .rd-1:checked ~ .bar,
.wrap .rd-1:checked ~ .slidebar,
.wrap .rd-1 + .label:hover ~ .slidebar {
    transform: translateX(0) scaleX(1);
}

.wrap .rd-2:checked ~ .bar,
.wrap .rd-2:checked ~ .slidebar,
.wrap .rd-2 + .label:hover ~ .slidebar {
    transform: translateX(100%) scaleX(1);
}

.wrap .rd-3:checked ~ .bar,
.wrap .rd-3:checked ~ .slidebar,
.wrap .rd-3 + .label:hover ~ .slidebar {
    transform: translateX(200%) scaleX(1);
}

/* Custom Tabs Content */
.custom-tabs-content {
    position: relative;
}

.custom-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.custom-tab-pane:first-child {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wrap {
        --w-label: 150px;
    }
    
    .wrap .label {
        font-size: 0.75rem;
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .wrap {
        --w-label: 120px;
    }
    
    .wrap .label span {
        font-size: 0.7rem;
    }
    
    .wrap .label i {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.2) rotate(180deg); 
        opacity: 0.8; 
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.text-primary {
    color: #702037 !important;
}

.bg-light {
    background-color: rgba(32, 32, 32, 0.6) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none !important;
}

.btn:focus-visible {
    outline: 2px solid #702037;
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
.btn-primary:hover:focus,
.btn-primary.focus {
    background: transparent !important;
    border-color: #702037 !important;
    color: #702037 !important;
    box-shadow: none !important;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background: transparent !important;
    border-color: #702037 !important;
    color: #fff !important;
}

.btn-primary:not(:disabled):not(.disabled):active::before,
.btn-primary:not(:disabled):not(.disabled).active::before {
    box-shadow: inset 0 0 0 10em #702037 !important;
}

.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible,
.btn-outline-primary:hover:focus,
.btn-outline-primary.focus {
    background: transparent !important;
    border-color: #702037 !important;
    color: #702037 !important;
    box-shadow: none !important;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
    background: transparent !important;
    border-color: #702037 !important;
    color: #fff !important;
}

.btn-outline-primary:not(:disabled):not(.disabled):active::before,
.btn-outline-primary:not(:disabled):not(.disabled).active::before {
    box-shadow: inset 0 0 0 10em #702037 !important;
}

/* Form Validation */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1) !important;
}

.is-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1) !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875em;
    color: #dc3545;
    font-weight: 500;
}

/* Navigation Active State */
.nav-link.active {
    color: #702037 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #702037;
    border-radius: 2px;
}

/* Loading State */
.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* High Performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(32, 32, 32, 0.8);
}

::-webkit-scrollbar-thumb {
    background: #702037;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a1a2c;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-navigation {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .timeline-btn {
        min-width: 100px;
        max-width: 130px;
        padding: 0.8rem 0.8rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .timeline-navigation {
        padding: 1rem 0.5rem;
        gap: 0.4rem;
        justify-content: flex-start;
    }
    
    .timeline-btn {
        min-width: 95px;
        max-width: 120px;
        padding: 0.75rem 0.6rem;
    }
    
    .timeline-image img {
        height: 300px;
    }
    
    .gallery-grid {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .floating-navbar {
        top: 10px;
        width: 95%;
        padding: 0.5rem !important;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .product-logo {
        width: 250%;
    }
    
    .hero-logos {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
    
    .floating-glass {
        display: none !important;
    }
    
    .hero-section::before {
        animation-duration: 12s;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }
    
    .video-container {
        padding-bottom: 56.25%; /* 16:9 for mobile */
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-photo {
        max-width: 180px;
        margin-bottom: 2rem;
    }
    
    .ps-lg-5 {
        padding-left: 0 !important;
    }
    
    .btn-group-custom {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-group-custom label {
        max-width: 100%;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .polaroid {
        margin: 10px auto;
        padding: 15px 15px 50px 15px;
        max-width: 250px;
    }
    
    .polaroid img {
        height: 200px;
    }
    
    .timeline-video .video-container {
        max-width: 250px;
        margin: 0 auto;
        padding-bottom: 120%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 40px);
        left: 20px;
        right: 20px;
        bottom: 90px;
    }
    
    .whatsapp-chat-body {
        padding: 1.5rem;
    }
    
    .chat-option-btn {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .cta-rounded-box {
        padding: 2.5rem;
        border-radius: var(--border-radius-lg);
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .service-card, .benefit-card, .video-card {
        padding: 2rem;
    }
    
    .service-card-complete {
        padding: 1.5rem;
    }
    
    .service-gallery {
        gap: 0.3rem;
    }
    
    .service-img {
        height: 80px;
    }
    
    .service-img.main {
        height: 120px;
    }
    
    .timeline-navigation {
        padding: 0.75rem;
        gap: 0.4rem;
        justify-content: flex-start;
    }
    
    .timeline-btn {
        min-width: 90px;
        max-width: 110px;
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .timeline-btn i {
        font-size: 1.2rem;
    }
    
    .timeline-year {
        font-size: 0.85rem;
    }
    
    .timeline-title {
        font-size: 0.75rem;
    }
    
    .timeline-hint {
        font-size: 0.65rem;
    }
    
    .gallery-grid {
        gap: 0.5rem;
    }
    
    .album-grid {
        gap: 0.5rem;
    }
    
    .timeline-navigation-controls {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .timeline-indicators {
        order: -1;
    }
    
    .interaction-hint {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .developer-credit {
        margin-top: 1rem;
    }
    
    .footer::before {
        top: -40px;
        height: 40px;
    }
    
    .footer {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .hero-light {
        width: 400px;
        height: 400px;
        filter: blur(40px);
    }
}

@media (max-width: 576px) {
    .floating-navbar {
        top: 5px;
        width: calc(100% - 10px);
        left: 5px;
        right: 5px;
        transform: none;
        padding: 0.25rem !important;
    }
    
    .navbar .btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-section {
        padding-top: 90px;
    }
    
    .product-logo {
        width: 180%;
    }
    
    .hero-logos {
        padding: 1.5rem 0;
    }
    
    .logo-item {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-stats {
        padding: 1.5rem;
        background: rgba(32, 32, 32, 0.9);
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .contact-card,
    .video-card {
        padding: 1.5rem;
        background: rgba(32, 32, 32, 0.95);
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 20px);
        left: 10px;
        right: 10px;
        bottom: 80px;
    }
    
    .whatsapp-chat-header {
        padding: 1.25rem;
        padding-right: 3rem;
    }
    
    .chat-close {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .whatsapp-chat-body {
        padding: 1.25rem;
    }
    
    .chat-option-btn {
        padding: 1rem;
    }
    
    .chat-option-btn i {
        font-size: 1.25rem;
    }
    
    .chat-option-btn span {
        font-size: 0.9rem;
    }
    
    .chat-option-btn small {
        font-size: 0.8rem;
    }
    
    .cta-rounded-box {
        padding: 2rem;
        border-radius: var(--border-radius);
    }
    
    .final-cta-section {
        padding: 2rem 0;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .benefit-number,
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-navigation {
        padding: 0.5rem;
        gap: 0.3rem;
        justify-content: flex-start;
    }
    
    .timeline-btn {
        min-width: 80px;
        max-width: 95px;
        padding: 0.5rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .timeline-btn i {
        font-size: 1rem;
    }
    
    .timeline-year {
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .timeline-title {
        font-size: 0.65rem;
    }
    
    .timeline-hint {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .gallery-item.main,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .timeline-navigation-controls {
        padding: 0.75rem;
        gap: 1rem;
    }
    
    .timeline-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .polaroid {
        margin: 5px auto;
        padding: 10px 10px 40px 10px;
        max-width: 180px;
    }
    
    .polaroid img {
        height: 130px;
    }
    
    .polaroid-caption {
        font-size: 0.75rem;
        bottom: 8px;
    }
    
    .timeline-video .video-container {
        max-width: 180px;
        border: 4px solid white;
        padding-bottom: 100%;
    }
    
    .interaction-hint {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .developer-credit {
        font-size: 0.8rem;
    }
    
    .developer-credit img {
        height: 25px;
    }
    
    .footer::before {
        top: -30px;
        height: 30px;
    }
    
    .footer {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .hero-wave {
        height: 100px;
    }
    
    .glass-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Polaroid Variations */
.polaroid:nth-child(odd) {
    transform: rotate(-2deg);
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid:nth-child(3n) {
    transform: rotate(-1deg);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Add some vintage tape effect */
.polaroid::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 40px;
    height: 20px;
    background: rgba(32, 32, 32, 0.9);
    border: 1px solid rgba(112, 32, 55, 0.3);
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Timeline Video with Polaroid Effect */
.timeline-video .video-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    filter: blur(8px);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.image-modal-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.image-modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.image-modal-caption {
    text-align: center;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Performance Optimizations */
.hero-section,
.floating-glass,
.hero-light {
    will-change: transform;
}

.btn,
.card,
.timeline-btn {
    will-change: transform, box-shadow;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .chat-widget,
    .hero-wave,
    .floating-glass,
    .hero-light {
        display: none !important;
    }