/* ========================================
   Segurollego - Custom Styles
   Tema oscuro moderno y elegante
   ======================================== */

/* Variables CSS */
:root {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f2e;
    --bg-card: #161b27;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --color-orange: #f97316;
    --color-orange-light: #fb923c;
    --color-blue: #0ea5e9;
    --color-blue-light: #38bdf8;
    --color-purple: #8b5cf6;
    --color-purple-light: #a78bfa;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-brand: linear-gradient(135deg, var(--color-orange) 0%, var(--color-blue) 100%);
    --shadow-glow-orange: 0 0 40px -10px rgba(249, 115, 22, 0.4);
    --shadow-glow-blue: 0 0 40px -10px rgba(14, 165, 233, 0.4);
    --shadow-glow-purple: 0 0 40px -10px rgba(139, 92, 246, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Selection */
::selection {
    background: rgba(249, 115, 22, 0.3);
    color: white;
}

/* ========================================
   Utility Classes
   ======================================== */

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-brand {
    background: var(--gradient-brand);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 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%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-primary-gradient {
    background: var(--gradient-brand);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    opacity: 0.9;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.7), var(--bg-primary));
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.8; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Ecosystem Cards */
.eco-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.eco-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.eco-card-orange:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: var(--shadow-glow-orange);
}

.eco-card-blue:hover {
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: var(--shadow-glow-blue);
}

.eco-card-purple:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-glow-purple);
}

.eco-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.eco-card-orange .eco-icon {
    background: rgba(249, 115, 22, 0.2);
    color: var(--color-orange);
}

.eco-card-blue .eco-icon {
    background: rgba(14, 165, 233, 0.2);
    color: var(--color-blue);
}

.eco-card-purple .eco-icon {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-purple);
}

.eco-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.eco-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========================================
   Section Styles
   ======================================== */

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* ========================================
   Roles Section
   ======================================== */

.roles-section {
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
    position: relative;
}

.roles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.roles-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.role-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.role-card:hover {
    transform: translateY(-8px);
}

.role-card-orange:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: var(--shadow-glow-orange);
}

.role-card-blue:hover {
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: var(--shadow-glow-blue);
}

.role-card-purple:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-glow-purple);
}

.role-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.role-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.role-icon-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.role-card-orange .role-icon-badge {
    background: rgba(249, 115, 22, 0.2);
    color: var(--color-orange);
}

.role-card-blue .role-icon-badge {
    background: rgba(14, 165, 233, 0.2);
    color: var(--color-blue);
}

.role-card-purple .role-icon-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-purple);
}

.role-content {
    padding: 2.5rem 1.5rem 1.5rem;
}

.role-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.role-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.role-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.role-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.role-features li i {
    font-size: 0.875rem;
}

.role-card-orange .role-features li i {
    color: var(--color-orange);
}

.role-card-blue .role-features li i {
    color: var(--color-blue);
}

.role-card-purple .role-features li i {
    color: var(--color-purple);
}

.role-buttons {
    margin-top: auto;
}

.btn-orange {
    background: var(--color-orange);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: var(--color-orange-light);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-orange {
    background: transparent;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-orange);
}

.btn-blue {
    background: var(--color-blue);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    background: var(--color-blue-light);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-blue);
}

.btn-purple {
    background: var(--color-purple);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    background: var(--color-purple-light);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-purple {
    background: transparent;
    color: var(--color-purple);
    border: 1px solid var(--color-purple);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-purple:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-purple);
}

/* ========================================
   Experiences Section
   ======================================== */

.experiences-section {
    background: var(--bg-primary);
    position: relative;
}

.experiences-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    transform: translateY(-50%);
    pointer-events: none;
}

.experiences-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    transform: translateY(-50%);
    pointer-events: none;
}

/* Stats Row */
.stats-row {
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--color-orange);
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--color-orange);
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.badge-passenger,
.badge-driver,
.badge-operator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-passenger {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.badge-driver {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-blue);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.badge-operator {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* ========================================
   Downloads Section
   ======================================== */

.downloads-section {
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
    position: relative;
}

.downloads-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 25%;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.platform-section {
    margin-bottom: 3rem;
}

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

.platform-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.platform-icon.android {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.platform-icon.ios {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.platform-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.platform-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* App Cards */
.app-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-4px);
}

.app-card-orange:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: var(--shadow-glow-orange);
}

.app-card-blue:hover {
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: var(--shadow-glow-blue);
}

.app-card-purple:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-glow-purple);
}

.app-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.app-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.app-card-orange .app-icon {
    background: rgba(249, 115, 22, 0.2);
    color: var(--color-orange);
}

.app-card-blue .app-icon {
    background: rgba(14, 165, 233, 0.2);
    color: var(--color-blue);
}

.app-card-purple .app-icon {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-purple);
}

.app-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.app-header p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.app-features li i {
    color: var(--color-orange);
    font-size: 0.7rem;
}

.btn-android {
    background: #22c55e;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-android:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-2px);
}

.btn-ios {
    background: white;
    color: #0f1419;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-ios:hover {
    background: #e5e7eb;
    color: #0f1419;
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--color-orange);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

/* Support Banner */
.support-banner {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
    padding: 3rem 0;
}

.support-banner h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.support-banner p {
    color: var(--text-secondary);
    margin: 0;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
}

/* Footer Main */
.footer-main {
    padding: 4rem 0;
}

.footer-brand h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--color-orange);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-main h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

.footer-links a::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::after {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   Animations
   ======================================== */

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        border: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .eco-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .app-card {
        margin-bottom: 1rem;
    }
    
    .support-banner {
        text-align: center;
    }
    
    .support-banner .text-lg-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .brand-text {
        font-size: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .eco-card h3 {
        font-size: 1.1rem;
    }
    
    .role-content h3 {
        font-size: 1.25rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}
