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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-red: #e74c3c;
    --primary-red-dark: #c0392b;
    --white: #ffffff;
    --dark-grey: #2c3e50;
    --light-grey: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-red);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: 0.3s;
}

.download-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.footer-download {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-download:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.download-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.primary-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
}

.primary-btn:hover {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.secondary-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-icon {
    width: 24px;
    height: 24px;
}

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

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.app-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}

.back-icon, .settings-icon {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.app-content {
    padding: 1rem;
    background: var(--white);
}

.welcome-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-container {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    height: 120px;
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--white);
}

.location-pin {
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto 0.5rem;
    position: relative;
}

.location-pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    top: 6px;
    left: 6px;
}

.pin-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.action-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.action-icon {
    width: 20px;
    height: 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
}

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

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* App Preview */
.app-preview {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.preview-phone {
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 25px;
    padding: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.preview-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 19px;
    overflow: hidden;
}

.preview-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 600;
}

.preview-map {
    height: 200px;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-line {
    width: 80%;
    height: 3px;
    background: var(--primary-red);
    position: relative;
}

.route-line::before,
.route-line::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    top: -4.5px;
}

.route-line::before {
    left: 0;
}

.route-line::after {
    right: 0;
}

.preview-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: var(--light-grey);
}

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

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

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-grey);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #f39c12);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* App Mockups Section */
.app-mockups {
    padding: 80px 0;
    background: var(--white);
}

.mockups-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mockup-item {
    display: flex;
    justify-content: center;
}

.mockup-phone {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 28px;
    padding: 7px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 21px;
    overflow: hidden;
}

.mockup-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.mockup-content {
    padding: 1rem;
}

.route-info {
    margin-bottom: 1rem;
}

.route-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.route-details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.route-map-preview {
    height: 120px;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    border-radius: 8px;
}

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

.stat-box {
    background: var(--light-grey);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

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

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.nav-instruction {
    background: var(--light-grey);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.instruction-text {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.instruction-distance {
    font-size: 0.9rem;
    color: var(--text-light);
}

.nav-map {
    height: 120px;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 2rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-motorcycle,
.floating-map,
.floating-compass {
    position: absolute;
    opacity: 0.1;
}

.floating-motorcycle {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
}

.floating-map {
    bottom: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
}

.floating-compass {
    top: 60%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
} 
.hero img{
    width: 350px;
}
.how-it-works img{
    width: 350px;
    border-radius: 20px;
    border: 2px solid #000;  
}
.mockups-container img{
    width: 100px;
       border-radius: 10px;
    border: 2px solid #000;
    margin-left: 10px;
    margin-right: 10px;  
}