@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #1f9d55;
    --primary-dark: #157a41;
    --primary-light: #e8f7ee;
    --accent: #0f172a;
    --accent-dark: #030712;
    --dark: #0b1f17;
    --dark-2: #12271e;
    --dark-3: #1e3a2b;
    --text: #0f172a;
    --text-light: #64748b;
    --white: #fff;
    --gray-bg: #f4f9f6;
    --gray-light: #e2e8f0;
    --success: #22c55e;
    --info: #0ea5e9;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(15, 89, 51, 0.18);
    --shadow-green: 0 8px 30px rgba(31, 157, 85, 0.35);
    --radius: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ========== HEADER ========== */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(11, 31, 23, 0.08);
    border-bottom: 1px solid rgba(31, 157, 85, 0.08);
}

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

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

.logo-text {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
}

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

.logo-text .city {
    color: var(--dark);
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(31, 157, 85, 0.28);
}

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

.btn-phone svg {
    width: 18px;
    height: 18px;
}

.btn-zalo {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0068ff;
    color: var(--white);
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.btn-zalo:hover {
    background: #0054d4;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 23, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Replaced Image Styles */
.hero-car-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

.cta-car-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ========== HERO ========== */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #f3fbf6 0%, #e3f4ea 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31, 157, 85, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 157, 85, 0.2);
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-content h1 .highlight {
    color: var(--primary);
    display: inline-block;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(31, 157, 85, 0.45);
}

.hero-btn.secondary {
    background: var(--dark);
    color: var(--white);
}

.hero-btn.secondary:hover {
    background: var(--dark-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    margin-top: 4px;
    font-size: 15px;
}

.hero-location svg {
    color: var(--primary);
}

.hero-zalo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0068ff;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 14px;
    transition: var(--transition);
}

.hero-zalo:hover {
    background: #0054d4;
    transform: translateY(-2px);
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px dashed rgba(31, 157, 85, 0.3);
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(31, 157, 85, 0.15);
    color: var(--primary);
}

.hero-badge-icon svg {
    width: 22px;
    height: 22px;
}

.hero-badge-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.hero-image {
    flex: 1;
    text-align: right;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ========== SECTION COMMON ========== */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 45px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== SERVICES ========== */
.services {
    background: var(--white);
}

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

.service-card {
    text-align: center;
    padding: 35px 22px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid #e6efe9;
    transition: var(--transition);
    cursor: pointer;
}

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

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

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 34px;
    height: 34px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

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

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

/* ========== WHY CHOOSE ========== */
.why-choose {
    background: var(--gray-bg);
}

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

.why-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(11, 31, 23, 0.04);
    transition: var(--transition);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(31, 157, 85, 0.28);
}

.why-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

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

/* ========== FLEET (Đội xe) ========== */
.fleet-section {
    background: var(--white);
}

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

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e6efe9;
    box-shadow: 0 4px 18px rgba(11, 31, 23, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.fleet-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #f3fbf6, #e3f4ea);
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.fleet-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(31, 157, 85, 0.35);
}

.fleet-tag-blue {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.35);
}

.fleet-tag-dark {
    background: linear-gradient(135deg, var(--dark-3), var(--dark));
    box-shadow: 0 4px 12px rgba(11, 31, 23, 0.35);
}

.fleet-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.fleet-body > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.fleet-features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fleet-features li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.5;
}

.fleet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

/* ========== LIMO GREEN (Electric car section) ========== */
.limo-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 70px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.limo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(31, 157, 85, 0.25), transparent 55%);
    z-index: 1;
}

.limo-section .container {
    position: relative;
    z-index: 2;
}

.limo-section .section-title {
    color: var(--white);
}

.limo-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.limo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(31, 157, 85, 0.25);
    padding: 32px 26px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.limo-card:hover {
    border-color: var(--primary);
    background: rgba(31, 157, 85, 0.12);
    transform: translateY(-5px);
}

.limo-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: rgba(31, 157, 85, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
}

.limo-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.limo-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 45px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.15), transparent 40%);
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 26px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 800;
}

.cta-phone {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

.cta-phone a {
    color: var(--white);
}

.cta-image {
    flex: 0 0 480px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    text-align: center;
    padding: 34px 26px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(11, 31, 23, 0.06);
    border: 1px solid #eef4f0;
    transition: var(--transition);
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-avatar svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.testimonial-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.testimonial-stars {
    color: #f5c518;
    font-size: 18px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 55px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-brand .logo-text {
    font-size: 24px;
    margin-bottom: 6px;
}

.footer-brand .footer-slogan {
    font-size: 13px;
    color: #9db5a7;
    margin-bottom: 18px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-phone svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.footer-zalo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0068ff;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--primary);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #cbd8d0;
    transition: var(--transition);
    font-size: 14px;
}

.footer ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #cbd8d0;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact-info svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    color: #7a8f83;
    font-size: 13px;
}

/* ========== PAGE HEADER ========== */
.page-header {
    margin-top: 70px;
    background: linear-gradient(135deg, #f3fbf6, #e3f4ea);
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 157, 85, 0.15), transparent 70%);
    border-radius: 50%;
}

.page-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.page-header-content {
    flex: 1;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 16px;
    color: var(--text-light);
}

.page-header-image {
    flex: 0 0 300px;
    text-align: right;
}

.page-header-image .placeholder-img {
    width: 280px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-green);
}

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

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.breadcrumb .current {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ========== TERMS / POLICY GRID ========== */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.term-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 2px 10px rgba(11, 31, 23, 0.05);
    border: 1px solid #eef4f0;
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

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

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

.term-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.term-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.term-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.term-content ul {
    margin-top: 8px;
}

.term-content ul li {
    color: var(--text-light);
    font-size: 14px;
    padding: 4px 0;
    padding-left: 15px;
    position: relative;
}

.term-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ========== POLICY PAGE ========== */
.policy-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.policy-cards {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.policy-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 2px 10px rgba(11, 31, 23, 0.05);
    border: 1px solid #eef4f0;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

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

.policy-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 20px;
    border-top: 4px solid var(--primary);
}

.sidebar-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.sidebar-box p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0;
}

.sidebar-phone svg {
    color: var(--primary);
}

.sidebar-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    text-align: left;
    margin-top: 10px;
}

.sidebar-location svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.sidebar-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-green);
}

/* ========== PRICING CARDS ========== */
.pricing-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31, 157, 85, 0.22), transparent 60%);
    border-radius: 50%;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pricing-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    margin-bottom: 55px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--dark-2);
    border-radius: 16px;
    padding: 42px 30px 35px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 157, 85, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(31, 157, 85, 0.25);
    background: linear-gradient(180deg, var(--dark-2), var(--dark-3));
}

.pricing-card-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(31, 157, 85, 0.35);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.badge-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
}

.badge-yellow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(31, 157, 85, 0.4);
}

.badge-blue {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
    color: var(--white);
}

.pricing-card-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1;
}

.pricing-card-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.pricing-rows {
    margin-bottom: 22px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row-highlight {
    background: rgba(31, 157, 85, 0.12);
    border-radius: 8px;
    padding: 12px 14px;
    margin: 6px -14px 0;
    border-bottom: none;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 500;
}

.pricing-value {
    color: var(--primary);
    font-size: 15px;
}

.pricing-value strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    padding: 6px 0 6px 24px;
    position: relative;
}

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

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.pricing-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: transparent;
}

.pricing-btn-outline:hover {
    border-color: var(--primary);
    color: var(--white);
    background: rgba(31, 157, 85, 0.15);
    transform: translateY(-2px);
}

.pricing-btn-filled {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid var(--primary);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(31, 157, 85, 0.35);
}

.pricing-btn-filled:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(31, 157, 85, 0.5);
}

.pricing-notes {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    margin-top: 50px;
}

.pricing-notes h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 16px;
}

.pricing-notes ul li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    padding-left: 18px;
    position: relative;
}

.pricing-notes ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.phone-float {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    animation: pulse-green 2s infinite;
}

.float-btn.zalo-float {
    background: #0068ff;
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

.float-label {
    position: absolute;
    right: 66px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.float-btn:hover .float-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(31, 157, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 157, 85, 0); }
}

.table-scroll-hint {
    display: none;
    text-align: right;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-style: italic;
}
@media (max-width: 768px) {
    .table-scroll-hint {
        display: block;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30px;
        gap: 0;
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: flex;
    }

    .btn-zalo.header-zalo-btn {
        display: none;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-location {
        justify-content: center;
    }

    .hero-badges {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .limo-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .pricing-heading {
        font-size: 28px;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-image {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .page-header .container {
        flex-direction: column;
        text-align: center;
    }

    .page-header-image {
        display: none;
    }

    .breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        padding: 40px 0 50px;
    }
    .section-title {
        font-size: 28px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .hero-badge-label {
        font-size: 11px;
    }
    .cta-content h2 {
        font-size: 20px;
        justify-content: center;
    }
    .cta-phone {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .btn-phone {
        padding: 10px 14px;
    }
    .btn-phone span {
        display: none;
    }

    .float-label {
        display: none;
    }

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

    .hero-btn {
        padding: 13px 22px;
        font-size: 14px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-heading {
        font-size: 24px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cta-phone {
        font-size: 34px;
    }

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