:root {
    --primary-color: #00A651;
    --text-color: #333;
    --bg-color: #f3eeda;
    --white: #ffffff;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navbar Styles */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 40px;
}

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

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

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

/* Responsive Navbar */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle .bar {
  width: 28px;
  height: 3px;
  background: var(--text-color);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px 32px;
    gap: 2rem;
    transition: right 0.3s cubic-bezier(.77,0,.18,1);
    z-index: 1050;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .nav-links {
    width: 100vw;
    max-width: none;
    padding: 80px 16px 16px 16px;
  }
}
body.nav-open {
  overflow: hidden;
}

/* Hero Section Styles */
.hero {
    background: var(--bg-color);
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    /* background: var(--white); */
    /* transform: skewY(-5deg); */
    transform-origin: bottom left;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 2rem 0;
}

.hero-content h1 {
    /* font-size: 3rem; */
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
    font-size: 33px;
    font-weight: 700;
    color: #2e7a34 !important;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    /* color: #666; */
     font-size: 50px;
    font-weight: 700;
    color: #2e7a34 !important;
}

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

.app-buttons img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-buttons img:hover {
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

.taxi-icon {
    position: absolute;
    bottom: 0;
    /* left: 1%; */
    width: 100px;
    opacity: 0.5;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.content-left {
    padding-right: 2rem;
}

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

.content-left .subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.content-left .description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.phone-mockup {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.phone-mockup img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

/* Update Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .content-left {
        padding-right: 0;
        text-align: center;
    }

    .phone-mockup img {
        max-width: 300px;
    }
}
.hero-image img{
    width: 50%;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    background-color: #00A651;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Update Responsive Design for Features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    margin-top: 3rem;
    position: relative;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    position: relative;
}

.testimonial-content.hidden {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-content.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

.testimonial-content.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

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

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

.testimonial-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 120px;
    background-color: #00A651;
    z-index: 1;
}

.accent-shape-right {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 80px;
    height: 160px;
    background-color: #00A651;
    opacity: 0.1;
}

.testimonial-text {
    padding-right: 2rem;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.testimonial-navigation {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: #00A651;
    background-color: #00A651;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #666;
    transition: all 0.3s ease;
}

.nav-btn:hover svg {
    stroke: #fff;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .image-wrapper {
        margin: 0 auto;
    }

    .testimonial-text {
        padding-right: 0;
    }

    .testimonial-navigation {
        justify-content: center;
    }

    .accent-shape {
        display: none;
    }

    .accent-shape-right {
        display: none;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form {
    padding-right: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.1);
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #008c44;
    transform: translateY(-2px);
}

.contact-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding-right: 0;
    }

    .contact-map {
        height: 300px;
    }
}

/* Download CTA Section */
.download-cta {
    position: relative;
    padding: 6rem 0;
    background-image: url('../images/taxi-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.download-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

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

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
}

.download-cta .app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.download-cta .app-buttons img {
    height: 50px;
    transition: transform 0.3s ease;
}

.download-cta .app-buttons a:hover img {
    transform: translateY(-5px);
}

/* Responsive Design for Download CTA */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }

    .download-cta .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-cta .app-buttons img {
        height: 45px;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter:hover {
    background-color: #1da1f2;
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column ul li {
    margin-bottom: 1rem;
}

.link-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column ul li a:hover {
    color: #fff;
}

.contact-info ul li a {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.2);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive Design for WhatsApp Float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
.hero-subtitle{
    font-size: 15px;
    color: #2e7a34 !important;
}
.mt-2{
    margin-top: 1rem;
}
.taxi-icon img{
    width: 100vw;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

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

.step-icon i {
    font-size: 24px;
    color: #fff;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Where We Serve Section */
.where-we-serve {
    padding: 5rem 0;
    background: var(--bg-color);
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-area {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-area h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-area p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Steps and Service Areas */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .service-areas {
        grid-template-columns: 1fr;
    }
}

/* Hero CTA Button */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Responsive Hero Section */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 10px;
  }
  .hero-content {
    text-align: center;
    padding: 1.5rem 0 0 0;
  }
  .hero-image {
    margin: 0 auto;
    text-align: center;
  }
  .hero-image img {
    max-width: 320px;
    width: 90vw;
    margin: 0 auto;
    display: block;
  }
  .taxi-icon {
    position: static;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  .taxi-icon img {
    width: 100vw;
    max-width: 100%;
    height: auto;
  }
  .hero-cta {
    align-items: center;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.5rem !important;
  }
  .hero-content p {
    font-size: 1.1rem !important;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-image img {
    max-width: 220px;
  }
  .taxi-icon img {
    width: 100vw;
    min-width: 180px;
  }
  .hero-cta .app-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}