/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #FF6B35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.highlight {
    color: #FFE135;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
}

.location-inputs {
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.pickup-icon {
    color: #4CAF50;
}

.drop-icon {
    color: #FF6B35;
}

.location-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.location-input:focus {
    outline: none;
    border-color: #FF6B35;
}

.book-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #FF6B35;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    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;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse .feature-content {
    direction: ltr;
}

.feature-content {
    padding: 2rem 0;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Safety Section */
.safety {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.safety-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.safety-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.safety-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.safety-link:hover {
    gap: 15px;
}

.safety-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Download App Section */
.download-app {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.download-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-btn:hover {
    transform: scale(1.05);
}

.app-store-img {
    height: 60px;
    width: auto;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #999;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        gap: 2rem;
    }
    
    .safety-content {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .booking-section {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-card.reverse {
        direction: ltr;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .safety-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .safety-title {
        font-size: 1.8rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .booking-section {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-card,
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Additional Styles for Legacy Pages
   =================================== */

/* Page Header (used in About, Contact, etc.) */
.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    color: white;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.page-header-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-header-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-info h2 span {
    color: #FFE135;
}

.page-header-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-img {
    position: relative;
    display: flex;
    gap: 1rem;
}

.about-img img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.section-heading h4 {
    color: #FF6B35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-heading h4 span {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #FF6B35;
    margin-right: 10px;
    vertical-align: middle;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-heading p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-info {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-info li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.owner-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF6B35;
}

.owner h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.signature {
    max-width: 120px;
}

/* Booking Form Styles */
.taxi-booking {
    padding: 80px 0;
}

.taxi-booking-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B35;
    font-size: 1.2rem;
}

.form-field .form-control,
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-field .form-control:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-field textarea {
    padding-top: 15px;
    resize: vertical;
    min-height: 120px;
}

.form-field .niceSelect {
    padding-left: 50px;
}

.default-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.default-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-details-wrap {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
}

.contact-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-title h2 span {
    color: #FF6B35;
}

.contact-title p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.05rem;
}

.contact-details li i {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-group {
    display: grid;
    gap: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
}

.testi-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: #FF6B35;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

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

/* Feature Wrap (Why Choose Us) */
.feature-wrap {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 3rem;
    border-radius: 15px;
    color: white;
}

.ridek-features {
    list-style: none;
    padding: 0;
}

.ridek-features li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.ridek-features .feature-icon {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ridek-features .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.ridek-features .feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.ridek-features .feature-content p {
    color: #ccc;
    line-height: 1.6;
}

.white {
    color: white !important;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-car img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pricing-head {
    padding: 1.5rem;
    text-align: center;
}

.pricing-head h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-head h3 a:hover {
    color: #FF6B35;
}

.pricing-list {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.pricing-list li {
    padding: 0.8rem 0;
    border-top: 1px solid #f0f0f0;
    color: #666;
}

.pricing-list li span {
    color: #FF6B35;
    font-weight: 600;
}

/* Map Wrapper */
.map-wrapper {
    margin-top: 70px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 0;
}

/* Utility Classes */
.bg-grey {
    background: #f8f9fa !important;
}

.bd-bottom {
    border-bottom: 1px solid #e0e0e0;
}

.padding {
    padding: 80px 0;
}

.sm-padding {
    padding: 40px 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.pos-relative {
    position: relative;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Row and Column Helpers */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6, .col-lg-6, .col-lg-8, .col-lg-10 {
    padding: 0 15px;
}

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

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

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.offset-lg-1 {
    margin-left: 8.333333%;
}

.align-items-center {
    align-items: center;
}

@media (max-width: 768px) {
    .col-md-6, .col-lg-6, .col-lg-8, .col-lg-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .offset-lg-1 {
        margin-left: 0;
    }
    
    .page-header-info h2 {
        font-size: 2rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .contact-title h2 {
        font-size: 2rem;
    }
}

/* Hide old popup elements that are not needed in new design */
#popup-search-box,
#searchbox-overlay,
#popup-sidebox,
#sidebox-overlay,
.popup-sidebox {
    display: none !important;
}

/* About Page Specific Fixes */
.about-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-section .col-md-6 {
    max-width: 100%;
    flex: none;
}

.about-img {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-img1, .about-img2 {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.round-text {
    display: none; /* Hide the round experience text for cleaner look */
}

/* Testimonial Section Improvements */
.testimonial-section {
    background: #f8f9fa !important;
}

.testimonial-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-section .col-lg-6 {
    max-width: 100%;
    flex: none;
}

.swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.swiper-slide {
    width: 100% !important;
}

.testi-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testi-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Feature Wrap - Why Choose Us Section */
.feature-wrap {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%) !important;
    padding: 3rem;
    border-radius: 15px;
    color: white;
}

.feature-wrap .section-heading h4,
.feature-wrap .section-heading h2,
.feature-wrap .section-heading p {
    color: white !important;
}

.ridek-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.ridek-features li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.ridek-features .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ridek-features .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.ridek-features .feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.ridek-features .feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive fixes for About page */
@media (max-width: 768px) {
    .about-section .row,
    .testimonial-section .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-img {
        grid-template-columns: 1fr;
    }
}

/* Testimonial Section - Better Layout */
.testimonial-carousel {
    position: relative;
}

.swiper-wrapper {
    display: block !important;
}

.swiper-slide {
    width: 100% !important;
    margin-bottom: 1.5rem;
}

.swiper-slide:last-child {
    margin-bottom: 0;
}

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

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

.quote-icon {
    color: #FF6B35;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testi-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.author-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF6B35;
}

.author-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.author-info span {
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 500;
}

.swiper-pagination {
    margin-top: 2rem;
    position: relative;
    bottom: 0;
}

/* Hide swiper pagination dots if not needed */
.swiper-outside {
    position: relative;
}

/* Make testimonials look good even without carousel */
.testimonial-section .section-heading {
    margin-bottom: 2rem;
}

.testimonial-section .section-heading h4 {
    color: #FF6B35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-section .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-section .section-heading p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonial-section .section-heading h2 {
        font-size: 2rem;
    }
    
    .testi-item {
        padding: 1.5rem;
    }
}

/* Hide logo images in Why Choose Us section */
.ridek-features .feature-icon img {
    display: none !important;
}

/* Redesign feature icons to use Font Awesome icons */
.ridek-features .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.ridek-features .feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ridek-features .feature-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

/* Add specific icons for each feature */
.ridek-features li:nth-child(1) .feature-icon::after {
    content: '\f3ed'; /* shield icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.ridek-features li:nth-child(2) .feature-icon::after {
    content: '\f1b9'; /* taxi icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.ridek-features li:nth-child(3) .feature-icon::after {
    content: '\f0e7'; /* bolt/quick icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

/* Make feature cards more attractive */
.ridek-features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ridek-features li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.ridek-features .feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
}

.ridek-features .feature-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1rem;
}

/* Improve the overall Why Choose Us section */
.feature-wrap {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%) !important;
    padding: 3.5rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.feature-wrap .section-heading {
    margin-bottom: 2.5rem;
}

.feature-wrap .section-heading h4 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-wrap .section-heading h2 {
    color: white !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-wrap .section-heading p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .feature-wrap {
        padding: 2rem;
    }
    
    .feature-wrap .section-heading h2 {
        font-size: 2rem;
    }
    
    .ridek-features li {
        padding: 1rem;
    }
}

/* FORCE HIDE all images in Why Choose Us section */
.feature-wrap img,
.ridek-features img,
.feature-icon img {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Ensure icons show properly */
.ridek-features .feature-icon i {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Make sure the icon container is visible */
.ridek-features .feature-icon {
    display: flex !important;
    visibility: visible !important;
}

/* Rapido-Inspired Clean Design Improvements */

/* Cleaner Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFB347 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-title .highlight {
    color: #FF6B35;
    text-shadow: none;
}

/* Cleaner Booking Form */
.booking-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-input, 
.booking-section select {
    padding: 16px 16px 16px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.location-input:focus,
.booking-section select:focus {
    background: white;
    border-color: #FFD93D;
    box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.1);
}

.book-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

/* Simpler Service Cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: #FFD93D;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFB347 100%);
    margin: 0 auto 1.5rem;
}

.service-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Cleaner Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
}

.section-title::after {
    width: 60px;
    height: 5px;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
}

/* Simplified Features */
.feature-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
}

.feature-btn {
    background: #1a1a1a;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-btn:hover {
    background: #333;
}

/* Cleaner Footer */
.footer {
    background: #1a1a1a;
    padding: 70px 0 30px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD93D;
}

/* Remove unnecessary decorations */
.hero::before {
    display: none;
}

/* Cleaner spacing */
.services,
.features,
.safety,
.download-app {
    padding: 100px 0;
}

/* More prominent CTAs */
.app-btn:hover {
    transform: scale(1.08);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .booking-section {
        padding: 2rem;
    }
}

/* Clean, minimal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Our Services Page Styling */
.service-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-section .col-lg-4 {
    padding: 0;
    max-width: 100%;
}

.service-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-thumb {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-item:hover .service-thumb img {
    transform: scale(1.1);
}

.service-shape-wrap,
.service-shape {
    display: none; /* Hide old decorative elements */
}

.service-car {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 120px;
    height: 80px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-car img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content {
    padding: 2.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-content h3 a:hover {
    color: #FF6B35;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
}

.read-more::after {
    content: '→';
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-section .row {
        grid-template-columns: 1fr;
    }
    
    .service-thumb {
        height: 200px;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
    }
}

/* Service Detail Page Styling */
.service-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-details .row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 0;
}

.service-details .col-lg-8,
.service-details .col-lg-4 {
    padding: 0;
    max-width: 100%;
}

.service-details-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-details-info img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-details-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-details-info p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.service-details-info ul,
.service-details-info ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-details-info li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Sidebar Styling */
.service-sidebar {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.service-sidebar .widget-title {
    margin-bottom: 1.5rem;
}

.service-sidebar .widget-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 1rem;
    border-bottom: 3px solid #FF6B35;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.service-sidebar ul li:last-child {
    border-bottom: none;
}

.service-sidebar ul li:hover {
    padding-left: 10px;
    background: #f8f9fa;
}

.service-sidebar ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.service-sidebar ul li:hover a {
    color: #FF6B35;
}

.service-sidebar ul li i {
    color: #FF6B35;
    font-size: 1.2rem;
}

/* Sidebar Banner */
.sidebar-widget.banner {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    color: white;
    text-align: center;
}

.banner-info .logo {
    max-width: 120px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.banner-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.banner-info h3 span {
    color: #FFE135;
}

.banner-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.banner-info .discount {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.banner-info .discount span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
}

.banner-info .default-btn {
    background: white;
    color: #FF6B35;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.banner-info .default-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .service-details .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-details-info {
        padding: 2rem;
    }
    
    .service-sidebar {
        padding: 2rem;
    }
}

/* Improved Logo Styling */

/* Header Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B35;
    letter-spacing: -0.5px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

/* Alternative: Hide logo image and show only text */
.hide-logo-image .logo {
    display: none;
}

.hide-logo-image .logo-text {
    font-size: 1.8rem;
}

/* Make logo images fit better */
.logo {
    max-width: 100%;
    height: auto;
}

/* Larger Logo Sizes for Better Visibility */

/* Header Logo - Larger */
.nav-logo .logo {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
}

.nav-logo .logo-text {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
}

/* Footer Logo - Larger */
.footer-logo .logo {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
}

/* Adjust header padding for larger logo */
.navbar {
    padding: 1rem 0 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav-logo .logo,
    .footer-logo .logo {
        width: 60px !important;
        height: 60px !important;
    }
    
    .nav-logo .logo-text,
    .footer-logo .logo-text {
        font-size: 1.4rem !important;
    }
}

/* Hero Section with Background Image */
.hero {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.95) 0%, rgba(255, 179, 71, 0.95) 100%), 
                url('/assets/new-template/images/hero-bg.jpg') center/cover no-repeat !important;
    position: relative;
}

/* Alternative: Use solid overlay if image doesn't load */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1) 0%, rgba(255, 179, 71, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

/* Fix WhatsApp Floating Button */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366 !important;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px !important;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.float .my-float {
    margin: 0 !important;
    font-size: 35px !important;
    color: white !important;
    line-height: 1;
}

/* Fix Call Now Button */
.phone-call {
    width: 60px !important;
    height: 60px !important;
    left: 20px;
    bottom: 20px;
    background: #10b418 !important;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phone-call:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(16, 180, 24, 0.4);
}

.phone-call img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
}

/* Ensure Font Awesome icons load properly */
.fa-whatsapp::before {
    content: "\f232" !important;
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}
