:root {
    --primary-color: #FFC107;
    --primary-dark: #FFA000;
    --primary-light: #FFECB3;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #1e1e1e;
    --transition: all 0.3s ease;
    --container-padding: 12%; /* Increased padding for more space */
}

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

/* Loading Animation */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 10;
}

/* Header and Navigation - Updated with scroll behavior */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    top: 0;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

header.hidden {
    top: -80px; /* Hide navbar when scrolling down */
}

/* Updated navbar styles with more spacing */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(var(--container-padding) - 15%); /* Reduce side padding slightly */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 30px; /* Increased space to push logo right */
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.4));
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    margin-right: 30px; /* Increased space to push links left */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    margin-right: 20px; /* Add margin from right side of screen */
    padding: 8px; /* Add some padding for a larger tap target */
    transition: all 0.3s ease;
}

/* Hero Section - Updated with more padding */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 0 var(--container-padding);
    padding-top: 140px; 
    padding-bottom: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 0 0 48%;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var (--text-gray);
    max-width: 90%;
    line-height: 1.8;
}

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

.download-btn, .learn-btn {
    padding: 1.3rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.download-btn {
    background-color: var(--primary-color);
    color: black;
    box-shadow: 0 5px 25px rgba(255, 193, 7, 0.4);
    animation: pulse 2s infinite;
}

.download-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
}

.learn-btn {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 2px solid var(--text-gray);
    backdrop-filter: blur(5px);
}

.learn-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    background-color: rgba(255, 193, 7, 0.05);
}

.hero-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    border-radius: 25px;
    animation: float 6s ease-in-out infinite;
}

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

.wave-divider {
    position: absolute;
    bottom: -1px; /* Ensure no gap */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg); /* Flip the wave */
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(300% + 1.3px); /* Increased width for better coverage */
    height: 180px; /* Increased base height */
    transform: rotateY(180deg); /* Mirror the wave */
    left: -100%; /* Center the wave */
}

.wave-divider .shape-fill {
    fill: var(--bg-darker);
}

/* Download Section - Improved professional design */
.download-section {
    padding: 180px 0 150px;
    position: relative;
    background: radial-gradient(circle at 20% 20%, #1a1a1a 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.download-header {
    text-align: center;
    margin-bottom: 100px;
    padding: 0 var(--container-padding);
}

.download-header h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.download-header p {
    font-size: 1.4rem;
    color: var (--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 8%;
    margin-bottom: 20px;
    padding: 0 var(--container-padding);
}

/* Phone mockup styling */
.phone-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 300px; /* Default margin for desktop */
    z-index: 10;
    transition: transform 0.3s ease;
    border-radius: 30px;
    animation: float 6s ease-in-out infinite;
}

/* Remove margin for tablet and mobile */
@media screen and (max-width: 992px) {
    .phone-mockup {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .phone-mockup {
        max-width: 250px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .phone-mockup {
        max-width: 200px;
        margin-bottom: 20px;
    }
}

.phone-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0) 50%
    );
    border-radius: 35px;
    pointer-events: none;
}

.download-info {
    flex: 0 0 52%;
}

.app-features {
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    padding: 5px 0;
}

.feature-item:hover {
    transform: translateX(15px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover .feature-icon {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    color: var(--primary-light);
}

.feature-text h3 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.3px;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.download-platforms h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Improved store-buttons styling with better clickability */
.store-buttons {
    display: flex;
    flex-direction: row !important; /* Force row layout on all screens */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
    z-index: 5; /* Increase z-index to ensure clickability */
}

/* Make individual buttons more clickable */
.store-button {
    display: inline-block;
    position: relative;
    z-index: 10; /* Higher z-index */
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Ensure images don't interfere with clicks */
.store-button img {
    height: 60px;
    width: auto;
    pointer-events: none; /* This is crucial - prevents image from capturing clicks */
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    display: block;
}

.store-button:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.1);
}

.store-button:active {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Store button active state */
.store-button.active {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .store-buttons {
        gap: 15px;
    }
    
    .store-button {
        padding: 12px; /* Larger tap area */
        min-width: 80px; /* Ensure minimum width */
    }
    
    .store-button img {
        height: 55px; /* Keep images reasonably sized */
    }

    .download-content {
        flex-direction: column;
        align-items: center;
    }
    
    .download-info {
        order: 2; /* Put info below mockup on mobile */
        width: 100%;
    }
    
    .phone-mockup {
        order: 1; /* Put mockup first on mobile */
        margin-bottom: 40px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 15px 25px;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Remove hover effects on mobile */
    .nav-links a::after {
        display: none;
    }

    .nav-links a:active {
        background-color: rgba(255, 193, 7, 0.1);
        color: var(--primary-color);
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .menu-toggle i {
        font-size: 1.2rem;
        color: var(--text-light);
        transition: all 0.3s ease;
    }

    .menu-toggle.active {
        background: var(--primary-color);
    }

    .menu-toggle.active i {
        color: var(--bg-darker);
        transform: rotate(90deg);
    }

    /* Logo adjustments for mobile */
    .logo-container {
        margin-left: 15px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .app-logo {
        height: 32px;
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        cursor: pointer;
        margin-right: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle i {
        color: var(--text-light);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .menu-toggle.active {
        background: var(--primary-color);
    }

    .menu-toggle.active i {
        color: var(--bg-darker);
        transform: rotate(90deg);
    }

    /* Mobile Navigation Links */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        gap: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        padding: 16px 30px;
        text-align: center;
        font-size: 1.1rem;
        color: var(--text-light);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:active {
        background: rgba(255, 193, 7, 0.1);
        color: var(--primary-color);
    }

    /* Remove hover effects on mobile */
    .nav-links a::after {
        display: none;
    }

    /* Header adjustments */
    header {
        height: 70px;
        padding: 0 15px;
    }

    .logo-container {
        margin-left: 15px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .app-logo {
        height: 32px;
    }
}

@media screen and (max-width: 480px) {
    .store-button {
        padding: 15px; /* Even larger tap area on small screens */
    }
    
    .store-button img {
        height: 50px;
    }

    .nav-links a {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .app-logo {
        height: 28px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .nav-links a {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .app-logo {
        height: 28px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    header {
        height: 65px;
        padding: 0 12px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.qr-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 24px;
    padding: 10px;
    margin-top: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.qr-code {
    width: 120px;
    height: 120px;
    background-color: rgb(73, 68, 68);
    border-radius: 16px;
    padding: 2px;
    margin-right: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.qr-text p {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.qr-text span {
    font-size: 1rem;
    color: var(--text-gray);
}

.app-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    text-align: center;
    padding: 0 var(--container-padding);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.stat-item.animate h3 {
    animation: countUp 2s ease-out forwards;
}

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

/* Contact Section - Improved styling */
.contact-section {
    padding: 150px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 var(--container-padding);
}

.section-header h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contact-info {
    flex: 0 0 35%;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 24px;
    padding: 50px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.contact-item i {
    width: 60px;
    height: 60px;
    background-color: rgba(18, 18, 18, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item p {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(18, 18, 18, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: black;
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(255, 193, 7, 0.3);
}

.contact-form {
    flex: 0 0 60%;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(30, 30, 30, 0.8);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
    background-color: rgba(37, 37, 37, 0.8);
    border-color: transparent;
}

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

.form-group textarea {
    height: 180px;
    resize: none;
}

.submit-btn {
    background-color: var(--primary-color);
    color: black;
    border: none;
    padding: 16px 35px;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 193, 7, 0.4);
}

/* Decorative Elements */
.glowing-dots .dot {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 6s infinite;
}

.dot-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.dot-2 {
    width: 350px;
    height: 350px;
    top: 60%;
    left: -5%;
    animation-delay: 1s;
}

.dot-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 8%;
    animation-delay: 2s;
}

.dot-4 {
    width: 300px;
    height: 300px;
    top: 70%;
    right: 3%;
    animation-delay: 3s;
}

.dot-5 {
    width: 220px;
    height: 220px;
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

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

/* Footer Styles */
footer {
    background-color: var(--bg-darker);
    padding: 50px var(--container-padding) 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-left {
    flex: 1 1 60%;
    min-width: 280px;
}

.footer-right {
    flex: 1 1 30%;
    min-width: 280px;
}

.footer-logo .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .app-logo {
    height: 40px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-description {
    margin-top: 25px;
}

.vehicle-types {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.vehicle-types li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.vehicle-types li i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

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

.footer-contact, .footer-download {
    margin-bottom: 30px;
}

.footer-contact h3, .footer-download h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact p i {
    color: var(--primary-color);
    width: 20px;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
    min-width: 150px;
}

.app-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Updated Features section with more padding */
.features {
    padding: 120px var(--container-padding); /* Add horizontal padding */
    background-color: var(--bg-dark);
    text-align: center;
}

.features h2 {
    margin-bottom: 60px;
    font-size: 3rem;
    color: var(--primary-color);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Updated Testimonials section with more padding */
.testimonials {
    padding: 120px var(--container-padding); /* Add horizontal padding */
    background-color: var(--bg-dark);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 60px;
    font-size: 3rem;
    color: var(--primary-color);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Testimonial Card Styling with Round Avatar */
.testimonial-card {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Round User Avatar Styling */
.user-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%; /* This creates the round shape */
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area properly */
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '\201C'; /* Opening quote mark */
    font-size: 60px;
    color: rgba(255, 193, 7, 0.2);
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.user-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.user-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.user-rating {
    margin-top: 10px;
    color: var(--primary-color);
}

/* Update the About section styling */
.about {
    padding: 120px var(--container-padding);
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.about-text {
    flex: 0 0 45%;
    padding-right: 30px; /* Add right padding to create space */
}

.about-text h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 45%;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stats .stat-item {
    flex: 1;
}

.stats .stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.stats .stat-item p {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
    :root {
        --container-padding: 7%;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .download-header h1 {
        font-size: 3.2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .app-stats {
        gap: 60px;
    }

    .hero-image img {
        max-width: 400px;
    }
    
    .about-image img {
        max-width: 400px;
    }

    .wave-divider svg {
        width: calc(200% + 1.3px);
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --container-padding: 8%; /* Still keep decent spacing on tablets */
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 50px;
    }
    
    .hero-text p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
        max-width: 70%;
        margin: 0 auto;
    }
    
    .download-content {
        flex-direction: column;
        gap: 70px;
    }
    
    .phone-mockup, .download-info {
        flex: 0 0 100%;
    }
    
    .phone-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        flex: 0 0 100%;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .footer-logo, .footer-links {
        flex: 0 0 100%;
    }
    
    .footer-logo {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-logo p {
        margin: 0 auto;
    }
    
    .footer-logo .logo-container {
        justify-content: center;
    }
    
    .logo-container {
        margin-left: 10px;
    }
    
    .nav-links {
        margin-right: 10px;
        gap: 2rem;
    }
    
    .about-text, .about-image {
        flex: 0 0 100%;
        padding-right: 0; /* Remove right padding on smaller screens */
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .logo-container {
        margin-left: 20px; /* Reduce left margin on medium screens */
    }
    
    .nav-links {
        margin-right: 20px; /* Reduce right margin on medium screens */
    }

    .hero-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-image img {
        max-width: 350px;
    }

    .wave-divider svg {
        width: calc(180% + 1.3px);
        height: 130px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --container-padding: 6%; /* Adjust for mobile */
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        margin-right: 20px; /* Maintain right margin on mobile */
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .download-btn, .learn-btn {
        padding: 1.1rem 2.2rem;
        font-size: 1rem;
    }
    
    .download-header h1 {
        font-size: 2.6rem;
    }
    
    .download-header p {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .feature-item:hover {
        transform: translateY(-10px);
    }
    
    .store-buttons {
        flex-direction: row !important;
        gap: 15px;
    }
    
    .store-button {
        margin-bottom: 0;
        padding: 5px;
    }
    
    .store-button img {
        height: 55px; /* Still larger than before (was 45px) */
    }
    
    .qr-section {
        flex-direction: column;
        text-align: center;
    }
    
    .qr-code {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .app-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column a:hover {
        transform: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .logo-container {
        margin-left: 0;
    }
    
    .nav-links {
        margin-right: 0;
    }
    
    .logo-container {
        margin-left: 10px; /* Further reduce margins on mobile */
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Add responsive adjustments for smaller screens */
    .copyright {
        flex-direction: column;
        gap: 10px;
    }
    
    .powered-by {
        text-align: center;
    }

    .app-logo {
        height: 32px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 20px;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 0;
        z-index: 999;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        gap: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    /* Toggle button animation */
    .menu-toggle {
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active {
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    .wave-divider svg {
        width: calc(160% + 1.3px);
        height: 120px;
    }
}

@media screen and (max-width: 480px) {
    .store-buttons {
        flex-wrap: wrap;
        gap: 20px; /* Increased gap for better spacing on small screens */
    }
    
    .store-button img {
        height: 50px; /* Larger than before (was 40px) */
    }
    
    /* Optional: Add these if you want to really emphasize the buttons */
    .store-button {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 10px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .store-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        margin-right: 15px; /* Slightly smaller margin on very small screens */
        font-size: 1.4rem; /* Slightly smaller icon */
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .download-btn, .learn-btn {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .download-header h1 {
        font-size: 2rem;
    }
    
    .download-header p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-text h3 {
        font-size: 1.2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }

    .hero-image {
        max-width: 250px;
    }
    
    .phone-mockup {
        max-width: 200px;
        margin-bottom: 50px;
    }
    
    .about-image img {
        max-width: 250px;
    }
    
    .user-avatar {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .app-logo {
        height: 28px;
    }

    .wave-divider svg {
        width: calc(200% + 1.3px);
        height: 100px;
    }
}

/* Add this to your existing CSS file */

/* Update the copyright section to display items in a row with space-between */
.copyright {
    text-align: center;
    padding-top: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--container-padding) 0;
}

.powered-by {
    font-size: 0.85rem;
    text-align: right;
}

.powered-by span {
    color: #FFC107; /* Converted to CSS Hex */
    font-weight: 500;
}

/* Add this to your styles.css file */

/* Logo styling */
.app-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Logo in navbar */
.logo-link .app-logo {
    height: 38px;
    margin-right: 8px;
}

/* Logo in footer */
.footer-logo .app-logo {
    height: 35px;
    margin-right: 8px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .app-logo {
        height: 32px;
    }
    
    .footer-logo .app-logo {
        height: 30px;
    }
}

/* Make all images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Define the pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; /* Match header height */
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        padding: 16px 30px;
        text-align: center;
        font-size: 1.1rem;
        color: var(--text-light);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:active {
        background: rgba(255, 193, 7, 0.1);
        color: var(--primary-color);
    }

    /* Remove hover effects on mobile */
    .nav-links a::after {
        display: none;
    }
}

/* Menu Toggle Button Styling */
.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        margin-right: 15px;
        position: relative;
        z-index: 1000;
    }

    .menu-toggle i {
        color: var(--primary-color);
        font-size: 24px; /* Increased size */
        transition: transform 0.3s ease;
    }

    .menu-toggle.active i {
        transform: rotate(90deg);
        color: var(--primary-color);
    }

    /* Remove existing button styling */
    .menu-toggle {
        background: none;
        border: none;
        box-shadow: none;
    }

    /* Update header padding */
    header {
        padding: 0 15px;
    }

    nav {
        padding: 0 15px;
    }

    /* Ensure proper alignment */
    .logo-container {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .menu-toggle {
        margin-right: 10px;
    }

    .menu-toggle i {
        font-size: 22px; /* Slightly smaller on very small screens */
    }
}

/* Wave Divider Responsive Styles */
@media screen and (max-width: 1400px) {
    .wave-divider svg {
        width: calc(250% + 1.3px);
        height: 135px;
    }
}

@media screen and (max-width: 1200px) {
    .wave-divider svg {
        width: calc(200% + 1.3px);
        height: 125px;
    }
}

@media screen and (max-width: 992px) {
    .wave-divider svg {
        width: calc(180% + 1.3px);
        height: 105px;
    }
}

@media screen and (max-width: 768px) {
    .wave-divider svg {
        width: calc(160% + 1.3px);
        height: 95px;
    }
}

@media screen and (max-width: 480px) {
    .wave-divider svg {
        width: calc(200% + 1.3px);
        height: 75px;
    }
}

/* Features Section Styling */
.features {
    padding: 120px var(--container-padding);
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.features h2 {
    text-align: center;
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 80px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6), rgba(42, 42, 42, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.8), rgba(47, 47, 47, 0.8));
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 280px;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .features h2 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 992px) {
    .features {
        padding: 100px var(--container-padding);
    }

    .features h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 768px) {
    .features {
        padding: 80px var(--container-padding);
    }

    .features h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-card i {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

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

@media screen and (max-width: 480px) {
    .features {
        padding: 60px var(--container-padding);
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* About Section Styling */
.about {
    padding: 120px var(--container-padding);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.about-text {
    flex: 0 0 45%;
}

.about-text h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    margin-bottom: 40px;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.about-features .feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 193, 7, 0.05);
}

.about-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-right: 15px;
    width: 24px;
}

.about-features .feature-item span {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.stats .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 193, 7, 0.05);
}

.stats .stat-item h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.stats .stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .about-text h2 {
        font-size: 2.8rem;
    }

    .stats .stat-item h3 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .about-features .feature-item {
        justify-content: center;
    }

    .stats {
        max-width: 500px;
        margin: 50px auto 0;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 80px var(--container-padding);
    }

    .about-text h2 {
        font-size: 2.4rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-features .feature-item {
        padding: 12px 15px;
    }

    .about-features .feature-item span {
        font-size: 0.95rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats .stat-item {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .about {
        padding: 60px var(--container-padding);
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-features .feature-item {
        padding: 10px;
    }

    .about-features .feature-item i {
        font-size: 1.2rem;
    }

    .stats .stat-item h3 {
        font-size: 2.2rem;
    }
}

/* QR Section Styling */
.qr-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(42, 42, 42, 0.8));
    border-radius: 24px;
    padding: 25px;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.9), rgba(47, 47, 47, 0.9));
}

.qr-code {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 16px;
    padding: 8px;
    margin-right: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.qr-text {
    flex: 1;
}

.qr-text p {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.2rem;
    letter-spacing: -0.3px;
}

.qr-text span {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: block;
    line-height: 1.5;
}

/* QR Section Responsive Styles */
@media screen and (max-width: 992px) {
    .qr-section {
        max-width: 500px;
        margin: 35px auto 0;
    }
}

@media screen and (max-width: 768px) {
    .qr-section {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        max-width: 320px;
    }

    .qr-code {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }

    .qr-text p {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .qr-text span {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .qr-section {
        padding: 18px;
        margin-top: 30px;
        max-width: 280px;
    }

    .qr-code {
        width: 140px;
        height: 140px;
        margin-bottom: 15px;
    }

    .qr-text p {
        font-size: 1rem;
    }

    .qr-text span {
        font-size: 0.85rem;
    }
}

/* Smooth transitions for all interactive elements */
.feature-card,
.store-button,
.app-button,
.social-links a,
.nav-links a,
.hero-buttons a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile-friendly animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Add to your styles.css */
.footer-links {
    margin-top: 30px;
}

.footer-links h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

@media screen and (max-width: 768px) {
    .footer-links {
        margin-top: 20px;
        text-align: center;
    }
}

/* Add to your styles.css */
.privacy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-popup.active {
    display: flex;
    opacity: 1;
}

.privacy-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: auto;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.privacy-popup.active .privacy-content {
    transform: scale(1);
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.privacy-body {
    padding: 30px;
    max-height: calc(90vh - 180px);
    overflow-y: auto;
}

.policy-section {
    margin-bottom: 25px;
}

.policy-section h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.policy-section p, .policy-section li {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
}

.policy-section li {
    position: relative;
    padding-left: 20px;
}

.policy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.privacy-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(26, 26, 26, 0.95);
    position: sticky;
    bottom: 0;
}

.privacy-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.full-policy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--primary-color);
    color: black;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
}

.full-policy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .privacy-footer {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        gap: 12px;
    }

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

    .full-policy-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
    }
}

@media screen and (max-width: 480px) {
    .privacy-footer {
        padding: 12px 15px;
    }

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

    .full-policy-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
}

.privacy-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.full-policy-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: black;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.full-policy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

@media screen and (max-width: 768px) {
    .privacy-content {
        width: 95%;
        max-height: 85vh;
    }

    .privacy-header {
        padding: 15px 20px;
    }

    .privacy-header h2 {
        font-size: 1.5rem;
    }

    .privacy-body {
        padding: 20px;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
}

/* Add to your styles.css */
#site-header {
    /* ...existing header styles... */
    z-index: 100; /* Lower z-index than popup */
}

.privacy-popup {
    /* ...existing popup styles... */
    z-index: 1000; /* Higher z-index than header */
}

.privacy-content {
    /* ...existing content styles... */
    z-index: 1001; /* Higher than popup overlay */
}

/* Add this to your existing privacy page styles section */

/* Account Deletion Button Styling */
.deletion-options {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.delete-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-bottom: 15px;
}

.delete-account-btn:hover {
    background-color: rgba(220, 53, 69, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.15);
}

.delete-account-btn i {
    font-size: 1.1rem;
}

.deletion-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.deletion-note a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.deletion-note a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .delete-account-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

/* Terms and Conditions Page Styling */
.terms-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding-top: 80px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 0;
    margin-bottom: 40px;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb span {
    color: var(--text-gray);
    margin: 0 10px;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.terms-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-header .effective-date {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.terms-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.terms-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-section li {
    color: var(--text-gray);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.terms-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.contact-info {
    background: linear-gradient(145deg, rgba(255, 193, 7, 0.1), transparent);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    width: 25px;
    margin-right: 10px;
}

.last-updated {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Media queries for Terms page */
@media screen and (max-width: 768px) {
    .terms-header h1 {
        font-size: 2.2rem;
    }

    .terms-section {
        padding: 20px;
    }

    .terms-section h2 {
        font-size: 1.5rem;
    }

    .terms-section p, 
    .terms-section li {
        font-size: 1rem;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .delete-account-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}