/* CSS Variables */
:root {
    --primary-color: #009688;
    --primary-dark: #00796b;
    --primary-light: #4db6ac;
    --secondary-color: #ff6f00;
    --secondary-dark: #e65100;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f5f9f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 150, 136, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 150, 136, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 150, 136, 0.16);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Material Icons Outlined - self-hosted */
@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/material-icons-outlined.woff2') format('woff2');
}

.material-icons {
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}


/* Header */
.header {
    position: relative;
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0 30px;
    display: flex;
    flex-direction: column;
}

.hero-content {
    margin-top: 30px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 150, 136, 0.85);
    padding: 8px 22px;
    border-radius: 50px;
    color: var(--text-white);
    font-weight: 500;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(0, 150, 136, 0.95);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-item .material-icons {
    font-size: 26px;
}

.search-widget {
  box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* How to Rent Section */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    position: relative;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.step-icon .material-icons {
    font-size: 36px;
    color: var(--text-white);
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff8e1 0%, var(--bg-white) 100%);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.service-icon-wrapper .material-icons {
    font-size: 40px;
    color: var(--text-white);
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Rent Section */
.why-content {
    margin: 0 auto;
}

.why-text {
    margin-bottom: 50px;
}

.why-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.why-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-card .material-icons {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-intro {
    margin: 0 auto 50px;
}

.pricing-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.savings-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 35px 40px;
    border-radius: 16px;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

.savings-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    margin-bottom: 25px;
}

.savings-box .material-icons {
    font-size: 32px;
}

.savings-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.savings-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.savings-list .material-icons {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.price-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.price-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.price-icon .material-icons {
    font-size: 40px;
    color: var(--text-white);
}

.price-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.price {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price span {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Pricing Table */
.pricing-table-wrapper {
    margin-top: 60px;
}

.pricing-table-wrapper h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.pricing-table {
    width: 100%;
    background: var(--bg-white);
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
}

.pricing-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background-color: var(--bg-light);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 16px 15px;
    color: var(--text-dark);
    font-size: 15px;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Reviews Section */
.rating-summary {
    text-align: center;
    margin-bottom: 50px;
}

.rating-box {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 30px 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.rating-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-stars .material-icons {
    font-size: 28px;
    color: #ffd700;
}

.rating-box p {
    font-size: 16px;
    opacity: 0.95;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar .material-icons {
    font-size: 28px;
    color: var(--text-white);
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.reviewer-info p {
    font-size: 13px;
    color: var(--text-light);
}

.review-header .rating {
    display: flex;
    gap: 2px;
}

.review-header .rating .material-icons {
    font-size: 18px;
    color: #ffd700;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Traffic Rules Section */
.traffic-main-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.traffic-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.traffic-icon .material-icons {
    font-size: 48px;
    color: var(--text-white);
}

.traffic-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.rules-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.rules-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text-dark);
    line-height: 1.6;
}

.rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.traffic-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.traffic-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.traffic-card .material-icons {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.traffic-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.traffic-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Places Section */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.place-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.place-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.place-icon .material-icons {
    font-size: 36px;
    color: var(--text-white);
}

.place-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.place-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.place-distance {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 14px;
}

.place-distance .material-icons {
    font-size: 20px;
}

/* Top Cars Section */
.cars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.car-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.car-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.car-card.featured {
    border-color: var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.featured-badge .material-icons {
    font-size: 20px;
}

.car-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #FFFFFF;
    padding: 20px;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.car-content {
    padding: 30px 25px;
}

.car-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.car-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 15px;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.spec .material-icons {
    font-size: 20px;
    color: var(--primary-color);
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    justify-content: center;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
}

.btn-book {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.modal-container h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* FAQ Section */
.faq-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0px 20px;
}

.faq-item {
    background: #f6f6f6;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: #f6f6f6;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question .material-icons {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #2d2d2d);
    color: var(--text-white);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 40px;
}

.footer-top h2::after {
    display: none;
}

.footer-top h2 .material-icons {
    font-size: 32px;
    color: var(--primary-light);
}

.footer-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

.footer-locations li {
    margin-bottom: 12px;
}

.footer-locations a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-locations a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-light);
    transition: var(--transition);
}

.footer-locations a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-locations a:hover::before {
    margin-right: 12px;
}

.footer-locations li:not(:has(a)) {
   color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-locations li:not(:has(a))::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-light);
    transition: var(--transition);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.copyright {
    font-size: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .section h2 {
        font-size: 34px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .traffic-main-card {
        flex-direction: column;
        text-align: center;
    }
    
    .traffic-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 150, 136, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 10px 0 30px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-benefits {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .search-widget {
        padding: 0px;
    }

    .faq-container {
      display: block;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .steps-wrapper,
    .services-grid,
    .benefits-grid,
    .price-cards,
    .traffic-cards,
    .places-grid,
    .cars-container,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .savings-list {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .modal-container {
        width: 95%;
        padding: 25px;
        margin: 20px auto;
    }
    
    .footer-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section h2 {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .savings-box {
        padding: 25px 20px;
    }
    
    .savings-box h3 {
        font-size: 20px;
    }
}
