/* UMRAH TAXI ONLINE - BLACK AND YELLOW THEME */
/* Professional Black and Yellow Color Scheme */

:root {
    /* Primary Colors - Black and Yellow Theme */
    --primary-black: #1A1A1A;
    --secondary-black: #2D2D2D;
    --accent-yellow: #FFC107;
    --light-yellow: #FFF3CD;
    --hover-yellow: #FFB300;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E5E5E5;
    --border-gray: #DDDDDD;
    --dark-gray: #666666;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-white: #FFFFFF;
    --text-on-dark: #FFFFFF;
    --text-on-yellow: #1A1A1A;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-light: #F5F5F5;
    --bg-dark: #1A1A1A;
    --bg-dark-secondary: #2D2D2D;
    
    /* Legacy support - Map old variables to new theme */
    --primary-yellow: var(--accent-yellow);
    --primary-green: var(--primary-black);
    --secondary-green: var(--secondary-black);
    --accent-green: var(--accent-yellow);
    --dark-bg: var(--secondary-black);
    --border-color: var(--border-gray);
}

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

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

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

/* Hero Section - New Design */
.hero-section-new {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/hero-bg.jpg') center/cover;
    background-color: var(--dark-bg);
    padding: 80px 0;
    color: var(--white);
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hero-left {
    padding-top: 20px;
}

.rating-badge {
    background: rgba(37, 211, 102, 0.2);
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    width: fit-content;
}

.rating-badge .stars {
    color: var(--accent-green);
    font-size: 16px;
    margin-right: 8px;
}

.rating-badge .rating-text {
    font-size: 15px;
    color: var(--white);
    font-weight: bold;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF !important;
}

.hero-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-features-list {
    margin-bottom: 30px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-check i {
    color: var(--accent-green);
    font-size: 20px;
}

.feature-check span {
    font-size: 15px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366 !important;
    color: #FFFFFF !important;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 20px;
    color: #FFFFFF !important;
}

/* Quote Form */
.quote-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.quote-form h3 {
    text-align: center;
    color: var(--dark-bg);
    font-size: 24px;
    margin-bottom: 25px;
}

.quote-form .form-group {
    margin-bottom: 15px;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 100px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #FFD54F;
}

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

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.book-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    padding: 15px 30px;
    border-radius: 10px;
    text-align: center;
}

.badge-text {
    display: block;
    font-size: 14px;
    color: var(--dark-bg);
}

.badge-title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-bg);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item i {
    color: var(--primary-yellow);
    font-size: 18px;
}

/* Routes Section */
.routes-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.route-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFC107 !important;
    color: #1A1A1A !important;
    padding: 15px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    min-height: 50px;
    line-height: 1.5;
}

.route-btn:hover {
    background: #FFD54F;
    transform: translateY(-2px);
}

.route-btn i {
    font-size: 18px;
}

/* Services Section */
.services-section-new {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card-new {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-icon-new {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon-new i {
    font-size: 36px;
    color: var(--dark-bg);
}

.service-card-new h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

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

/* Vehicles Section */
.vehicles-section-new {
    padding: 80px 0;
    background: var(--white);
}

.vehicles-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vehicle-card-new {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}

.vehicle-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.vehicle-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.vehicle-image-new {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD54F 100%);
    padding: 30px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.vehicle-image-new img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.vehicle-card-new h3 {
    text-align: center;
    font-size: 22px;
    margin: 20px 0;
    color: var(--dark-bg);
}

.vehicle-specs {
    list-style: none;
    padding: 0 20px 20px;
}

.vehicle-specs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.vehicle-specs li:last-child {
    border-bottom: none;
}

.vehicle-specs i {
    color: var(--primary-yellow);
    font-size: 16px;
}

.btn-book-vehicle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366 !important;
    color: #FFFFFF !important;
    padding: 12px 20px;
    margin: 0 20px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 1.5;
}

.btn-book-vehicle:hover {
    background: #20BA5A !important;
    transform: translateY(-2px);
}

.btn-book-vehicle i {
    font-size: 16px;
    color: #FFFFFF !important;
}

/* How to Book Section */
.how-to-book-new {
    padding: 80px 0;
    background: var(--light-gray);
}

.steps-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step-card-new {
    text-align: center;
    padding: 30px 20px;
}

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

.step-icon i {
    font-size: 36px;
    color: var(--dark-bg);
}

.step-card-new h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.step-card-new p {
    color: #666;
    font-size: 14px;
}

/* Reviews Section */
.reviews-section-new {
    padding: 80px 0;
    background: var(--white);
}

.reviews-images {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-images img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reviews-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.review-card-new {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}

.reviewer-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info-new h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.review-rating {
    color: var(--primary-yellow);
    font-size: 14px;
    margin-bottom: 3px;
}

.review-source {
    font-size: 12px;
    color: #999;
}

.review-text-new {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.read-more {
    color: var(--primary-yellow);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-new {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-yellow);
    color: var(--dark-bg);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline-new:hover {
    background: var(--primary-yellow);
}

/* FAQ Section */
.faq-section-new {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item-new {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question-new {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s;
}

.faq-question-new:hover {
    background: var(--light-gray);
}

.faq-question-new h3 {
    font-size: 16px;
    color: var(--dark-bg);
    margin: 0;
}

.faq-question-new i {
    color: var(--primary-yellow);
    transition: transform 0.3s;
}

.faq-item-new.active .faq-question-new i {
    transform: rotate(180deg);
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-new.active .faq-answer-new {
    max-height: 500px;
}

.faq-answer-new p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.8;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-new {
        grid-template-columns: 1fr;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
    }
    
    .steps-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .route-btn {
        font-size: 13px;
        padding: 12px 15px;
        white-space: normal;
        text-align: center;
    }
    
    .vehicles-grid-new {
        grid-template-columns: 1fr;
    }
    
    .steps-grid-new {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid-new {
        grid-template-columns: 1fr;
    }
}
