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

:root {
    --primary: #f5c518;
    --primary-dark: #e0a800;
    --primary-light: #fff8e1;
    --accent: #ff6b35;
    --accent-dark: #e55a24;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --text: #1e293b;
    --text-light: #64748b;
    --white: #fff;
    --gray-bg: #f8fafc;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --info: #3b82f6;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-yellow: 0 8px 30px rgba(245, 197, 24, 0.4);
    --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;
}

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(0, 0, 0, 0.1);
}

.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: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-phone:hover {
    box-shadow: var(--shadow-yellow);
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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


/* 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, #f8f9fa 0%, #e8ecf1 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--primary-dark);
}

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

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

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

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

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

.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: 15px;
    font-size: 15px;
}

.hero-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;
    margin-top: 10px;
    transition: var(--transition);
}

.hero-zalo:hover {
    background: #0054d4;
}

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

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

.hero-car-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: linear-gradient(135deg, #2d8a4e, #4caf50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.hero-car-placeholder::before {
    content: 'LIMO GREEN';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

.hero-car-placeholder::after {
    content: '0347020756';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

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

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

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

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* ========== 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;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

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

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

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--primary);
    padding: 40px 0;
}

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

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.cta-phone {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
}

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

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

.cta-car-placeholder {
    width: 300px;
    height: 180px;
    background: linear-gradient(135deg, #2d8a4e, #4caf50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

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

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

.testimonial-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.testimonial-avatar svg {
    width: 40px;
    height: 40px;
    color: #999;
}

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

.testimonial-stars {
    color: var(--primary);
    font-size: 18px;
    margin: 8px 0;
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 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: 5px;
}

.footer-brand .footer-slogan {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
}

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

.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: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

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

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

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

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

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ccc;
    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.1);
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 13px;
}

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

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

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

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

.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(--dark);
    font-weight: 700;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    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: 500;
}

/* ========== 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: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

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

.term-icon {
    width: 60px;
    height: 60px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.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: 25px;
}

.policy-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

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

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

.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: 22px;
    font-weight: 700;
    color: #d32f2f;
    margin: 10px 0;
}

.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: #d32f2f;
    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(--dark);
    font-weight: 700;
    font-size: 16px;
}

/* ========== PRICING CARDS (Modern) ========== */
.pricing-section {
    background: var(--dark);
    padding: 80px 0;
    margin-top: 0;
}

.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.6);
    font-size: 16px;
    margin-bottom: 50px;
}

.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: 40px 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(245, 197, 24, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.15);
}

.pricing-card-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(245, 197, 24, 0.2);
}

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

.badge-green {
    background: #4caf50;
    color: var(--white);
}

.badge-yellow {
    background: var(--primary);
    color: var(--dark);
}

.badge-blue {
    background: #42a5f5;
    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: 20px;
}

.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(245, 197, 24, 0.08);
    border-radius: 8px;
    padding: 12px 12px;
    margin: 4px -12px 0;
    border-bottom: none;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.7);
    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.6);
    font-size: 14px;
    padding: 5px 0 5px 22px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.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(--primary);
    background: rgba(245, 197, 24, 0.08);
    transform: translateY(-2px);
}

.pricing-btn-filled {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border: none;
    color: var(--dark);
    border: 2px solid var(--primary);
}

.pricing-btn-filled:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.3);
}

.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: 4px 0;
    color: rgba(255, 255, 255, 0.6);
    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%;
}

/* ========== PRICE TABLE (Detail) ========== */
.price-section {
    background: var(--white);
}

.price-table-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid var(--primary);
}

.price-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

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

.price-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: var(--text);
}

.price-table tbody tr:hover {
    background: #fffbeb;
}

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

.price-note {
    background: #fff3cd;
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 20px;
}

.price-note h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

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

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

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
}

.contact-info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

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

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

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ========== CTA BOTTOM ========== */
.cta-bottom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 50px 0;
}

.cta-bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.cta-bottom-content h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 5px;
}

.cta-bottom-phone {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark);
}

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

.cta-bottom-sub {
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    margin-top: 5px;
}

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

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

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

.float-btn.phone-float {
    background: #d32f2f;
    animation: pulse 2s infinite;
}

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

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

.float-label {
    /* Made visible on mobile */
    position: absolute;
    right: 65px;
    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);
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 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;
    }
    .price-table-wrapper {
        box-shadow: inset -10px 0 10px -10px rgba(0,0,0,0.1);
    }
}

/* ========== 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 .container {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

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

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

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

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

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

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

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

    .cta-image {
        flex: none;
    }

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

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

    .breadcrumb {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero {
        padding: 40px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    /* Hide phone text on small mobile, keep icon */
    .btn-phone {
        padding: 10px;
        border-radius: 50%;
    }
    .btn-phone span {
        display: none;
    }
    .btn-phone svg {
        margin: 0;
    }
    
    /* Show floating labels on mobile */
    .float-label {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }

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

    .hero-btn {
        padding: 12px 20px;
        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,
    .cta-bottom-phone {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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