/* ===== Global Styles ===== */
:root {
    --primary: #F7931E;
    --primary-dark: #E07F0C;
    --secondary: #333333;
    --light: #F9F9F9;
    --dark: #222222;
    --text: #555555;
    --border: #EEEEEE;
    --yellow: #FFD700;
    --black: #000000;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
}

.btn-view-all {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    font-size: 14px;
    margin-left: 20px;
}

.btn-view-all:hover {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.sticky {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 25px;
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary);
}

.header-cta .btn {
    margin-left: 10px;
}
/* Show CTA on desktop */
.header-cta {
    display: block;
}

/* Hide CTA on mobile (screens ≤ 768px) */
@media (max-width: 768px) {
    .header-cta {
        display: none !important;
    }
}
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary);
}

/* ===== Marquee ===== */
.marquee {
    background: var(--black);
    color: var(--yellow);
    padding: 12px 0;
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 999;
    animation: blink 1.5s infinite;
}

.marquee-content {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    font-weight: 600;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ===== Hero Section ===== */
.hero {
    padding: 180px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/Veda_Cabs_Taxi_Services_Dehradun.png') no-repeat center center/cover;
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-call {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-call:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.booking-form-container {
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.booking-form h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: #999;
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 36px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    margin: 25px 0;
    list-style: none;
}

.about-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 20px;
}

/* ===== Fleet Section ===== */
.fleet {
    padding: 80px 0;
    background: var(--light);
}

.fleet-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fleet-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.fleet-img {
    height: 200px;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-item:hover .fleet-img img {
    transform: scale(1.1);
}

.fleet-info {
    padding: 20px;
    text-align: center;
}

.fleet-info h3 {
    margin-bottom: 5px;
    color: var(--secondary);
}

.fleet-info p {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 14px;
}

.fleet-info .price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.fleet-info .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* ===== Tour Packages Section ===== */
.tour-packages {
    padding: 80px 0;
}

.tour-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tour-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tour-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tour-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-item:hover .tour-img img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 18px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text);
}

.tour-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.tour-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.tour-price span {
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
}

.tour-info .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* ===== Testimonials Section ===== */
/* Testimonial Slider Styles */
.testimonial-slider {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-item {
    padding: 20px;
    text-align: center;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.author-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #777;
}

.rating {
    color: #ffc107;
    font-size: 14px;
}

/* Custom Dots Navigation */
.testimonial-nav {
    text-align: center;
    margin-top: 20px;
}

.testimonial-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button.active {
    background: #333;
    transform: scale(1.2);
}

/* ===== Map Section ===== */
.map-section {
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===== Popular Routes Section ===== */
.popular-routes {
    padding: 80px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.route-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.route-icon {
    width: 70px;
    height: 70px;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.route-icon i {
    font-size: 28px;
    color: var(--primary);
}

.route-card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.route-card p {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text);
}

.route-card .price {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
}
/* ===== Upper Footer ===== */
.upper-footer {
    background: #2a2a2a;
    padding: 60px 0 30px;
    color: #ddd;
}

.footer-menus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-menu-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-menu-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-menu-col ul {
    list-style: none;
}

.footer-menu-col li {
    margin-bottom: 10px;
}

.footer-menu-col a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-menu-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-menus {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-menus {
        grid-template-columns: 1fr;
    }
    
    .footer-menu-col {
        margin-bottom: 30px;
    }
    
    .footer-menu-col:last-child {
        margin-bottom: 0;
    }
}
/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact span {
    opacity: 0.8;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Popup Modal ===== */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-modal.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s ease;
}

.close-popup:hover {
    color: var(--primary);
}

.popup-content h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: center;
    font-size: 24px;
}

.popup-content p {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 160px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 10px 0;
    }
    
    .marquee {
        top: 70px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: all 0.3s ease;
        padding: 30px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0 0 20px 0;
    }
    
    .header-cta {
        margin-left: auto;
        margin-right: 10px;
    }
    
    .hero {
        padding-top: 140px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-view-all {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .booking-form-container {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-bottom .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}
/* Floating Call Button */
.floating-call-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #25D366; /* WhatsApp green or your brand color */
  color: white;
  padding: 12px 15px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
}

.floating-call-button img {
  width: 24px;
  margin-right: 8px;
}

/* Hide text on mobile */
@media (max-width: 768px) {
  .floating-call-button span {
    display: none;
  }
  .floating-call-button {
    padding: 15px;
  }
}
.floating-call-button {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}