/* New Design CSS - Matching Provided Screenshots */

:root {
    --primary-yellow: #FFC107;
    --dark-bg: #2c2c2c;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

* {
    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-dark);
}

.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(255, 193, 7, 0.2);
    display: block;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
    width: fit-content;
}

.rating-badge .stars {
    color: var(--primary-yellow);
    font-size: 18px;
    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(--primary-yellow);
    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: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-image {
    position: relative;
    width: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

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

.about-main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 25px !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.book-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: auto;
    width: auto;
    user-select: none;
}

.book-badge:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.book-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.badge-text {
    display: block;
    font-size: 11px;
    color: #2c3e50;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
}

.badge-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.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;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .image-container {
        height: 400px !important;
    }
    
    .book-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .badge-title {
        font-size: 12px;
    }
    
    .about-text h2 {
        font-size: 28px;
        text-align: center;
    }
}

/* 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(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.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;
    }
    
    .vehicles-grid-new {
        grid-template-columns: 1fr;
    }
    
    .steps-grid-new {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid-new {
        grid-template-columns: 1fr;
    }
}
