/* Page Styles */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(to right, rgba(254, 91, 61, 0.9), rgba(255, 172, 56, 0.9)), url('../Assets/Images/JeepToLeft.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(100px, -150px);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-80px, 50px);
}

.page-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-content h1 {
    font-size: 3.2rem;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    color: white;
    letter-spacing: -0.5px;
}

.page-hero-content h1 span {
    position: relative;
    display: inline-block;
    color: white;
    padding-bottom: 8px;
}

.page-hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: white;
    line-height: 1.6;
}

/* Vehicle Filters Section */
.vehicle-filters {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-primary);
    margin-bottom: var(--space-xl);
}

.filters-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.filter-heading {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.filter-heading h2 {
    font-size: 1.8rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--text-color);
}

.filter-heading p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    color: var(--text-color);
}

.filter-group select {
    padding: 12px 16px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: var(--bg-primary);
    transition: all var(--transition-base);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(254, 91, 61, 0.1);
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.filter-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.filter-actions .btn i {
    font-size: 0.9rem;
}

/* Filter active states */
.filter-group select:focus,
.filter-group select.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(254, 91, 61, 0.15);
    background-color: rgba(254, 91, 61, 0.03);
}

.filter-actions .btn-primary {
    position: relative;
    overflow: hidden;
}

.filter-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
}

.filter-actions .btn-primary:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0s;
}

/* Vehicle Catalog Section */
.vehicle-catalog {
    padding: var(--space-xxl) 0 var(--space-xxxl);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.catalog-results h2 {
    font-size: 1.8rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 5px;
    color: var(--text-color);
}

.catalog-results p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.catalog-results p span {
    font-weight: var(--fw-semibold);
    color: var(--accent-primary);
}

.catalog-sorting {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.catalog-sorting label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.catalog-sorting select {
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-color);
    background-color: var(--bg-primary);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
    cursor: pointer;
}

.catalog-sorting select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

/* Vehicle Card */
.vehicle-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 12px;
    background-color: var(--accent-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    border-radius: 20px;
    z-index: 2;
}

.vehicle-badge.premium {
    background-color: #8e44ad;
}

.vehicle-badge.popular {
    background-color: #f39c12;
}

.vehicle-badge.special {
    background-color: #3498db;
}

.vehicle-badge.eco {
    background-color: #27ae60;
}

.vehicle-image {
    height: 200px;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
}

.vehicle-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

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

.vehicle-details {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.vehicle-type {
    font-size: 0.8rem;
    font-weight: var(--fw-medium);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-name {
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    color: var(--text-color);
    margin-bottom: 5px;
}

.vehicle-specs {
    display: flex;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--space-md);
}

.spec {
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.spec span {
    font-size: 0.85rem;
    color: var(--text-color);
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    padding: 4px 10px;
    background-color: var(--bg-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-color);
}

.vehicle-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vehicle-price .price {
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: var(--accent-primary);
}

.vehicle-price .period {
    font-size: 0.9rem;
    color: var(--text-color);
}

.vehicle-actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all var(--transition-base);
}

.pagination-number {
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.pagination-number:hover {
    background-color: var(--bg-primary);
}

.pagination-number.active {
    background-color: var(--accent-primary);
    color: white;
}

.pagination-dots {
    background: none;
    box-shadow: none;
    cursor: default;
}

.pagination-arrow {
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.pagination-arrow:hover {
    background-color: var(--bg-primary);
}

.pagination-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Why Choose Carts Section */
.why-choose-Carts {
    background-color: var(--bg-primary);
    padding: var(--space-xxxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h4 {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--accent-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: var(--fw-bold);
    color: var(--text-color);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, rgba(254, 91, 61, 1), rgba(255, 172, 56, 1));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
    perspective: 1000px;
}

.benefit-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, rgba(254, 91, 61, 1), rgba(255, 172, 56, 1));
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Call to Action Section */
.Carts-cta {
    background: linear-gradient(to right, rgba(254, 91, 61, 0.95), rgba(255, 172, 56, 0.95)), url('../Assets/Images/JeepToRight.png');
    background-size: cover;
    background-position: center;
    padding: var(--space-xxl) 0;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.Carts-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 60%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--accent-primary);
    font-weight: var(--fw-semibold);
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
    background-color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-outline {
    border: 2px solid white;
    color: white;
    font-weight: var(--fw-semibold);
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xxl);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: var(--fw-medium);
    border: 1px dashed var(--border-medium);
}

/* Services Overview Section */
.services-overview {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

.service-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, rgba(254, 91, 61, 1), rgba(255, 172, 56, 1));
}

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

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: var(--space-lg);
}

.service-content {
    padding: 0 var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex: 1;
}

.btn-link {
    color: var(--main-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-dark);
}

.btn-link:hover i {
    transform: translateX(3px);
}

/* Premium Services Section */
.premium-services {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-secondary);
}

.premium-services-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
    margin-top: var(--space-xxl);
}

.premium-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.premium-service-item.reverse {
    direction: rtl;
}

.premium-service-item.reverse .premium-service-content {
    direction: ltr;
}

.premium-service-image {
    height: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.premium-service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.premium-service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
}

.premium-service-item:hover .premium-service-image {
    transform: translateY(-5px);
}

/* Premium service backgrounds */
.premium-bg-1 {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--second-color) 100%);
    background-size: cover;
    position: relative;
}

.premium-bg-1::before {
    content: '\f5e4'; /* Car icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
}

.premium-bg-2 {
    background: linear-gradient(135deg, #6D327C 0%, #485DA6 50%, #00A1BA 100%);
    background-size: cover;
    position: relative;
}

.premium-bg-2::before {
    content: '\f0f2'; /* Wedding gift icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
}

.premium-bg-3 {
    background: linear-gradient(135deg, #1D2671 0%, #C33764 100%);
    background-size: cover;
    position: relative;
}

.premium-bg-3::before {
    content: '\f1ad'; /* Building icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
}

.premium-service-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.premium-service-content h3 {
    font-size: 1.5rem;
    font-weight: var(--fw-semibold);
    color: var(--text-color);
    margin-bottom: var(--space-sm);
}

.premium-service-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.premium-service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.premium-service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.premium-service-features i {
    color: var(--main-color);
    font-size: 0.9rem;
}

/* Service Process Section */
.service-process {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-primary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: calc(-50% + 30px);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(254, 91, 61, 0.5), rgba(255, 172, 56, 0.5));
    z-index: -1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(to right, rgba(254, 91, 61, 1), rgba(255, 172, 56, 1));
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--main-color);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background-color: var(--main-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(254, 91, 61, 0.2);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--text-color);
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Services Testimonials Section */
.services-testimonials {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-secondary);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(to right, rgba(254, 91, 61, 0.95), rgba(255, 172, 56, 0.95)), url('../Assets/Images/JeepToRight.png');
    background-size: cover;
    background-position: center;
    padding: var(--space-xxl) 0;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .filter-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .premium-service-item {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .premium-service-item.reverse {
        direction: ltr;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 calc(50% - var(--space-lg));
        margin-bottom: var(--space-xl);
    }
    
    .process-step:nth-child(even)::after {
        display: none;
    }
    
    .process-step:nth-child(odd):not(:nth-last-child(1)):not(:nth-last-child(2))::after {
        top: 35px;
        right: calc(-50% + 30px);
        width: 200%;
        transform: translateX(25%);
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .filter-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .premium-service-image {
        height: 200px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: var(--space-lg);
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .premium-service-image {
        height: 180px;
    }
    
    .premium-service-content h3 {
        font-size: 1.3rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vehicle-specs {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .vehicle-footer {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .vehicle-actions {
        width: 100%;
    }
    
    .vehicle-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
} 

/* About Page Styles */
.about-story-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
    max-width: 45%;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.key-facts {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.fact-text {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.about-mission {
    background-color: var(--color-bg-light);
    padding: 80px 0;
    margin: 60px 0;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-primary);
    margin: 30px 0;
    line-height: 1.5;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 24px;
    color: var(--color-primary);
}

.value-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.value-details p {
    color: var(--color-text-light);
    line-height: 1.5;
}

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

.team-member {
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-image {
    height: 220px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--color-text-dark);
}

.member-position {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: background-color 0.3s, color 0.3s;
}

.member-social a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.facilities-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.facility-feature {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.facility-feature:hover {
    transform: translateY(-5px);
}

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

.feature-icon i {
    font-size: 30px;
    color: var(--color-primary);
}

.facility-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.facility-feature p {
    color: var(--color-text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 50px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
}

.timeline-content {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.timeline-content p {
    color: var(--color-text-light);
}

.about-cta {
    background-color: var(--color-primary);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-buttons .btn-outline:hover {
    background-color: #fff;
    color: var(--color-primary);
}

/* Responsive styles for About page */
@media (max-width: 992px) {
    .about-story-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .key-facts {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .fact-item {
        flex-direction: row;
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-highlights {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        left: -30px;
        width: 35px;
        height: 35px;
    }
} 