/* Modern Taxi Service Color Scheme - Logo Based */
:root {
    --navy-blue: #1a2f42;
    --navy-light: #2a4153;
    --navy-dark: #0f1e2e;
    --gold-accent: #B8860B;
    --gold-light: #D4AF37;
    --gold-dark: #996515;
    --brown-accent: #8B6914;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --cream: #FFF8DC;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --overlay: rgba(26, 47, 66, 0.85);
    --success: #28a745;

    /* Legacy orange variables mapped to gold for compatibility */
    --orange-accent: #B8860B;
    --orange-light: #D4AF37;
    --orange-dark: #996515;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 47, 66, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(26, 47, 66, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    padding: 0.7rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--orange-accent);
    font-size: 2rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-accent);
    transition: width 0.3s ease;
}

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

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

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 47, 66, 0.75) 0%,
        rgba(184, 134, 11, 0.3) 50%,
        rgba(26, 47, 66, 0.8) 100%);
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease, softGlow 4s ease-in-out infinite;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes softGlow {
    0%, 100% {
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5),
                     0 0 20px rgba(184, 134, 11, 0.3);
    }
    50% {
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5),
                     0 0 30px rgba(184, 134, 11, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.3s backwards;
    max-width: 800px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background: var(--orange-accent);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

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

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.trust-badges-hero {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.9s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges-hero .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badges-hero .badge i {
    color: var(--orange-accent);
    font-size: 1.2rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    transform: translateY(-50%);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--orange-accent);
    border-color: var(--orange-accent);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--orange-accent);
    width: 40px;
    border-radius: 10px;
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-accent), var(--orange-light), var(--orange-accent));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 5rem;
    color: var(--white);
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--orange-accent);
    font-size: 1.3rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 5px solid var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.service-card:hover {
    border-color: var(--orange-accent);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0.65;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Individual service card backgrounds */
.service-card:nth-child(1) {
    background-image: url('../images/Outstation%20Trips.jpg');
}

.service-card:nth-child(2) {
    background-image: url('../images/One-Way%20Trips.jpg');
}

.service-card:nth-child(3) {
    background-image: url('../images/Round%20Trips.jpg');
}

.service-card:nth-child(4) {
    background-image: url('../images/Local%20Sightseeing.png');
}

.service-card:nth-child(5) {
    background-image: url('../images/Airport%20Pickup%20%26%20Drop.png');
}

.service-card:nth-child(6) {
    background-image: url('../images/Temple%20Tours.png');
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--orange-accent), var(--orange-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Routes Section */
.routes {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.route-card {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.route-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(184, 134, 11, 0.9);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.route-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.route-content h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.route-card.featured {
    border-color: var(--gold-accent);
    transform: scale(1);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.15);
}

.popular-tag {
    position: absolute;
    top: 28px;
    right: -12px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--white);
    padding: 10px 50px;
    transform: rotate(45deg);
    transform-origin: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    white-space: nowrap;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.route-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.route-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.route-header i {
    color: var(--orange-accent);
    font-size: 1.5rem;
}

.route-header h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    font-weight: 600;
}

.route-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-item .label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-item .value {
    color: var(--text-dark);
    font-weight: 600;
}

.price {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.price .from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-accent);
}

.route-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--navy-blue);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.route-btn:hover {
    background: var(--orange-accent);
    transform: scale(1.02);
}

/* Calculator Section */
.calculator {
    padding: 100px 0;
    background: var(--white);
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calculator-form .form-group {
    margin-bottom: 0;
}

.calculator-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.calculator-form label i {
    color: var(--orange-accent);
    margin-right: 5px;
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--orange-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Night Drive Checkbox */
.night-drive-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    border: 2px solid var(--gold-accent);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--gold-accent);
}

.checkbox-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-text i {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.calculate-btn {
    width: 100%;
    padding: 16px;
    background: var(--orange-accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.calculate-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Custom Datalist Styling */
input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
}

input[list] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8860B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

datalist {
    position: absolute;
    background: var(--white);
    border: 2px solid var(--gold-accent);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
}

datalist option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--light-gray);
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

datalist option:last-child {
    border-bottom: none;
}

datalist option:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent));
    color: var(--white);
    padding-left: 25px;
}

/* Custom scrollbar for datalist */
datalist::-webkit-scrollbar {
    width: 8px;
}

datalist::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

datalist::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 10px;
}

datalist::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.fare-result {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.result-content i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.result-content h3 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.fare-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-accent);
    margin: 1rem 0;
}

.fare-breakdown {
    margin: 1rem 0;
    text-align: left;
}

.breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.breakdown-list li {
    padding: 10px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.breakdown-list li:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    transform: translateX(3px);
}

.breakdown-list li i {
    color: var(--orange-accent);
    min-width: 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.fare-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.book-now-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--navy-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: var(--orange-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--navy-blue);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.trust-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
}

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

.trust-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.trust-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--orange-accent);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--orange-accent);
}

.testimonial-author h4 {
    color: var(--navy-blue);
    margin-bottom: 5px;
    font-weight: 600;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--orange-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--orange-accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--orange-accent);
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input[type="date"] {
    color: var(--text-dark);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    font-weight: 500;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

.form-group input[type="date"]:focus {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

/* Modern calendar dropdown styling */
.form-group input[type="date"]::-webkit-datetime-edit {
    padding: 0;
}

.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.form-group input[type="date"]::-webkit-datetime-edit-text {
    color: var(--text-dark);
    padding: 0 0.3em;
}

.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--navy-blue);
    font-weight: 600;
    padding: 0 0.2em;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--orange-accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Map Container */
.map-container {
    margin-top: 4rem;
}

.map-container h3 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--orange-accent);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section .tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--orange-accent);
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--orange-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom i {
    color: var(--orange-accent);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 100px;
    background: var(--orange-accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--orange-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 47, 66, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .trust-badges-hero {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        margin: 0 -20px;
        border-radius: 0;
    }

    .about-image img {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-card.featured {
        transform: scale(1);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .route-card {
        margin: 0 -5px;
    }

    .route-card.featured {
        transform: scale(1);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-indicators {
        bottom: 15px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        right: 80px;
        bottom: 20px;
        font-size: 1.2rem;
    }

    .calculator-form {
        padding: 1.5rem;
    }

    .fare-result {
        padding: 1.5rem;
    }

    .fare-amount {
        font-size: 2rem;
    }

    .breakdown-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .breakdown-list li {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .about-image img {
        height: 300px;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--navy-blue);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .form-group label i {
        color: var(--orange-accent);
        margin-right: 5px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth Hover Effects */
a, button, .service-card, .route-card, .testimonial-card, .trust-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Selection Color */
::selection {
    background: var(--orange-accent);
    color: var(--white);
}

::-moz-selection {
    background: var(--orange-accent);
    color: var(--white);
}
