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

:root {
    /* Apple-inspired Colors */
    --primary-color: #007AFF;
    --primary-dark: #0056CC;
    --primary-light: #4DA2FF;
    
    /* Secondary Colors */
    --secondary-color: #FF3B30;
    --accent-color: #30D158;
    --warning-color: #FF9500;
    --purple-color: #AF52DE;
    
    /* Neutral Colors - Apple System */
    --text-primary: #1D1D1F;
    --text-secondary: #515154;
    --text-light: #6E6E73;
    --background: #FFFFFF;
    --background-light: #F5F5F7;
    --background-dark: #000000;
    --surface: #FBFBFD;
    --border-color: #D2D2D7;
    
    /* Apple Gradients */
    --gradient-primary: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    --gradient-secondary: linear-gradient(135deg, #FF3B30 0%, #FF9500 100%);
    --gradient-accent: linear-gradient(135deg, #30D158 0%, #007AFF 100%);
    --gradient-purple: linear-gradient(135deg, #AF52DE 0%, #FF2D92 100%);
    
    /* Apple Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.16);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Typography - Apple System */
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Enhanced Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-elastic: 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    
    /* Enhanced Gradients */
    --gradient-mesh: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(175, 82, 222, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(48, 209, 88, 0.1) 0%, transparent 50%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
}

/* Enhanced scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: all var(--transition-smooth);
}

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

/* Apple-style selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Ensure text visibility */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
}

p, span, div {
    color: inherit;
}

/* Premium text shadows for better readability */
.hero-title {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-header h2 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

/* Apple-style Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-smooth);
    transform: translateY(0);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

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

.navbar.scrolled {
    background: rgba(251, 251, 253, 0.9);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: saturate(180%) blur(25px);
    -webkit-backdrop-filter: saturate(180%) blur(25px);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 21px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all var(--transition-spring);
    position: relative;
}

.nav-logo:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.nav-logo i {
    margin-right: 8px;
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-spring);
    animation: logoFloat 3s ease-in-out infinite;
}

.nav-logo:hover i {
    animation-play-state: paused;
    transform: rotate(10deg) scale(1.1);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(2deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all var(--transition-spring);
    position: relative;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 122, 255, 0.15);
    opacity: 0;
    transition: all var(--transition-smooth);
    border-radius: var(--radius-lg);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.15);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-spring);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-spring);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: none;
    background-color: transparent;
}

.nav-link.cta-btn::before {
    background: var(--gradient-shimmer);
    animation: shimmer 3s infinite;
    opacity: 0.3;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 122, 255, 0.5);
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link.cta-btn:hover::before {
    opacity: 0.6;
}

.nav-link.cta-btn:active {
    transform: translateY(-1px) scale(1.02);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(0, 122, 255, 0.1);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Apple-style Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #FBFBFD 0%, #F5F5F7 100%);
    overflow: hidden;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    animation: meshFloat 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 122, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(175, 82, 222, 0.05) 0%, transparent 30%);
    animation: heroGlow 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

@keyframes heroGlow {
    0% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    100% { opacity: 0.6; transform: scale(1.1) rotate(5deg); }
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--text-primary);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    animation: titleSlideUp 1s var(--transition-spring) 0.2s both;
}

.gradient-text {
    background: linear-gradient(45deg, #007AFF, #5856D6, #AF52DE, #FF2D92);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: inherit;
}

@keyframes titleSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    0% { filter: brightness(1) contrast(1); }
    100% { filter: brightness(1.2) contrast(1.1); }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 600px;
    animation: fadeInUp 1s var(--transition-spring) 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s var(--transition-spring) 0.6s both;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.01em;
    transition: all var(--transition-spring);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left var(--transition-slow);
    z-index: 1;
}

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

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 122, 255, 0.4);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    border-radius: inherit;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
}

.btn-outline:hover::after {
    opacity: 1;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s var(--transition-spring) 0.8s both;
}

.stat {
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all var(--transition-spring);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color); /* Fallback color */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .stat-number {
        color: var(--primary-color);
        background: none;
    }
}

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

/* Apple-style Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1D1D1F, #2C2C2E);
    border-radius: 44px;
    padding: 8px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 50px 100px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: phoneFloat 8s ease-in-out infinite, phoneGlow 4s ease-in-out infinite alternate;
    transform-style: preserve-3d;
    transition: all var(--transition-spring);
}

.phone-mockup:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotateX(10deg) rotateY(-10deg) scale(1.05);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 70px 140px rgba(0, 0, 0, 0.3);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #1D1D1F;
    border-radius: 2px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

@keyframes phoneFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(5deg) rotateY(-5deg); 
    }
    25% { 
        transform: translateY(-10px) rotateX(7deg) rotateY(-3deg); 
    }
    50% { 
        transform: translateY(-15px) rotateX(5deg) rotateY(-5deg); 
    }
    75% { 
        transform: translateY(-8px) rotateX(3deg) rotateY(-7deg); 
    }
}

@keyframes phoneGlow {
    0% { 
        filter: brightness(1) contrast(1);
        box-shadow: 
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 25px 50px rgba(0, 0, 0, 0.3),
            0 50px 100px rgba(0, 0, 0, 0.2);
    }
    100% { 
        filter: brightness(1.1) contrast(1.05);
        box-shadow: 
            0 0 0 1px rgba(255, 255, 255, 0.15),
            0 25px 50px rgba(0, 122, 255, 0.1),
            0 50px 100px rgba(0, 0, 0, 0.2);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, #1C1C1E 100%);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-interface {
    padding: 24px 20px;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, #1C1C1E 100%);
}

.app-header {
    text-align: center;
    margin-bottom: 32px;
}

.app-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.status-bar {
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    margin-bottom: 24px;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

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

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 22px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card span {
    color: white;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.01em;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-random 8s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Apple-style Features Section */
.features {
    background: var(--background);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 122, 255, 0.1), transparent);
    opacity: 0;
    transition: all var(--transition-slow);
    animation: rotate 10s linear infinite;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 122, 255, 0.3);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
    transition: all var(--transition-spring);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity var(--transition-smooth);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, #007AFF, #5856D6, #AF52DE, #FF2D92, #007AFF);
    border-radius: var(--radius-lg);
    z-index: -2;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    animation: iconRotate 3s linear infinite;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotateY(15deg) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.4);
}

.feature-item:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon i {
    font-size: 32px;
    color: white;
    animation: iconFloat 4s ease-in-out infinite;
    transition: all var(--transition-spring);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon i {
    animation-play-state: paused;
    transform: scale(1.1) rotateZ(10deg);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    25% { transform: translateY(-2px) rotateZ(2deg); }
    50% { transform: translateY(-4px) rotateZ(0deg); }
    75% { transform: translateY(-2px) rotateZ(-2deg); }
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 17px;
    letter-spacing: -0.01em;
}

/* Content Sections */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-point i {
    color: var(--primary-color);
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Accommodation Showcase */
.accommodation-showcase {
    position: relative;
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: scale(1.05);
}

.property-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-image::before {
    content: '🏠';
    font-size: 4rem;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.property-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.property-info {
    padding: 24px;
}

.property-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.property-info p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.property-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.property-features span {
    background: var(--background-light);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.stats-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 100px;
}

.stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Ride Showcase */
.ride-showcase {
    position: relative;
}

.ride-interface {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.ride-header {
    margin-bottom: 24px;
}

.ride-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.location-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--background-light);
    border-radius: 12px;
    margin-bottom: 12px;
}

.from-dot {
    color: var(--primary-color);
}

.to-dot {
    color: var(--secondary-color);
}

.ride-options {
    margin-top: 20px;
}

.ride-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ride-option.active {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
}

.ride-option i {
    font-size: 24px;
    color: var(--primary-color);
}

.ride-type {
    display: block;
    font-weight: 600;
}

.ride-price {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ride-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.stat-circle .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-circle .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* About Section */
.about {
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.company-values {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 16px;
}

.value-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-secondary);
    margin: 0;
}

.about-stats {
    display: grid;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

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

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.app-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 28px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 24px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(251, 251, 253, 0.95);
        backdrop-filter: saturate(180%) blur(25px);
        -webkit-backdrop-filter: saturate(180%) blur(25px);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        padding: 40px 20px 40px;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile menu backdrop */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 60px;
        left: 100%;
        width: 100vw;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }
    
    .nav-menu.active::before {
        left: 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 18px 28px;
        margin: 6px 0;
        border-radius: var(--radius-lg);
        font-size: 18px;
        font-weight: 500;
        transition: all var(--transition-spring);
        position: relative;
        overflow: hidden;
        color: var(--text-primary) !important;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu .nav-link::before {
        background: rgba(0, 122, 255, 0.15);
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(0, 122, 255, 0.1);
        transform: translateX(12px) scale(1.02);
        color: var(--primary-color) !important;
        border-color: rgba(0, 122, 255, 0.2);
        box-shadow: 0 8px 25px rgba(0, 122, 255, 0.15);
    }
    
    .nav-menu .nav-link.cta-btn {
        background: var(--gradient-primary);
        color: white;
        margin-top: 20px;
        padding: 16px 32px;
        box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
    }
    
    .nav-menu .nav-link.cta-btn:hover {
        transform: translateX(0) scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 122, 255, 0.4);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-content.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stats-overlay {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
    
    .ride-stats {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #666666;
    }
}
/*
 Additional Page Styles */

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.policy-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Help Center Styles */
.help-search {
    padding: 40px 0;
    background: var(--background-light);
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.faq-categories {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 24px;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--primary-dark);
}

.faq-sections {
    padding: 60px 0;
    background: var(--background-light);
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.contact-support {
    padding: 60px 0;
    text-align: center;
}

.support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.support-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.support-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-methods {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-form-section {
    padding: 60px 0;
    background: var(--background-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.office-info {
    padding: 60px 0;
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.office-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.office-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-detail {
    display: flex;
    gap: 16px;
}

.office-detail i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
}

.office-detail h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.office-detail p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.office-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.office-placeholder {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.office-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.office-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.office-placeholder p {
    opacity: 0.9;
    margin: 0;
}

.quick-help {
    padding: 60px 0;
    background: var(--background-light);
}

.quick-help-content {
    text-align: center;
}

.quick-help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.quick-help-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.quick-link i {
    font-size: 2rem;
    color: var(--primary-color);
}

.quick-link span {
    font-weight: 600;
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.toc-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-sidebar h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 6px 0;
}

.toc-list a:hover {
    color: var(--primary-color);
}

.legal-main {
    max-width: none;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 16px;
    color: var(--text-primary);
}

.legal-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.highlight-box {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    margin: 0 0 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box ul {
    margin: 0;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.use-case {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.use-case h4 {
    margin: 0 0 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.use-case p {
    margin: 0;
    font-size: 0.95rem;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.security-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.security-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.security-item h4 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.security-item p {
    margin: 0;
    font-size: 0.9rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.right-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.right-item h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.85rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-method i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-method h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
}

.disclaimer-box,
.liability-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.disclaimer-box h4,
.liability-box h4 {
    margin: 0 0 12px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer-box p,
.liability-box p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.prohibited-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.prohibited-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.prohibited-item i {
    font-size: 24px;
    color: #e74c3c;
    margin-top: 4px;
}

.prohibited-item h4 {
    margin: 0 0 8px;
    color: var(--text-primary);
}

.prohibited-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Safety Page Styles */
.safety-features {
    padding: 60px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.safety-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.safety-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.safety-icon i {
    font-size: 28px;
    color: white;
}

.safety-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.safety-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.safety-guidelines {
    padding: 60px 0;
    background: var(--background-light);
}

.guidelines-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.guidelines-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.guidelines-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.guideline-category {
    margin-bottom: 40px;
}

.guideline-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.guideline-category ul {
    list-style: none;
    padding: 0;
}

.guideline-category li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.guideline-category li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.safety-visual {
    position: sticky;
    top: 100px;
}

.safety-checklist {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.safety-checklist h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.checklist-items {
    margin-bottom: 30px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.checklist-item i {
    color: #10b981;
    font-size: 18px;
}

.emergency-info {
    background: var(--background-light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.emergency-info h4 {
    margin: 0 0 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.emergency-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.community-standards {
    padding: 60px 0;
}

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

.standards-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.standards-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.standard-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-5px);
}

.standard-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.standard-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.standard-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.report-section {
    padding: 60px 0;
    background: var(--background-light);
}

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

.report-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.report-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.report-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.report-option {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.report-option i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.report-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.report-option p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.report-option a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.report-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Careers Page Styles */
.why-join {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.open-positions {
    padding: 60px 0;
    background: var(--background-light);
}

.positions-header {
    text-align: center;
    margin-bottom: 50px;
}

.positions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.positions-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.position-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.position-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.position-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.position-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.position-status {
    text-align: right;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.hiring {
    background: #d4edda;
    color: #155724;
}

.status-badge.planning {
    background: #fff3cd;
    color: #856404;
}

.position-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.skill-tag {
    background: var(--background-light);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.application-process {
    padding: 60px 0;
}

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

.process-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.process-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.company-culture {
    padding: 60px 0;
    background: var(--background-light);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.culture-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.culture-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.value-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.value-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.culture-visual {
    position: sticky;
    top: 100px;
}

.team-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.team-stat {
    text-align: center;
}

.team-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.perks-list h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.perks-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.perks-list i {
    color: #10b981;
    font-size: 14px;
}

.apply-cta {
    padding: 60px 0;
    text-align: center;
}

.apply-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.apply-cta .cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.apply-cta .contact-info {
    margin-top: 30px;
}

.apply-cta .contact-info p {
    color: var(--text-secondary);
    margin: 0;
}

.apply-cta .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Press Page Styles */
.press-overview {
    padding: 60px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.key-facts h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.key-facts ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.key-facts li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.key-facts strong {
    color: var(--text-primary);
    font-weight: 600;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.overview-visual {
    position: sticky;
    top: 100px;
}

.press-kit-preview {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.press-kit-preview h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.press-kit-preview > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.press-kit-items {
    margin-bottom: 24px;
}

.kit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.kit-item i {
    color: var(--primary-color);
    width: 16px;
}

.recent-news {
    padding: 60px 0;
    background: var(--background-light);
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.news-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 24px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    text-align: center;
    min-width: 60px;
}

.news-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

.news-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.news-date .year {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.news-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.media-coverage {
    padding: 60px 0;
}

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

.coverage-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.coverage-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.coverage-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--background-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.coverage-note i {
    color: var(--primary-color);
    font-size: 20px;
}

.coverage-note p {
    margin: 0;
    color: var(--text-secondary);
}

.coverage-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.placeholder-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.placeholder-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.media-contact {
    background: var(--background-light);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}

.media-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.media-contact p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.leadership-team {
    padding: 60px 0;
    background: var(--background-light);
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.team-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.member-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.member-contact a {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-contact a:hover {
    color: var(--primary-dark);
}

.team-note {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-note i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.team-note h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-note p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.team-note a {
    color: white;
    text-decoration: underline;
}

.press-resources {
    padding: 60px 0;
}

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

.resources-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.resources-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.resource-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.resource-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.resource-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-item a:hover {
    color: var(--primary-dark);
}

.media-contact {
    padding: 60px 0;
    background: var(--background-light);
}

.press-guidelines {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
    text-align: left;
}

.press-guidelines h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.press-guidelines ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.press-guidelines li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.press-guidelines li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .toc-sidebar {
        position: static;
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .office-content,
    .guidelines-content,
    .culture-content,
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .safety-visual,
    .culture-visual,
    .overview-visual {
        position: static;
    }
    
    .policy-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .news-date {
        align-self: flex-start;
    }
    
    .position-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .position-status {
        text-align: left;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .contact-grid,
    .categories-grid,
    .safety-grid,
    .benefits-grid,
    .standards-grid,
    .report-options,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options,
    .cta-buttons,
    .report-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .step-content {
        text-align: center;
    }
}/* 
Launch Notice Styles */
.launch-notice {
    margin-top: 30px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.launch-notice i {
    color: rgba(255, 255, 255, 0.8);
}

/* Pre-launch specific styles */
.pre-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pre-launch-badge i {
    font-size: 0.7rem;
}

/* Update existing status badges for pre-launch */
.status-badge.pre-launch {
    background: #e1f5fe;
    color: #0277bd;
}

.status-badge.development {
    background: #fff3e0;
    color: #ef6c00;
}/* Ap
ple-style Icon Animations */
@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.1);
    }
}

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

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes iconGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 122, 255, 0.6);
    }
}

/* Specific icon animations */
.feature-icon:nth-child(1) i {
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-icon:nth-child(2) i {
    animation: iconBounce 2s ease-in-out infinite;
}

.feature-icon:nth-child(3) i {
    animation: iconRotate 4s linear infinite;
}

.feature-icon:nth-child(4) i {
    animation: iconPulse 2.5s ease-in-out infinite;
}

/* Hover animations for different icons */
.feature-item:hover .feature-icon i {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Apple-style loading animation */
@keyframes appleSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 122, 255, 0.2);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: appleSpinner 1s linear infinite;
}

/* Apple-style progress bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}

/* Apple-style notification */
.notification {
    background: rgba(251, 251, 253, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: notificationSlide 0.3s ease-out;
}

@keyframes notificationSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Apple-style card hover effects */
.card-hover-effect {
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.card-hover-effect:hover::before {
    left: 100%;
}

/* Apple-style focus states */
.apple-focus:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Apple-style selection highlight */
.selectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectable:hover {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Apple-style glass morphism */
.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Apple-style gradient text */
.gradient-text-apple {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Apple-style button press animation */
.btn-press {
    transition: all 0.1s ease;
}

.btn-press:active {
    transform: scale(0.98);
}

/* Apple-style parallax scroll */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Apple-style smooth reveal animation */
@keyframes smoothReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-animation {
    animation: smoothReveal 0.8s ease-out forwards;
}

/* Apple-style typing animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.typing-animation {
    overflow: hidden;
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Apple-style floating action button */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
    transition: all var(--transition-smooth);
    z-index: 1000;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 122, 255, 0.5);
}

.fab i {
    color: white;
    font-size: 24px;
}

/* Apple-style tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.tooltip::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Apple-style modal backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Apple-style modal */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--background);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    animation: modalSlide 0.3s ease-out;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}/
* Apple-style ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Apple-style section headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Apple-style stats */
.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 60px;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Apple-style accommodation showcase */
.accommodation-showcase {
    position: relative;
    perspective: 1000px;
}

.property-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transform-style: preserve-3d;
}

.property-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
    box-shadow: var(--shadow-2xl);
}

.property-image {
    height: 220px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.property-image::before {
    content: '🏠';
    font-size: 4rem;
    animation: propertyFloat 3s ease-in-out infinite;
}

@keyframes propertyFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.property-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
}

.property-info {
    padding: 24px;
}

.property-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.property-info p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.property-features span {
    background: var(--background-light);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
}

.property-features span:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Apple-style ride showcase */
.ride-showcase {
    position: relative;
    perspective: 1000px;
}

.ride-interface {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-smooth);
}

.ride-interface:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.ride-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-input {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--background-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
}

.location-input:hover {
    background: rgba(0, 122, 255, 0.02);
    border-color: rgba(0, 122, 255, 0.2);
}

.from-dot {
    color: var(--primary-color);
    font-size: 12px;
}

.to-dot {
    color: var(--secondary-color);
    font-size: 14px;
}

.ride-options {
    margin-top: 20px;
}

.ride-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
    background: var(--background);
}

.ride-option.active {
    border-color: var(--primary-color);
    background: rgba(0, 122, 255, 0.02);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.ride-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.ride-option i {
    font-size: 24px;
    color: var(--primary-color);
}

.ride-type {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.ride-price {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2px;
}

.ride-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.stat-circle .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-circle .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Apple-style launch notice */
.launch-notice {
    margin-top: 32px;
    padding: 20px 28px;
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.launch-notice p {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
}

.launch-notice i {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Apple-style responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat::after {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .ride-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}