/* ==========================================
   ΣΤΡΙΦΤΕΡΟΙ - Landing Page Styles
   Dark Theme with Red Accents
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Strifteroi Red */
    --primary: #E11F2C;
    --primary-dark: #C41A26;
    --primary-light: #F03A45;

    /* Dark Theme Background */
    --bg-main: #121212;
    --bg-card: #1E1E1E;
    --bg-elevated: #252525;
    --border-color: #2D2D2D;

    /* Text Colors */
    --text: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #808080;

    /* Legacy mappings for compatibility */
    --secondary: #1E1E1E;
    --secondary-light: #2D2D2D;
    --accent: #E11F2C;

    /* Gradients */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, #1E1E1E 0%, #121212 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 4px 14px 0 rgba(225, 31, 44, 0.4);
    --shadow-red-lg: 0 10px 30px rgba(225, 31, 44, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(225, 31, 44, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(225, 31, 44, 0.15);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(225, 31, 44, 0.3);
}

/* App Name */
.app-name {
    color: white;
    font-weight: 900;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--gradient);
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    overflow: visible;
    background: var(--bg-main);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(225, 31, 44, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(225, 31, 44, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(225, 31, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    margin: 1rem 0 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-waitlist {
    width: 100%;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
}

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

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    transform: none;
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: scale(1.02);
}

.phone-frame {
    position: relative;
    width: 320px;
    height: 660px;
    background: none;
    border-radius: 45px;
    padding: 0;
    box-shadow: none;
}

.phone-notch {
    display: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: none;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(225, 31, 44, 0.1) 0%, rgba(225, 31, 44, 0.05) 100%);
    width: 100%;
    height: 100%;
}

.mockup-icon {
    font-size: 3rem;
}

.mockup-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.mockup-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.sos-screen {
    background: linear-gradient(135deg, rgba(225, 31, 44, 0.2) 0%, rgba(225, 31, 44, 0.3) 100%);
}

/* Screen Images */
.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Phone Slideshow */
.phone-slideshow {
    position: relative;
}

.phone-slideshow .screen-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.phone-slideshow .screen-image.active {
    opacity: 1;
}

/* Removed tilted phone styles - phones are now straight */

/* ==========================================
   Key Feature Highlight Section
   ========================================== */
.key-feature {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(225, 31, 44, 0.15) 0%, var(--bg-main) 50%, rgba(225, 31, 44, 0.1) 100%);
    border-top: 1px solid rgba(225, 31, 44, 0.2);
    border-bottom: 1px solid rgba(225, 31, 44, 0.2);
}

.key-feature-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.notification-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.notification-icon {
    font-size: 3.5rem;
    display: block;
    animation: bellRing 2s ease-in-out infinite;
}

.notification-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(225, 31, 44, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.key-feature h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--text);
}

.key-feature h2 .highlight {
    color: var(--primary);
}

.key-feature-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.key-feature-text strong {
    color: var(--text);
}

.key-feature-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.key-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-card);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.key-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
}

.key-step-text {
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
}

.key-step-arrow {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .key-feature-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .key-step {
        padding: 0.5rem 0.8rem;
    }

    .key-step-text {
        font-size: 0.8rem;
    }

    .key-step-arrow {
        transform: rotate(90deg);
        font-size: 1rem;
    }

    .notification-icon {
        font-size: 2.5rem;
    }

    .notification-pulse {
        width: 60px;
        height: 60px;
    }
}

/* ==========================================
   Problem/Solution Section (Legacy)
   ========================================== */
.problem-solution {
    padding: 2.5rem 0;
    background: var(--bg-main);
}

.problem-solution .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card,
.solution-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.problem-card h3 {
    color: var(--text);
}

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

.solution-card {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-red-lg);
}

.solution-card h3,
.solution-card p {
    color: rgba(255, 255, 255, 0.85);
}

.emoji-large {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.problem-card h3,
.solution-card h3 {
    margin-bottom: 1rem;
}

.solution-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    padding: 4rem 0;
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .section-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    color: var(--text);
    margin-top: 0;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-content {
    max-width: 500px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--text);
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-list li {
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 500;
}

.feature-list li::before {
    color: var(--primary);
}

.feature-phone {
    display: flex;
    justify-content: center;
}

.feature-phone .phone-frame {
    width: 300px;
    height: 620px;
    border-radius: 42px;
    background: none;
    padding: 0;
    box-shadow: none;
}

.feature-phone .phone-screen {
    border-radius: 34px;
}

/* Extended Feature List */
.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.feature-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

/* ==========================================
   Features Grid Section (More Features)
   ========================================== */
.features-grid-section {
    padding: 3rem 0;
    background: var(--bg-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.feature-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.feature-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-card ul li:last-child {
    border-bottom: none;
}

.feature-card ul li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Ride Types Section
   ========================================== */
.ride-types {
    padding: 3rem 0;
    background: var(--bg-main);
    color: white;
}

.ride-types .section-header h2,
.ride-types .section-header p {
    color: white;
}

.ride-types .section-header p {
    opacity: 0.8;
}

/* Circular Layout */
.ride-types-circle {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 2rem auto;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: var(--shadow-red-lg);
    z-index: 10;
}

.center-icon {
    font-size: 1.75rem;
}

.center-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.ride-types-circle .ride-type-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    margin: -32.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
    cursor: default;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-130px) rotate(calc(var(--i) * -30deg));
}

.ride-types-circle .ride-type-card:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    transform: rotate(calc(var(--i) * 30deg)) translateY(-130px) rotate(calc(var(--i) * -30deg)) scale(1.15);
    box-shadow: var(--shadow-red);
    z-index: 20;
}

.ride-type-icon {
    font-size: 1.1rem;
}

.ride-type-name {
    font-weight: 600;
    font-size: 0.5rem;
    color: var(--text);
    text-align: center;
    line-height: 1.1;
}

/* Grid fallback for mobile */
.ride-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ride-types-grid .ride-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: default;
}

.ride-types-grid .ride-type-card:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works {
    padding: 4rem 0;
    background: var(--bg-card);
}

.how-it-works .section-header h2 {
    color: var(--text);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--gradient);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--shadow-red);
}

.step-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.step-content p {
    color: var(--text-secondary);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(225, 31, 44, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-red);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 6px 20px 0 rgba(225, 31, 44, 0.5);
}

.cta-buttons .btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.cta-buttons .btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
}

.cta-tagline {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.beta-notice {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.35);
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* ==========================================
   Feedback Section
   ========================================== */
/* ── Waitlist Section ── */
.waitlist-section {
    padding: 5rem 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(225, 31, 44, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(225, 31, 44, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.waitlist-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.waitlist-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bell-shake 3s ease-in-out infinite;
}

@keyframes bell-shake {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(-12deg); }
    95% { transform: rotate(12deg); }
    97% { transform: rotate(-8deg); }
    99% { transform: rotate(8deg); }
}

.waitlist-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.waitlist-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.waitlist-input-row {
    display: flex;
    width: 100%;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    transition: border-color 0.2s;
}

.waitlist-input-row:focus-within {
    border-color: var(--primary);
}

.waitlist-input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
}

.waitlist-input::placeholder {
    color: var(--text-secondary);
}

.waitlist-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 1.5rem;
    background: var(--gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.waitlist-btn:hover {
    opacity: 0.9;
}

.waitlist-btn .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.waitlist-btn:hover .btn-icon {
    transform: translateX(3px);
}

.waitlist-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 480px) {
    .waitlist-input-row {
        flex-direction: column;
        border-radius: var(--radius-lg);
        overflow: visible;
        background: transparent;
        border: none;
        gap: 0.75rem;
    }

    .waitlist-input {
        border: 2px solid var(--border-color);
        border-radius: var(--radius-lg);
        background: var(--bg-card);
        padding: 0.9rem 1.25rem;
    }

    .waitlist-btn {
        border-radius: var(--radius-lg);
        justify-content: center;
        padding: 0.9rem 1.25rem;
    }
}

/* ── End Waitlist Section ── */

.feedback-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.feedback-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.feedback-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-text h2 {
    color: var(--text);
}

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

.feedback-form {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 31, 44, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B3B3B3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-submit span {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .feedback-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feedback-form {
        padding: 1.5rem;
    }

    .feedback-text {
        text-align: center;
    }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 3rem 0 1.5rem;
    background: var(--bg-card);
    color: white;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-brand .logo {
    color: white;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-reverse {
        direction: ltr;
    }

    .feature-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-list {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .phone-frame {
        width: 280px;
        height: 580px;
    }

    .phone-notch {
        width: 110px;
        height: 25px;
    }

    .problem-solution .container {
        flex-direction: column;
    }

    .solution-arrow {
        transform: rotate(90deg);
    }

    .problem-card,
    .solution-card {
        max-width: 100%;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .ride-types-circle {
        width: 300px;
        height: 300px;
    }

    .ride-types-circle .ride-type-card {
        width: 55px;
        height: 55px;
        margin: -27.5px;
        transform: rotate(calc(var(--i) * 30deg)) translateY(-115px) rotate(calc(var(--i) * -30deg));
    }

    .ride-types-circle .ride-type-card:hover {
        transform: rotate(calc(var(--i) * 30deg)) translateY(-115px) rotate(calc(var(--i) * -30deg)) scale(1.1);
    }

    .circle-center {
        width: 75px;
        height: 75px;
    }

    .center-icon {
        font-size: 1.5rem;
    }

    .ride-type-icon {
        font-size: 1rem;
    }

    .ride-type-name {
        font-size: 0.45rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    html, body {
        overflow-x: hidden;
        overflow-y: auto !important;
        height: auto !important;
        position: static !important;
    }

    h1 {
        font-size: 1.75rem;
        word-wrap: break-word;
    }

    h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 35px;
    }

    .phone-notch {
        width: 90px;
        height: 20px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .feature-phone .phone-frame {
        width: 220px;
        height: 460px;
    }

    /* Feature blocks mobile */
    .feature-block {
        padding: 2rem 0;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.8rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    /* Features grid mobile */
    .features-grid-section {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-card h4 {
        font-size: 1rem;
    }

    .feature-card ul li {
        font-size: 0.75rem;
    }

    .feature-card-icon {
        font-size: 2rem;
    }

    /* Ride types circle - smaller for mobile */
    .ride-types-circle {
        width: 240px;
        height: 240px;
    }

    .ride-types-circle .ride-type-card {
        width: 42px;
        height: 42px;
        margin: -21px;
        transform: rotate(calc(var(--i) * 30deg)) translateY(-90px) rotate(calc(var(--i) * -30deg));
    }

    .ride-types-circle .ride-type-card:hover {
        transform: rotate(calc(var(--i) * 30deg)) translateY(-90px) rotate(calc(var(--i) * -30deg)) scale(1.1);
    }

    .circle-center {
        width: 55px;
        height: 55px;
    }

    .center-icon {
        font-size: 1rem;
    }

    .center-text {
        font-size: 0.5rem;
    }

    .ride-type-icon {
        font-size: 0.7rem;
    }

    .ride-type-name {
        font-size: 0.35rem;
    }

    /* Steps mobile */
    .step {
        padding: 1.5rem 1rem;
        min-width: auto;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    /* Problem/Solution cards mobile */
    .problem-card,
    .solution-card {
        padding: 1.5rem;
    }

    .emoji-large {
        font-size: 2.5rem;
    }

    /* CTA section mobile */
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content > p {
        font-size: 0.95rem;
    }

    .cta-tagline {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Section badges & headers */
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Footer mobile */
    .footer-links h4,
    .footer-social h4 {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .phone-frame {
        width: 200px;
        height: 420px;
    }

    .feature-phone .phone-frame {
        width: 180px;
        height: 380px;
    }

    .ride-types-circle {
        width: 200px;
        height: 200px;
    }

    .ride-types-circle .ride-type-card {
        width: 36px;
        height: 36px;
        margin: -18px;
        transform: rotate(calc(var(--i) * 30deg)) translateY(-75px) rotate(calc(var(--i) * -30deg));
    }

    .circle-center {
        width: 45px;
        height: 45px;
    }

    .center-icon {
        font-size: 0.85rem;
    }

    .center-text {
        font-size: 0.4rem;
    }

    .ride-type-icon {
        font-size: 0.6rem;
    }

    .ride-type-name {
        font-size: 0.3rem;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(225, 31, 44, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(225, 31, 44, 0);
    }
}

.hero-phone {
    animation: float 6s ease-in-out infinite;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Red glow effect for special elements */
.glow-red {
    animation: pulse-red 2s ease-in-out infinite;
}

/* ==========================================
   MODERN EFFECTS & ENHANCEMENTS
   ========================================== */

/* Animated Gradient Background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, #121212, #1a0a0c, #121212, #0a0a12);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

/* Particle Effect Container */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Apply glass effect to problem/solution cards */
.problem-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(225, 31, 44, 0.3);
}

.solution-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(225, 31, 44, 0.4);
}

/* Enhanced Button Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(225, 31, 44, 0.5),
        0 0 60px rgba(225, 31, 44, 0.2);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(225, 31, 44, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary:hover::after {
    width: 300px;
    height: 300px;
}

/* Glowing Badge */
.badge {
    position: relative;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(225, 31, 44, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(225, 31, 44, 0.2);
    }
}

/* Enhanced Phone Mockup */
.phone-mockup {
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse 50% 50% at center,
        rgba(225, 31, 44, 0.25) 0%,
        rgba(225, 31, 44, 0.15) 25%,
        rgba(225, 31, 44, 0.05) 50%,
        transparent 70%
    );
    filter: blur(30px);
    pointer-events: none;
    animation: phoneGlow 6s ease-in-out infinite alternate;
    z-index: -1;
    border-radius: 50%;
}

@keyframes phoneGlow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Animated Stats Counter */
.stat-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(225, 31, 44, 0.1);
}

/* Animated Section Headers */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: var(--radius-full);
}

/* Enhanced Feature Blocks */
.feature-block {
    position: relative;
    transition: transform 0.3s ease;
}

.feature-content {
    position: relative;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(225, 31, 44, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-block:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(225, 31, 44, 0.2);
}

/* Feature List Animation */
.feature-list li {
    position: relative;
    padding-left: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    color: var(--primary);
}

/* Enhanced Step Cards */
.step {
    position: relative;
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--radius-xl);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(225, 31, 44, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.step-number {
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(225, 31, 44, 0.5);
}

/* Ride Type Cards Enhanced */
.ride-types-circle .ride-type-card {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced Circle Center */
.circle-center {
    position: relative;
    overflow: hidden;
}

.circle-center::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    100% { transform: rotate(360deg); }
}

.circle-center::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--gradient);
    border-radius: 50%;
    z-index: -1;
}

/* Enhanced CTA Section */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Animated Underline Links */
.nav-links a:not(.btn-nav) {
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Enhanced Footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Social Links Enhanced */
.social-links a {
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.social-links a:hover::before {
    left: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 31, 44, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* Text Reveal Animation */
@keyframes textReveal {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.text-reveal {
    animation: textReveal 1s ease forwards;
}

/* Typing Effect Styles */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary);
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Loading Animation */
@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Reveal Animation Classes */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.revealed {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
