/* ===================================================
   DurresCar - Car Rental Durres, Albania
   Modern, Clean Design
   =================================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #1EBD90;
    --primary-dark: #129872;
    --primary-light: #e8feef;
    --accent: #ff6d00;
    --accent-light: #fff3e0;
    --dark: #1a1a2e;
    --dark-2: #2d2d44;
    --text: #333340;
    --text-light: #6b6b80;
    --text-muted: #9e9eb0;
    --bg: #ffffff;
    --bg-light: #f5f7fb;
    --bg-alt: #eef2f9;
    --border: #e0e4ed;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --container: 1200px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

/* ---- Container ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.4);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: #e66000;
    color: #fff;
    transform: translateY(-1px);
}

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

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* =======================================================
   HEADER
   ======================================================= */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 100;
}

/* Overlay header (homepage hero) */
.header--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: transparent;
    transition: background var(--transition), border-color var(--transition);
}

.header--overlay .logo {
    color: #fff;
}

.header--overlay .logo-accent {
    color: #7cc8ff;
}

.header--overlay .nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.header--overlay .nav-link:hover,
.header--overlay .nav-link.active {
    color: #fff;
}

.header--overlay .nav-link::after {
    background: #fff;
}

.header--overlay .mobile-menu-btn {
    color: #fff;
}

.header--overlay .main-nav.open {
    background: rgba(15, 15, 35, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header--overlay .main-nav.open .nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.header--overlay .main-nav.open .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Extend hero to sit behind overlay header */
body:has(.header--overlay) .hero {
    min-height: 400px;
}

body:has(.header--overlay) .hero-content {
    padding-top: 130px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

.mobile-menu-btn .material-icons-outlined {
    font-size: 28px;
}

/* =======================================================
   HERO
   ======================================================= */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.badge .material-icons-outlined {
    font-size: 18px;
    color: #7cc8ff;
}

/* =======================================================
   BOOKING WIDGET
   ======================================================= */
.booking-widget-section {
    padding: 40px 0 60px;
    background: #fff;
}

.booking-widget-section .container {
    max-width: var(--container);
}

/* =======================================================
   HOW TO RENT
   ======================================================= */
.how-to-rent {
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}

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

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 12px auto 16px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .material-icons-outlined {
    font-size: 28px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
}

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

/* =======================================================
   OFFERS SECTION
   ======================================================= */
.offers-section {
    background: var(--bg-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

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

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

.offer-icon .material-icons-outlined {
    font-size: 32px;
    color: var(--primary);
}

.offer-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 700;
}

.offer-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =======================================================
   WHY RENT
   ======================================================= */
.why-rent {
    background: var(--bg);
}

.why-rent-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-rent-text {
    width: 100%;
}

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

.why-rent-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.feature-item > .material-icons-outlined {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* =======================================================
   PRICES SECTION
   ======================================================= */
.prices-section {
    background: var(--bg-light);
}

.price-tips {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid var(--border);
}

.price-tips h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
}

.tips-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.tips-list .material-icons-outlined {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.price-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.price-card-icon {
    margin-bottom: 12px;
}

.price-card-icon .material-icons-outlined {
    font-size: 36px;
    color: var(--primary);
}

.price-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.price-range {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-range strong {
    font-size: 24px;
    color: var(--primary);
    font-weight: 800;
}

.price-card > p:last-child {
    font-size: 13px;
    color: var(--text-muted);
}

.table-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table th,
.price-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.price-table thead {
    background: var(--dark);
    color: #fff;
}

.price-table th {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.price-table tbody tr {
    transition: background var(--transition);
}

.price-table tbody tr:hover {
    background: var(--primary-light);
}

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

/* =======================================================
   REVIEWS
   ======================================================= */
.reviews-section {
    background: var(--bg);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.rating-big {
    text-align: center;
    flex-shrink: 0;
}

.rating-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.rating-stars {
    font-size: 24px;
    color: #f5a623;
    margin: 8px 0;
}

.rating-count {
    font-size: 14px;
    color: var(--text-muted);
}

.rating-bars {
    flex: 1;
    max-width: 360px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.rating-bar-row > span:first-child {
    width: 30px;
    text-align: right;
    font-weight: 500;
}

.rating-bar-row > span:last-child {
    width: 35px;
    text-align: right;
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
}

.review-location {
    font-size: 13px;
    color: var(--text-muted);
}

.review-stars {
    margin-left: auto;
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* =======================================================
   LANDMARKS
   ======================================================= */
.landmarks-section {
    background: var(--bg-light);
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.landmark-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.landmark-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.landmark-icon .material-icons-outlined {
    font-size: 24px;
    color: var(--primary);
}

.landmark-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
}

.landmark-card > p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.landmark-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.landmark-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.landmark-meta .material-icons-outlined {
    font-size: 16px;
    color: var(--primary);
}

/* =======================================================
   POPULAR CARS
   ======================================================= */
.popular-cars-section {
    background: var(--bg);
}

.popular-cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.car-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.car-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.car-card-badge.best-value {
    background: var(--accent);
}

.car-card-badge.premium-pick {
    background: #7c3aed;
}

.car-card-image {
    padding: 24px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.car-card-image img {
    max-height: 140px;
    object-fit: contain;
    margin: 0 auto;
}

.car-card-body {
    padding: 24px;
}

.car-card-body h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 800;
}

.car-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

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

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

.car-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

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

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

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

.car-rating {
    font-size: 14px;
    color: #f5a623;
    margin-bottom: 16px;
}

.car-rating span {
    color: var(--text-muted);
    font-size: 13px;
}

.car-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

/* =======================================================
   FAQ
   ======================================================= */
.faq-section {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(26, 115, 232, 0.1);
}

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

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

.faq-icon {
    transition: transform var(--transition);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =======================================================
   FOOTER
   ======================================================= */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 32px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo-text {
    color: #fff;
}

.footer-copy {
    font-size: 14px;
}

.footer-seo {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-seo p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

/* =======================================================
   ABOUT US PAGE
   ======================================================= */
.page-hero {
    background: var(--dark);
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
    color: rgba(255,255,255,0.9);
}

.page-content {
    padding: 64px 0;
}

.page-content .container {
    max-width: 900px;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark);
}

.content-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.content-block p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block ul,
.content-block ol {
    margin-bottom: 16px;
    padding-left: 0;
}

.content-block li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.content-block li .material-icons-outlined {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.about-feature-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.about-feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.about-feature-card .material-icons-outlined {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.about-feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* How it works steps on about page */
.about-steps {
    counter-reset: step;
}

.about-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.about-step:last-child {
    border-bottom: none;
}

.about-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.about-step-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.about-step-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.contact-info-card .material-icons-outlined {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Privacy Policy */
.policy-content h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.policy-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-content li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-cars-grid .car-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-rent-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    /* Header */
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 16px;
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover {
        background: var(--bg-light);
    }

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        padding: 8px 14px;
        font-size: 13px;
    }

    /* Grids */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .why-rent-features {
        grid-template-columns: 1fr;
    }

    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .landmarks-grid {
        grid-template-columns: 1fr;
    }

    .popular-cars-grid {
        grid-template-columns: 1fr;
    }

    .popular-cars-grid .car-card:last-child {
        max-width: 100%;
    }

    /* Reviews summary */
    .reviews-summary {
        flex-direction: column;
        gap: 24px;
    }

    .rating-bars {
        max-width: 100%;
        width: 100%;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Page Hero */
    .page-hero {
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    /* Price Table */
    .price-table {
        font-size: 13px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-content {
        padding: 60px 16px;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 22px;
    }

    .car-card-body h3 {
        font-size: 20px;
    }
}
