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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation Bar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-weight: 700;
    font-size: 1.5rem; /* adjust as needed */
	font-style: italic;
}

.brand-text .zing {
    color: orange;
}

.brand-text .ride {
    color: #28a745;
}

.zing-orange {
    color: #ff7b47;
}

.ride-green {
    color: #22c55e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff7b47;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 123, 71, 0.8), rgba(78, 205, 196, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/><g opacity="0.3"><circle cx="300" cy="200" r="100" fill="%23ff7b47"/><circle cx="900" cy="600" r="150" fill="%234ecdc4"/><circle cx="600" cy="400" r="80" fill="%23fff"/></g></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background-color: #fff;
    color: #ff7b47;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f8f8f8;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #ff7b47;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* For Hosts Section */
.for-hosts {
    background-color: #f8fffe;
}

.for-hosts .section-title {
    color: #4ecdc4;
}

/* For Customers Section */
.for-customers {
    background-color: #fff5f0;
}

.for-customers .section-title {
    color: #ff7b47;
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
}

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

.step-card {
    background: linear-gradient(135deg, #f8fffe 0%, #fff5f0 100%);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7b47 0%, #4ecdc4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    margin: 20px 0;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Follow Us Section */
.follow-us {
    background: linear-gradient(135deg, #4ecdc4 0%, #ff7b47 100%);
    color: white;
    text-align: center;
}

.follow-us .section-title {
    color: white;
}

.follow-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.instagram-button {
    display: inline-block;
    background-color: white;
    color: #4ecdc4;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f8f8f8;
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7b47;
}

.submit-button {
    background: linear-gradient(135deg, #ff7b47 0%, #4ecdc4 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff7b47;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #ff7b47;
    font-weight: 600;
}

/* Host Page Styles */
.host-hero {
    min-height: 50vh;
    padding: 80px 0;
}

/* Book Page Styles */
.book-hero {
    min-height: 50vh;
    padding: 80px 0;
}

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

/* Host Guidelines Section */
.host-guidelines {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.guidelines-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.dos-title {
    color: #22c55e;
}

.donts-title {
    color: #ef4444;
}

.guidelines-list {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.do-item:hover {
    background-color: rgba(34, 197, 94, 0.05);
}

.dont-item:hover {
    background-color: rgba(239, 68, 68, 0.05);
}

.guideline-icon {
    font-size: 1.5rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.do-icon {
    background-color: #22c55e;
}

.dont-icon {
    background-color: #ef4444;
}

.guideline-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, #f8fffe 0%, #fff5f0 100%);
    padding: 80px 0;
    text-align: center;
}

.app-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.qr-codes-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.qr-code-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code-placeholder {
    width: 150px;
    height: 150px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #333 25%, transparent 25%), 
                linear-gradient(-45deg, #333 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #333 75%), 
                linear-gradient(-45deg, transparent 75%, #333 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.8;
    border-radius: 5px;
}

.qr-code-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.download-button {
    background: linear-gradient(135deg, #ff7b47 0%, #4ecdc4 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.qr-caption {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    margin-bottom: 15px;
}

/* Customer Guidelines Section */
.customer-guidelines {
    background-color: #f9f9f9;
    padding: 80px 0;
}

/* FAQ Section */
.quick-faq {
    background-color: #fff;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff7b47;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question h3:before {
    content: "❓";
    margin-right: 10px;
    font-size: 1.1rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: #ff7b47;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Support CTA Section */
.support-cta {
    background: linear-gradient(135deg, #f8fffe 0%, #fff5f0 100%);
    padding: 60px 0;
}

.support-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: #4ecdc4;
    transform: translateY(-3px);
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    font-size: 1rem;
}

.support-icon {
    font-size: 1.2rem;
}

.support-details a {
    color: #ff7b47;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-details a:hover {
    color: #4ecdc4;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qr-codes-section {
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-details {
        gap: 12px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .qr-codes-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .support-card {
        padding: 30px 25px;
    }
    
    .qr-code-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .qr-pattern {
        width: 100px;
        height: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .feature-card,
    .step-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* =======================================
   Privacy Policy Page Styles (ZingRide)
   ======================================= */

.privacy-policy {
    background-color: #fafafa;
    padding: 80px 0;
    color: #333;
}

.privacy-policy .container {
    max-width: 900px;
}

.privacy-policy h2.section-title {
    color: #333;
}

.privacy-policy h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #22c55e; /* ride-green */
    margin-top: 35px;
    margin-bottom: 15px;
}

.privacy-policy p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.privacy-policy ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.privacy-policy ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.privacy-policy strong {
    color: #333;
    font-weight: 600;
}

.privacy-policy a {
    color: #ff7b47; /* zing-orange */
    text-decoration: none;
    font-weight: 500;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.privacy-policy p:last-child {
    margin-bottom: 0;
}

/* Section Divider for Long Policies */
.privacy-policy hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 30px 0;
}

/* Small emphasis boxes (optional for updates or notices) */
.policy-note {
    background-color: #fff;
    border-left: 4px solid #4ecdc4;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #555;
}

/* Responsive Adjustments for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 60px 20px;
    }

    .privacy-policy h3 {
        font-size: 1.3rem;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding: 50px 15px;
    }

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

    .privacy-policy p {
        font-size: 0.9rem;
    }
}