/* ================================
   DCar Limousine - Main CSS
   ================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #241818;
    --secondary-color: #dbc788;
    --accent-color: #a93c42;
    --text-dark: #f5f1ea;
    --text-light: #cfc2b8;
    --white: #ffffff;
    --bg-body: #120f11;
    --bg-section: #1b1415;
    --bg-light: #221719;
    --bg-card: #291c1f;
    --bg-card-hover: #332326;
    --border-soft: rgba(219, 199, 136, 0.18);
    --gradient-gold: linear-gradient(135deg, #dbc788 0%, #b68e53 100%);
    --shadow: 0 25px 55px rgba(8, 5, 6, 0.55);
    --spacing-unit: 1px;
}

/* Tối ưu performance khi scroll */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tắt smooth scroll để tránh giật */
html {
    scroll-behavior: auto;
}

/* Tối ưu cho các elements có animation */
.feature-item, .service-card {
    backface-visibility: hidden;
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-item.fade-in, .service-card.fade-in {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

/* Fleet card và Pricing card hiển thị ngay, không cần animation */
.fleet-card, .pricing-card {
    backface-visibility: hidden;
    opacity: 1;
    transform: translateZ(0);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(120% 130% at 50% -20%, rgba(169, 60, 66, 0.25) 0%, rgba(18, 15, 17, 0.96) 55%), radial-gradient(100% 140% at 80% 120%, rgba(219, 199, 136, 0.12) 0%, var(--bg-body) 65%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Select dropdown arrow customization - Global */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 45px; /* Space for arrow */
    background-color: rgba(219, 199, 136, 0.08);
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M5 7l5 5 5-5" stroke="%23dbc788" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    cursor: pointer;
}

/* Select dropdown options background - Global */
select option {
    background: var(--bg-card) !important;
    color: var(--text-dark) !important;
    padding: 10px;
}

/* Dropdown list background (when opened) */
select:focus option:checked,
select option:checked {
    background: var(--bg-card-hover) !important;
    color: var(--secondary-color) !important;
}

select option:hover {
    background: var(--bg-card-hover) !important;
    color: var(--secondary-color) !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(27, 17, 19, 0.9);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

#header.scrolled {
    background: rgba(27, 17, 19, 0.96);
    box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    overflow: visible;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
    min-width: 0;
}

.logo img {
    max-width: 70px;
    width: auto;
    height: auto;
    display: block;
}

.logo span {
    color: var(--secondary-color);
}

nav {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

nav li {
    position: relative;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
    background: transparent;
}

nav a:hover {
    color: var(--secondary-color);
    background: transparent !important;
}

.menu-item-has-children > a:hover {
    background: transparent !important;
}

/* Submenu */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 0.7em;
    margin-left: 5px;
    opacity: 0.7;
}

/* Tạo vùng bridge để di chuyển chuột mượt màu */
.menu-item-has-children::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
    z-index: 10000;
    pointer-events: none;
}

.menu-item-has-children:hover::before {
    pointer-events: auto;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    display: block !important;
    padding: 5px 0 10px 0;
    border-radius: 0 0 10px 10px;
    z-index: 9999;
    pointer-events: none;
    margin-top: 0;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}

.menu-item-has-children:hover > a {
    color: var(--secondary-color);
}

.sub-menu li {
    display: block;
    margin: 0;
}

.sub-menu a {
    padding: 12px 25px;
    white-space: nowrap;
    color: var(--text-light);
}

.sub-menu a:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--secondary-color);
}

/* Active Menu Items */
nav li.active > a {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

/* Đường gạch dưới cho active state - dùng ::before để không conflict với icon submenu */
nav li.active > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px 3px 0 0;
    z-index: 1;
}

/* Giữ icon mũi tên cho menu có submenu, kể cả khi active */
.menu-item-has-children.active > a::after {
    content: ' ▼' !important;
    font-size: 0.7em;
    margin-left: 5px;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

.sub-menu li.active > a {
    background: var(--bg-light);
    color: var(--secondary-color);
    font-weight: 600;
}

.sub-menu li.active > a::after {
    display: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 35px rgba(212, 175, 55, 0.25);
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Contact Form 7 styling to match theme */
.contact-form-box .wpcf7-form {
    display: block;
    padding: 15px;
}
.contact-form-box .wpcf7-form p {
    margin: 0 0 18px 0;
}
.contact-form-box .wpcf7-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.contact-form-box .wpcf7-form input[type="text"],
.contact-form-box .wpcf7-form input[type="email"],
.contact-form-box .wpcf7-form input[type="tel"],
.contact-form-box .wpcf7-form select,
.contact-form-box .wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: rgba(219, 199, 136, 0.08);
    color: var(--text-dark);
}
.contact-form-box .wpcf7-form textarea { resize: vertical; }

/* Select dropdown arrow customization */
.contact-form-box .wpcf7-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 45px; /* Space for arrow */
    background-color: rgba(219, 199, 136, 0.08);
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M5 7l5 5 5-5" stroke="%23dbc788" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    cursor: pointer;
}

/* Select dropdown options background */
.contact-form-box .wpcf7-form select option {
    background: var(--bg-card) !important;
    color: var(--text-dark) !important;
    padding: 10px;
}

.contact-form-box .wpcf7-form select option:checked,
.contact-form-box .wpcf7-form select option:hover {
    background: var(--bg-card-hover) !important;
    color: var(--secondary-color) !important;
}

.contact-form-box .wpcf7-submit {
    width: 100%;
    background: var(--gradient-gold) !important;
    color: #fff;
    height: 54px;
    padding: 0 24px;
    border: none;
    border-radius: 10px !important;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(212,175,55,0.2);
    transition: transform .15s ease, box-shadow .15s ease, filter .2s;
}
.elementor-kit-7 .contact-form-box .wpcf7-submit { background: var(--gradient-gold) !important; border-radius: 10px !important; }
.contact-form-box .wpcf7-submit:hover {
    filter: brightness(0.97);
    box-shadow: 0 8px 20px rgba(212,175,55,0.28);
}
.contact-form-box .wpcf7-submit:active {
    transform: translateY(1px);
}
.contact-form-box .wpcf7-spinner { display: inline-block; margin-left: 10px; }

.contact-form-wrapper h2 { margin-bottom: 10px; }
.contact-form-wrapper p + .contact-form-box { margin-top: 10px; }

/* Visual polish to match card design */
.contact-form-box {
    border-radius: 20px !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-soft) !important;
    box-shadow: 0 30px 55px rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
}

.contact-form-box .wpcf7-form input:focus,
.contact-form-box .wpcf7-form select:focus,
.contact-form-box .wpcf7-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(219,199,136,0.22);
}

.contact-form-box .wpcf7-form ::placeholder { color: var(--text-light); }

/* Compact form for sidebar */
details .contact-form-box {
    background: rgba(24,19,20,0.95) !important;
    padding: 15px !important;
    border-radius: 10px !important;
    border: 1px solid var(--border-soft) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35) !important;
}

details .contact-form-box .wpcf7-form input[type="text"],
details .contact-form-box .wpcf7-form input[type="email"],
details .contact-form-box .wpcf7-form input[type="tel"],
details .contact-form-box .wpcf7-form select,
details .contact-form-box .wpcf7-form textarea {
    padding: 10px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
}

/* Select dropdown arrow customization in details */
details .contact-form-box .wpcf7-form select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    padding-right: 40px !important; /* Space for arrow */
    background-color: rgba(219, 199, 136, 0.08) !important;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M5 7l5 5 5-5" stroke="%23dbc788" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 14px 14px !important;
    cursor: pointer !important;
}

/* Select dropdown options background in details */
details .contact-form-box .wpcf7-form select option {
    background: var(--bg-card) !important;
    color: var(--text-dark) !important;
    padding: 10px !important;
}

details .contact-form-box .wpcf7-form select option:checked,
details .contact-form-box .wpcf7-form select option:hover {
    background: var(--bg-card-hover) !important;
    color: var(--secondary-color) !important;
}

details .contact-form-box .wpcf7-form p {
    margin: 0 0 12px 0 !important;
}

details .contact-form-box .wpcf7-form label {
    font-size: 0.9rem !important;
    margin-bottom: 5px !important;
}

details .contact-form-box .wpcf7-submit {
    height: 44px !important;
    font-size: 0.95rem !important;
    padding: 0 20px !important;
    border-radius: 8px !important;
}

/* Contact Modal Popup */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex !important;
    opacity: 1;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    position: relative;
    background: rgba(15, 15, 15, 0.96);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 75px rgba(0, 0, 0, 0.55);
    animation: modalSlideIn 0.3s ease-out;
    color: var(--text-dark);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal-close {
    transition: all 0.3s;
}

.contact-modal-close:hover {
    color: var(--secondary-color) !important;
    transform: rotate(90deg);
}

.contact-modal-content .contact-form-box {
    margin-top: 0;
}

/* Responsive modal */
@media (max-width: 768px) {
    .contact-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .contact-modal-content h2 {
        font-size: 1.5rem !important;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 45px rgba(212, 175, 55, 0.35);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(129deg, rgb(24 12 12 / 38%), rgb(11 9 12 / 32%)), url('../images/soalti-htd-2024-1.jpg') center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 20px 60px;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #fff;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.hero-feature {
    padding: 24px;
    background: rgba(219, 199, 136, 0.08);
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
}

.hero-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hero-feature p {
    font-size: 1rem;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-title h2 span {
    color: var(--secondary-color);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 35px 20px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

.promise-card {
    margin-top: 60px;
    padding: 45px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 30px 55px rgba(0,0,0,0.45);
    text-align: left;
}

.promise-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.promise-card ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.promise-card li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-light);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promise-card li:last-child {
    border-bottom: none;
}

.promise-card li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.info-note {
    margin-top: 50px;
    padding: 35px 30px;
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
    color: var(--text-light);
}

.info-note.center {
    text-align: center;
}

.info-note h3 {
    margin: 0;
    text-align: center;
    font-size: 1.35rem;
    color: var(--text-dark);
    letter-spacing: 0.4px;
}

.info-note strong {
    color: var(--text-dark);
}

.info-note ul {
    list-style: none;
    margin: 18px 0 0 0;
    padding: 0;
}

.info-note li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-note li:last-child {
    border-bottom: none;
}

.info-note li::before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.4rem;
    line-height: 1;
    margin-top: -2px;
}

.info-note a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.info-note a:hover {
    text-decoration: underline;
}

.contact-direct p {
    font-size: 1.1rem;
    margin: 12px 0;
}

.contact-direct p:first-of-type {
    margin-top: 18px;
    font-size: 1.2rem;
}

.contact-form-holder {
    max-width: 820px;
    margin: 0 auto;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(169, 60, 66, 0.85), rgba(36, 24, 24, 0.92));
    color: var(--white);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 55px rgba(0,0,0,0.45);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn.light {
    background: var(--white);
    color: #a93c42;
}

.cta-btn.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

.contact-form-wrapper {
    background: transparent;
}

.contact-form-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-form-subtitle {
    margin-top: -8px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.contact-info-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--gradient-gold);
    color: var(--white);
    flex-shrink: 0;
}

.contact-row h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-row p,
.contact-row a {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-row a {
    font-weight: 600;
}

.contact-connect {
    margin-top: 40px;
    padding: 35px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
}

.contact-connect h4 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-connect .connect-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-connect .connect-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-connect .connect-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.pricing-table-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
}

.pricing-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light);
}

.pricing-table thead {
    background: rgba(36, 24, 24, 0.92);
    color: var(--text-dark);
}

.pricing-table th,
.pricing-table td {
    padding: 22px;
    text-align: left;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
    text-align: center;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
    text-align: right;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-soft);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table .price-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.connect-zalo {
    background: linear-gradient(135deg, #0091ff, #00c7ff);
}

.connect-facebook {
    background: linear-gradient(135deg, #2A52FF, #1B3983);
}

.map-section {
    padding: 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.map-embed {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-soft);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Fleet Section */
.fleet-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Khi chỉ có 1 fleet card, center và rộng ra */
.fleet-grid.single-fleet {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cải thiện fleet card khi chỉ có 1 */
.fleet-grid.single-fleet .fleet-card {
    border-width: 4px;
}

.fleet-grid.single-fleet .fleet-image {
    height: 400px;
}

.fleet-grid.single-fleet .fleet-slider {
    height: 400px;
}

.fleet-grid.single-fleet .fleet-content {
    padding: 50px;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.5);
}

.fleet-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

/* Fleet Slider */
.fleet-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.fleet-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.fleet-slide.active {
    opacity: 1;
}

.fleet-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.fleet-slider-prev,
.fleet-slider-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--secondary-color);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.fleet-slider-prev:hover,
.fleet-slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}


.fleet-content {
    padding: 40px;
}

.fleet-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.fleet-content .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.fleet-content ul {
    list-style: none;
    margin: 30px 0;
}

.fleet-content ul.fleet-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 0;
}

.fleet-content .fleet-features-col {
    display: flex;
    flex-direction: column;
}

.fleet-content li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
}

.fleet-content li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Why Choose Us Section */
.why-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.feature-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

.feature-item h4 {
    font-size: 1.5rem;
    margin: 20px 0 15px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

.service-card h4 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

.service-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Khi chỉ có 1 card, center và giới hạn độ rộng */
.pricing-grid:has(> :only-child) {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Fallback cho trình duyệt không hỗ trợ :has() */
.pricing-grid.single-card {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Khi chỉ có 1 card, làm cho nó nổi bật hơn */
.pricing-grid.single-card .pricing-card {
    padding: 60px 50px;
    border-width: 4px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
    box-shadow: var(--shadow);
}

.pricing-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.5);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing-card .subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 30px 0;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}

.pricing-card li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    color: var(--text-dark);
}

.faq-question:hover {
    background: rgba(219, 199, 136, 0.15);
    color: var(--secondary-color);
}

.faq-item.active .faq-question {
    background: rgba(219, 199, 136, 0.22);
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

/* Contact Form */
.contact-section {
    padding: 100px 20px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-soft);
}

.contact-form {
    max-width: 700px;
    margin: 60px auto 0;
}

.contact-section .contact-form-box {
    max-width: 820px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(219, 199, 136, 0.08);
    color: var(--text-dark);
}

/* Select dropdown arrow customization */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 45px; /* Space for arrow */
    background-color: rgba(219, 199, 136, 0.08);
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M5 7l5 5 5-5" stroke="%23dbc788" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    cursor: pointer;
}

/* Select dropdown options background */
.form-group select option {
    background: var(--bg-card) !important;
    color: var(--text-dark) !important;
    padding: 10px;
}

.form-group select option:checked,
.form-group select option:hover {
    background: var(--bg-card-hover) !important;
    color: var(--secondary-color) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(219,199,136,0.18);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Footer */
#footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
}

.testimonials-slider {
    display: flex;
    position: relative;
    will-change: transform;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background: #2a2a2a;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .star {
    color: #666;
    font-size: 20px;
    margin-right: 3px;
}

.testimonial-rating .star.filled {
    color: #d4af37;
}

.testimonial-content {
    color: #e0e0e0;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author strong {
    color: #d4af37;
    font-size: 16px;
}

.testimonial-author span {
    color: #999;
    font-size: 14px;
}

.testimonials-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    padding: 0 20px;
}

.testimonials-slider-prev,
.testimonials-slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    color: #d4af37;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.testimonials-slider-prev:hover,
.testimonials-slider-next:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: scale(1.1);
}


/* Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-slide {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials-slider-nav {
        padding: 0 10px;
    }
    
    .testimonials-slider-prev,
    .testimonials-slider-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Responsive */
/* Small height screens */
@media (max-height: 800px) {
    .header-wrapper {
        padding: 8px 0;
    }
    
    .logo img {
        max-width: 50px;
    }
    
    nav a {
        padding: 4px 0;
        font-size: 0.85rem;
    }
    
    .header-wrapper .btn-primary {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* Laptop (1024px - 1366px) */
@media (max-width: 1366px) and (min-width: 1025px) {
    .header-wrapper {
        padding: 8px 0;
        gap: 10px;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo img {
        max-width: 50px;
    }
    
    nav {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 200px);
        overflow: hidden;
    }
    
    nav ul {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    nav li {
        flex-shrink: 1;
        min-width: 0;
    }
    
    nav a {
        font-size: 0.8rem;
        padding: 6px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-wrapper .btn-primary {
        padding: 8px 14px;
        font-size: 0.75rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 90px 20px 50px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 30px;
        margin-top: 50px;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .header-wrapper {
        padding: 8px 0;
        gap: 10px;
    }
    
    .logo img {
        max-width: 45px;
    }
    
    nav {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 180px);
        overflow: hidden;
    }
    
    nav ul {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    nav li {
        flex-shrink: 1;
        min-width: 0;
    }
    
    nav a {
        font-size: 0.75rem;
        padding: 6px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-wrapper .btn-primary {
        padding: 8px 12px;
        font-size: 0.7rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .hero {
        padding: 80px 20px 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 25px;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .fleet-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 8px 0;
    }
    
    .logo img {
        max-width: 40px;
    }
    
    .hero-features,
    .stats,
    .features-grid,
    .services-grid,
    .footer-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        margin: 30px 0 !important;
    }
    
    .hero-buttons .btn-primary {
        flex: 1;
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
        margin-right: 0 !important;
        text-align: center;
        white-space: nowrap;
    }
    
    /* Contact form - reduce padding and margin on tablet */
    .contact-form-box {
        padding: 20px 15px !important;
    }
    
    .contact-section .contact-form-box {
        max-width: 820px;
        margin: 0 auto;
    }
    
    .contact-form-box .wpcf7-form {
        padding: 10px !important;
    }
    
    .contact-form-box .wpcf7-form p {
        margin-bottom: 12px !important;
    }
    
    .contact-form-box .wpcf7-form input[type="text"],
    .contact-form-box .wpcf7-form input[type="email"],
    .contact-form-box .wpcf7-form input[type="tel"],
    .contact-form-box .wpcf7-form select,
    .contact-form-box .wpcf7-form textarea {
        padding: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .promise-card {
        padding: 30px 20px;
    }
    
    .info-note {
        padding: 25px 20px;
    }
    
    /* Container padding on mobile */
    .container {
        padding: 0 10px !important;
    }
    
    /* Pricing table - reduce padding on mobile */
    .services-section,
    .pricing-section {
        padding: 60px 15px !important;
    }
    
    .info-note {
        padding: 20px 15px !important;
        margin-top: 30px !important;
    }
    
    .info-note table {
        font-size: 0.9rem;
    }
    
    .info-note table th,
    .info-note table td {
        padding: 10px 8px !important;
        font-size: 0.85rem;
    }
    
    .info-note table th {
        padding: 12px 8px !important;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15,15,15,0.96);
        border: 1px solid var(--border-soft);
        box-shadow: 0 25px 45px rgba(0,0,0,0.45);
        padding: 20px;
        gap: 0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-soft);
    }
    
    nav a {
        padding: 15px 0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-card);
        margin-top: 5px;
        padding: 5px 0 5px 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    /* Submenu hidden by default on mobile */
    .menu-item-has-children .sub-menu {
        display: block !important;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    /* Submenu shown when active */
    .menu-item-has-children.active .sub-menu {
        max-height: 1000px;
        padding: 5px 0 5px 20px;
    }
    
    .sub-menu li {
        border: none;
    }
    
    .sub-menu a {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    /* Active state on mobile */
    nav li.active > a::after {
        display: none;
    }
    
    nav li.active > a {
        color: var(--secondary-color);
        font-weight: 700;
    }
    
    .sub-menu li.active > a {
        background: transparent;
        color: var(--secondary-color);
    }
    
    .menu-toggle {
        display: block !important;
        color: #fff !important;
    }
    
    .header-wrapper .btn-primary {
        display: none;
    }
    
    .fleet-content,
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 0 10px;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 70px 15px 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        margin: 25px 0 !important;
    }
    
    .hero-buttons .btn-primary {
        flex: 1;
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        margin-right: 0 !important;
        text-align: center;
        white-space: nowrap;
    }
    
    /* Contact form - reduce padding and margin on mobile */
    .contact-form-box {
        padding: 15px 12px !important;
    }
    
    .contact-section .contact-form-box {
        max-width: 820px;
        margin: 0 auto;
    }
    
    .contact-form-box .wpcf7-form {
        padding: 8px !important;
    }
    
    .contact-form-box .wpcf7-form p {
        margin-bottom: 10px !important;
    }
    
    .contact-form-box .wpcf7-form input[type="text"],
    .contact-form-box .wpcf7-form input[type="email"],
    .contact-form-box .wpcf7-form input[type="tel"],
    .contact-form-box .wpcf7-form select,
    .contact-form-box .wpcf7-form textarea {
        padding: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .contact-form-subtitle {
        margin-bottom: 15px !important;
    }
    
    /* Container padding on small mobile */
    .container {
        padding: 0 10px !important;
    }
    
    /* Pricing table - further reduce padding on small mobile */
    .services-section,
    .pricing-section {
        padding: 50px 10px !important;
    }
    
    .info-note table {
        font-size: 0.85rem;
    }
    
    .info-note table th,
    .info-note table td {
        padding: 8px 5px !important;
        font-size: 0.8rem;
    }
    
    .info-note table th {
        padding: 10px 5px !important;
    }
    
    .info-note {
        padding: 15px 10px !important;
        margin-top: 25px !important;
    }
    
    .hero-features {
        gap: 15px;
        margin-top: 30px;
    }
    
    .hero-feature {
        padding: 15px;
    }
    
    .hero-feature h3 {
        font-size: 1.1rem;
    }
    
    .hero-feature p {
        font-size: 0.85rem;
    }
}

/* ============================================
   ẨN NÚT EDIT MENU TRONG CUSTOMIZER PREVIEW
   ============================================ */
.customize-partial-edit-shortcut-menu-locations-primary,
.customize-partial-edit-shortcut-menu-locations,
.customize-partial-edit-shortcut-menu,
button.customize-partial-edit-shortcut-button,
.customize-partial-edit-shortcut,
[class*="customize-partial-edit-shortcut-nav_menu_instance"],
.customize-partial-edit-shortcut-nav_menu_instance-d66aca1320f2ed76a30611084a85e665 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Fixed Call Buttons */
.fixed-call-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-call-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.fixed-call-phone {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
}

.fixed-call-phone:hover {
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.fixed-call-zalo {
    background: #fff;
    padding: 8px;
}

.fixed-call-zalo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fixed-call-zalo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive for Fixed Call Buttons */
@media (max-width: 768px) {
    .fixed-call-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .fixed-call-btn {
        width: 50px;
        height: 50px;
    }
}

