/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    border-bottom: 2px solid #ffff00;
    z-index: 1000;
    padding: 15px 20px;
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.mobile-menu-btn {
    background: none;
    border: 2px solid #ffff00;
    border-radius: 8px;
    color: #ffff00;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    border-top: 2px solid #ffff00;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #ffff00;
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
    padding-left: 10px;
}

/* Download App Top Section */
.download-app-top {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    padding: 40px 0;
    border-bottom: 3px solid #ffff00;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.download-text {
    flex: 1;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.download-subtitle {
    font-size: 1.2rem;
    color: #ffff00;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    margin-bottom: 20px;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #ffff00;
    border-radius: 25px;
    padding: 8px 20px;
    position: relative;
    overflow: hidden;
}

.beta-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.beta-text {
    color: #ffff00;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
}

.beta-version {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.download-buttons-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 auto;
}

.download-btn-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.download-btn-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-btn-top:hover::before {
    left: 100%;
}

.download-btn-top:hover {
    transform: translateY(-3px);
    border-color: #ffff00;
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.2);
}

.download-btn-top i {
    font-size: 1.5rem;
    color: #ffff00;
}

.download-btn-top div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn-top span {
    font-size: 0.8rem;
    color: #b0b0b0;
}

.download-btn-top strong {
    font-size: 1rem;
    font-weight: 600;
}

.download-btn-top.coming-soon {
    background: linear-gradient(145deg, #333333, #1a1a1a);
    border: 2px solid #555555;
    color: #888888;
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
}

.download-btn-top.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer-disabled 3s ease-in-out infinite;
}

@keyframes shimmer-disabled {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.download-btn-top.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: #555555;
}

.download-btn-top.coming-soon i {
    color: #888888;
}

.download-btn-top.coming-soon span {
    color: #666666;
}

.download-btn-top.coming-soon strong {
    color: #888888;
}

.download-now-btn-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(145deg, #ffff00, #ffaa00);
    border: 2px solid #ffff00;
    border-radius: 12px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.download-now-btn-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.download-now-btn-top:hover::before {
    left: 100%;
}

.download-now-btn-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.4);
    background: linear-gradient(145deg, #ffaa00, #ffff00);
}

.download-now-btn-top i {
    font-size: 1.5rem;
    color: #000000;
}

.download-now-btn-top div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-now-btn-top span {
    font-size: 0.8rem;
    color: #333333;
    font-weight: 500;
}

.download-now-btn-top strong {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

/* About Our Product Section */
.about-product {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #ffff00 0px,
        #ffff00 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadMove 3s linear infinite;
}

.about-product-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.about-subtitle {
    font-size: 1.8rem;
    color: #ffff00;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.about-description {
    font-size: 1.3rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.why-riderconnect {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.why-riderconnect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffff00, #ffaa00, #ffff00);
    animation: gradientMove 3s linear infinite;
}

.why-riderconnect h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.why-text {
    font-size: 1.5rem;
    color: #ffff00;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.why-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.key-features {
    margin-bottom: 80px;
}

.key-features h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffff00;
    box-shadow: 0 20px 40px rgba(255, 255, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.feature-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.mission-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffff00, #ffaa00, #ffff00);
    animation: gradientMove 3s linear infinite;
}

.mission-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.mission-text {
    font-size: 1.8rem;
    color: #ffff00;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.mission-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Features Section */
.about-features {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    padding: 100px 0;
    animation: slideInUp 1s ease-out 0.5s both;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-feature {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-feature:hover::before {
    left: 100%;
}

.about-feature:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffff00;
    box-shadow: 0 20px 40px rgba(255, 255, 0, 0.2);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

.about-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.about-feature p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.header-text {
    z-index: 2;
}

.launch-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.rider {
    color: #ffff00;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.8), 0 0 60px rgba(255, 255, 0, 0.4);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 30px rgba(255, 255, 0, 0.8), 0 0 60px rgba(255, 255, 0, 0.4);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 255, 0, 1), 0 0 80px rgba(255, 255, 0, 0.6);
    }
}

.connect {
    color: #ffffff;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 400;
    color: #e0e0e0;
    max-width: 500px;
    line-height: 1.5;
}

.header-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.motorcycle-graphic {
    position: relative;
    width: 100%;
    height: 400px;
}

.riders-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.rider-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.rider-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.rider-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #ffff00 0px,
        #ffff00 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadMove 3s linear infinite;
}

@keyframes roadMove {
    0% { transform: translateX(-40px); }
    100% { transform: translateX(0px); }
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
    animation: slideInUp 1s ease-out 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #ffff00 0px,
        #ffff00 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadMove 3s linear infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 0, 0.3), 0 0 20px rgba(255, 255, 0, 0.2);
    border-color: #ffff00;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-box p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    padding: 100px 0 0;
    position: relative;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    border-top: 3px solid #ffff00;
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffff00, #ffaa00, #ffff00);
    animation: gradientMove 3s linear infinite;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.footer-logo p {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffff00;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffff00;
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: #ffff00;
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffff00;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: #ffff00;
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.2);
}

.social-icon i {
    font-size: 1.2rem;
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.app-badge:hover::before {
    left: 100%;
}

.app-badge:hover {
    transform: translateY(-2px);
    border-color: #ffff00;
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.2);
}

.app-badge i {
    color: #ffff00;
    font-size: 1.1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

.connect-text, .belong-text {
    color: #ffffff;
}

.ride-text {
    color: #ffff00;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.8), 0 0 60px rgba(255, 255, 0, 0.4);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.arrow {
    color: #ffff00;
    font-size: 1.2rem;
    margin-right: 15px;
    font-weight: bold;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.app-screenshots {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
}

.phone-mockup {
    width: 120px;
    height: 200px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.phone-mockup:nth-child(2) {
    transform: rotate(2deg);
    margin-top: -20px;
}

.phone-mockup:nth-child(3) {
    transform: rotate(-2deg);
    margin-top: -10px;
}

.phone-mockup:nth-child(4) {
    transform: rotate(3deg);
    margin-top: -15px;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-interface {
    background: linear-gradient(135deg, #4a90e2, #7bb3f0);
}

.dark-map {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.dashboard {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.community {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
}

.map-marker {
    font-size: 1.5rem;
    color: #00ff88;
}

.route-line {
    position: absolute;
    height: 3px;
    background: #00ff88;
    width: 60px;
    transform: rotate(45deg);
}

.route-lines .route-line {
    position: absolute;
    height: 2px;
    width: 40px;
}

.route-lines .route-line.green {
    background: #00ff88;
    top: 30%;
    left: 20%;
    transform: rotate(30deg);
}

.route-lines .route-line.blue {
    background: #4a90e2;
    top: 50%;
    left: 30%;
    transform: rotate(-20deg);
}

.route-lines .route-line.red {
    background: #ff4757;
    top: 70%;
    left: 25%;
    transform: rotate(60deg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 80%;
}

.stat-item {
    background: rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
}

.community-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
}

.community-item {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .header-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-screenshots {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .app-screenshots {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .phone-mockup {
        width: 100px;
        height: 160px;
    }
}

/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    padding: 80px 0;
    text-align: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #ffff00;
    box-shadow: 0 20px 40px rgba(255, 255, 0, 0.3);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.social-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 100px 0;
    animation: slideInUp 1s ease-out 2s both;
}

.contact-card {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffff00, #ffaa00, #ffff00);
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.contact-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #ffff00;
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-details p {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Download Now Section */
.download-now {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    padding: 100px 0;
    animation: fadeInUp 1s ease-out 2.5s both;
}

.download-now-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-now-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.download-now-info p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.download-now-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-now-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-now-btn:hover::before {
    left: 100%;
}

.download-now-btn:hover {
    transform: translateY(-3px);
    border-color: #ffff00;
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.2);
}

.download-now-btn i {
    font-size: 1.5rem;
    color: #ffff00;
}

.download-now-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-now-btn span {
    font-size: 0.8rem;
    color: #b0b0b0;
}

.download-now-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

.download-now-btn.coming-soon {
    background: linear-gradient(145deg, #333333, #1a1a1a);
    border: 2px solid #555555;
    color: #888888;
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
}

.download-now-btn.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer-disabled 3s ease-in-out infinite;
}

.download-now-btn.coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: #555555;
}

.download-now-btn.coming-soon i {
    color: #888888;
}

.download-now-btn.coming-soon span {
    color: #666666;
}

.download-now-btn.coming-soon strong {
    color: #888888;
}

.download-now-btn-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(145deg, #ffff00, #ffaa00);
    border: 2px solid #ffff00;
    border-radius: 12px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    min-width: 200px;
}

.download-now-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.download-now-btn-primary:hover::before {
    left: 100%;
}

.download-now-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.4);
    background: linear-gradient(145deg, #ffaa00, #ffff00);
}

.download-now-btn-primary i {
    font-size: 1.5rem;
    color: #000000;
}

.download-now-btn-primary div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-now-btn-primary span {
    font-size: 0.8rem;
    color: #333333;
    font-weight: 500;
}

.download-now-btn-primary strong {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.download-now-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffff00, #ffaa00, #ffff00);
    animation: gradientMove 3s linear infinite;
}

.phone-preview {
    width: 200px;
    height: 300px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto 20px;
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.phone-screen-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-interface-preview {
    text-align: center;
    color: #ffffff;
}

.preview-content {
    padding: 20px;
}

.preview-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.preview-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.preview-content p {
    color: #ffff00;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.preview-text {
    color: #ffff00;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Download Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.download-notification {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.download-notification i {
    font-size: 2rem;
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    animation: iconPulse 1s ease-in-out infinite;
}

.download-notification span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.download-notification p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

/* Extra Large Devices (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .main-title {
        font-size: 5rem;
    }
    
    .cta-title {
        font-size: 4rem;
    }
}

/* Large Devices (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 1000px;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Medium Devices (768px - 1023px) */
@media (max-width: 1023px) {
    .mobile-nav {
        display: block;
    }
    
    .download-app-top {
        padding-top: 80px; /* Account for mobile nav */
    }
    
    .download-now-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .download-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .why-riderconnect,
    .mission-section {
        padding: 40px 30px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .header-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-screenshots {
        justify-content: center;
    }
}

/* Small Devices (481px - 767px) */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact-header h2,
    .download-now-info h2 {
        font-size: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-preview {
        width: 150px;
        height: 225px;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
    }
    
    .image-overlay h2 {
        font-size: 2.5rem;
    }
    
    .image-overlay p {
        font-size: 1.2rem;
    }
    
    .image-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    .why-riderconnect h3,
    .mission-section h3 {
        font-size: 2rem;
    }
    
    .why-text {
        font-size: 1.3rem;
    }
    
    .mission-text {
        font-size: 1.5rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 100px;
        height: 160px;
    }
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .footer {
        padding: 60px 0;
    }
    
    .social-media,
    .contact-section,
    .download-now {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 40px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .download-app-top {
        padding: 30px 0;
    }
    
    .download-title {
        font-size: 1.8rem;
    }
    
    .download-subtitle {
        font-size: 0.9rem;
    }
    
    .download-buttons-top {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .download-btn-top {
        min-width: 180px;
        padding: 12px 20px;
    }
    
    .download-now-btn-top {
        min-width: 160px;
        padding: 12px 20px;
    }
    
    .image-section {
        padding: 60px 0;
    }
    
    .image-placeholder {
        height: 400px;
    }
    
    .image-overlay h2 {
        font-size: 2rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }
    
    .about-features {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-feature {
        padding: 30px 20px;
    }
    
    .about-icon {
        font-size: 2.5rem;
    }
    
    .about-feature h3 {
        font-size: 1.3rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 80px;
        height: 130px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
    }
    
    .download-buttons {
        width: 100%;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ultra Small Devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 1.5rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .image-overlay h2 {
        font-size: 1.8rem;
    }
    
    .feature-box {
        padding: 15px 10px;
    }
    
    .contact-card {
        padding: 30px 15px;
    }
    
    .phone-preview {
        width: 100px;
        height: 150px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .feature-box:hover,
    .social-link:hover,
    .download-btn:hover,
    .app-badge:hover,
    .social-icon:hover,
    .contact-item:hover,
    .image-feature:hover {
        transform: none;
        box-shadow: none;
        border-color: #333;
    }
    
    /* Increase touch targets */
    .mobile-menu-btn,
    .social-icon,
    .download-btn,
    .app-badge {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Optimize animations for touch */
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .qr-placeholder,
    .qr-placeholder-small {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .download-app-top {
        padding: 20px 0;
    }
    
    .image-section {
        padding: 40px 0;
    }
    
    .about-features {
        padding: 40px 0;
    }
    
    .features {
        padding: 40px 0;
    }
    
    .social-media,
    .contact-section,
    .download-now {
        padding: 40px 0;
    }
}

@media (max-width: 1024px) {
    .footer-bottom-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}
