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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    color: white;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo h2 {
    color: #254e90;
    font-size: 24px;
    font-weight: bold;
}
/* Logo images */
.logo img {
    width: 240px;
}

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

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: #254e90;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #254e90;
}

/* Sub-menu styles */
.nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.nav-list li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-list .sub-menu li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.nav-list .sub-menu li:last-child {
    border-bottom: none;
}

.nav-list .sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-list .sub-menu a:hover {
    background: #f8f9fa;
    color: #254e90;
    padding-left: 25px;
}

.menu-item-has-children {
	position: relative;
}
.sub-menu .menu-item {
	list-style: none;
}

/* Mobile sub-menu */
.mobile-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(34, 197, 94, 0.05);
    margin: 5px 0;
    border-radius: 5px;
}

.mobile-menu .sub-menu li {
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.mobile-menu .sub-menu a {
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
}

.mobile-menu .sub-menu a:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #254e90;
    padding-left: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #254e90;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-list {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #254e90 100%);
}

.slider-container {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4a9eff 0%, #4a9eff 100%);
}

/* Breadcrumbs (Rank Math) */
.breadcrumbs {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
.breadcrumbs a {
    color: #254e90;
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: #16a34a;
}

/* Slider Content Overlay */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(34, 197, 94, 0.5) 100%);
    z-index: 2;
}

.slide-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.slide-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #254e90 0%, #16a34a 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
    color: white;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.slide-btn:hover::before {
    left: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-text h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.slide-text p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.4);
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.6);
    color: white;
}

@media (max-width: 768px) {
    .slide-text h2 {
        font-size: 32px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .slide-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

.service-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.filter-tab {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background-color: #f9b000;
  border-color: #f9b000;
  color: #fff;
}

.loading {
  text-align: center;
  padding: 30px;
  font-style: italic;
  color: #777;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section:nth-child(even) {
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
}

.service-card,
.service-card h3,
.service-card p {
    text-decoration: none;
}

/* Ensure anchor cards never show underline in any state */
.service-card:link,
.service-card:visited,
.service-card:hover,
.service-card:active {
    text-decoration: none !important;
    color: inherit;
}

/* Extra guard: remove underline from any anchors inside services grid */
.services-grid a,
.services-grid a:visited,
.services-grid a:hover,
.services-grid a:active,
.services-grid a * {
    text-decoration: none !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: #254e90;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 20px;
    color: #333;
}

.service-description {
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 0px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #254e90;
    margin-right: 15px;
    font-size: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Fleet Section */
.fleet-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.fleet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #333;
}

.fleet-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* Service Details */
.service-details {
    padding: 80px 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Price Section */
.price-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.price-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

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

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.price-table th {
    background: #254e90;
    color: white;
    font-weight: 600;
}

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

.price-table td:last-child {
    font-weight: 600;
    color: #254e90;
}

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

.booking-content {
    text-align: center;
    margin: 0 auto;
}

.booking-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.booking-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    color: white;
}

.btn-secondary {
    background: #254e90;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.4);
}

.booking-features {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.booking-features h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
}

.booking-features ul {
    list-style: none;
}

.booking-features li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
}

.booking-features i {
    color: #4a9eff ;
    margin-right: 15px;
    font-size: 18px;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
}

.contact-card p {
    margin-bottom: 20px;
    color: #666;
    font-size: 18px;
}

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

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

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: #254e90;
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.news-card.featured .news-image {
    height: 100%;
}

.news-card.featured .news-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-image {
    position: relative;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #254e90;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h2,
.news-content h3 {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.news-content h2 {
    font-size: 28px;
}

.news-content h3 {
    font-size: 22px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #254e90;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #4a9eff;
}

/* ==== PHÂN TRANG HÌNH TRÒN ==== */
.pagination {
  text-align: center;
  margin: 30px 0;
}

.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Nút chung */
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #fff;
	line-height: 1;
}

/* Trang hiện tại */
.pagination .page-numbers.current {
  background-color: #f9b000;
  border-color: #f9b000;
  color: #fff;
}

/* Hover */
.pagination .page-numbers:hover {
  background-color: #f9b000;
  border-color: #f9b000;
  color: #fff;
}

/* Nút prev / next */
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
  font-size: 14px;
}

/* Đảm bảo icon ở giữa */
.pagination .prev.page-numbers i,
.pagination .next.page-numbers i {
  line-height: 1;
}

/* Mobile */
@media (max-width: 480px) {
  .pagination .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #666;
    font-size: 16px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #333;
}

.article-body h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #333;
}

.article-body p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

.article-body strong {
    color: #333;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box a {
    color: #254e90;
    text-decoration: none;
}

.article-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #e9ecef;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
}

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

.area-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.area-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: #254e90;
    margin-bottom: 20px;
    font-size: 24px;
}
/* Footer logo image */
.footer-logo img {
    height: 60px;
	filter: brightness(0) invert(1);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #254e90;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4a9eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Fixed Contact Buttons */
.fixed-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 12px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.phone-btn {
    background: #254e90;
}

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

.contact-text {
    margin-top: 2px;
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #254e90;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #4a9eff;
    transform: translateY(-3px);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hover Effects */
.service-card:hover img,
.fleet-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #254e90;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .article-header h1 {
        font-size: 36px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-body {
        padding: 25px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .no-services-content,
    .no-posts-content {
        padding: 20px;
    }
    
    .no-services-content i,
    .no-posts-content i {
        font-size: 36px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .fixed-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .hero-slider {
        height: 175px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .about-content,
    .fleet-section,
    .service-details,
    .price-section,
    .booking-section,
    .quick-contact,
    .news-section,
    .article-content {
        padding: 00px 0;
    }
    
    .service-card h3,
    .feature-card h3,
    .fleet-card h3,
    .contact-card h3,
    .area-card h3 {
        font-size: 18px;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-body {
        padding: 20px;
    }
    
    .article-body h2 {
        font-size: 24px;
    }
    
    .article-body h3 {
        font-size: 20px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 10px;
    }
    
    .contact-text {
        font-size: 10px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .fixed-contact,
    .scroll-to-top,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-slider {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .service-card,
    .feature-card,
    .fleet-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Featured Services Section */
.featured-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #254e90;
    
}

.service-content .service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
	font-weight: 400;
}

.service-content .service-description li {
	padding-left: 20px;
	position: relative;
}
.service-content .service-description li:before {
  content: "\f058"; /* Mã icon check-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* Bắt buộc để hiện icon solid */
  position: absolute;
  left: 0;
  top: 3px;
  color: #2ecc71; /* Màu xanh lá dễ nhìn */
  font-size: 14px;
}
.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
}

.service-features i {
    color: #10b981;
    margin-right: 10px;
    font-size: 14px;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 120, 255, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 120, 255, 0.4);
    color: white;
}

/* Additional Services Section */
.additional-services {
    padding: 80px 0;
    background: white;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-service-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.additional-service-card:hover {
    background: white;
    border-color: #254e90;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.additional-service-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #254e90;
    margin-bottom: 15px;
}

.additional-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.highlight {
    background: #e0f2fe;
    color: #0369a1;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-link {
    color: #254e90;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #4a9eff;
    gap: 12px;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    color: white;
}

.service-areas .section-title {
    color: white;
}

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

.area-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.area-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.area-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.area-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    font-size: 14px;
}

/* About Us Section */
.about-us {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2322c55e" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.about-features {
    margin: 20px 0;
}
.about-features {
	display: flex;
}
.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
    flex-direction: column;
}

.about-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: #254e90;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}
.about-feature .feature-content {
	text-align: center;
}
.about-feature .feature-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-feature .feature-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 32px;
    color: #254e90;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #254e90;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Booking Form Section */
.booking-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #254e90 0%, #4a9eff 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.booking-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.booking-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.booking-features {
    margin-top: 30px;
}

.booking-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.booking-feature i {
    color: #254e90;
    font-size: 18px;
}

.booking-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #254e90;
}

.submit-btn {
    background: #254e90;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #254e90 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-title.white-color,
.section-subtitle.white-color{
	color: #fff;
}
.section-subtitle.white-color
.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-choose-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.why-choose-item:hover::before {
    left: 100%;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.why-choose-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.why-choose-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Showcase */
.services-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-actions {
    text-align: center;
    margin-top: 40px;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-content {
    padding: 30px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
}

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

.pricing-list .distance {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.pricing-list .price {
    font-weight: 700;
    color: #28a745;
    font-size: 18px;
}

.pricing-list .special-note {
    background: #fff3cd;
    color: #856404;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 10px 0;
    font-weight: 600;
    font-size: 14px;
    border-left: 4px solid #ffc107;
    display: block;
    justify-content: unset;
}

.pricing-list .note {
    color: #6c757d;
    font-size: 14px;
    font-style: italic;
    display: block;
    justify-content: unset;
    padding: 8px 0;
}

.pricing-disclaimer {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.disclaimer-content i {
    color: #1976d2;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.disclaimer-content p {
    margin: 0;
    color: #1565c0;
    line-height: 1.6;
}

.pricing-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pricing-cta .btn-primary,
.pricing-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.pricing-cta .btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.pricing-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.pricing-cta .btn-secondary {
    background: linear-gradient(135deg, #0068ff 0%, #4dabf7 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 104, 255, 0.3);
}

.pricing-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 104, 255, 0.4);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        margin: 0 10px;
    }
    
    .pricing-content {
        padding: 20px;
    }
    
    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pricing-list .price {
        font-size: 16px;
    }
    
    .disclaimer-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-cta .btn-primary,
    .pricing-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #254e90;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: #254e90;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #254e90;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

.blog-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #254e90;
    padding: 15px 30px;
    border: 2px solid #254e90;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #254e90;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #254e90 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0,20 Q10,0 20,20 T40,20" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #254e90;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Service Card Enhancements */
.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-thumbnail {
    transform: scale(1.05);
}

.service-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #254e90;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-content {
    padding: 20px;
}

.service-meta {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.service-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-price {
  font-weight: 700;
  color: #e60000;
	font-size: 18px;
}

.service-price .unit {
  font-size: 0.9em;
  color: #555;
  margin-left: 2px;
	font-weight:400;
}
.service-price.contact {
	  color: #007bff;
  font-style: italic;
}

/* News Card Enhancements */
.news-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-thumbnail {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #254e90;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* No Content States */
.no-services,
.no-posts {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.no-services-content,
.no-posts-content {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-services-content i,
.no-posts-content i {
    font-size: 48px;
    color: #254e90;
    margin-bottom: 20px;
}

.no-services-content h3,
.no-posts-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.no-services-content p,
.no-posts-content p {
    color: #666;
    margin-bottom: 25px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .featured-services,
    .additional-services,
    .service-areas {
        padding: 60px 0;
    }
    
    .featured-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .featured-service-card,
    .additional-service-card,
    .area-card {
        margin-bottom: 20px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3,
    .additional-service-card h3 {
        font-size: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
	.top-bar {
		display: none;
	}
	.cta-content h2 {
		font-size: 2em;
	}
}
.services-archive {
	padding: 30px 0;
}

.booking-contact ul{
	list-style: none;
	text-align: start;
}

.booking-contact ul li {
	margin-bottom: 10px;
}
.booking-contact ul li i {
	margin-right: 5px;
}

* Contact Page Styles */
.page-header {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #254e90 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-info-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: #254e90;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #254e90 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-details p {
    color: #666;
    margin-bottom: 10px;
}

.contact-details p a {
    color: #254e90;
    text-decoration: none;
    font-weight: 600;
}

.contact-details p a:hover {
    color: #16a34a;
}

.contact-details small {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.contact-form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #254e90;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #254e90 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-loading {
    display: none;
}

.contact-submit.loading .btn-loading {
    display: inline-block;
}

.contact-submit.loading span {
    display: none;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-map,
.contact-social,
.quick-contact {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.contact-map h3,
.contact-social h3,
.quick-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-social .social-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-social .social-links a:hover {
    background: #254e90;
    color: white;
    transform: translateX(5px);
}

.contact-social .social-links a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-btn {
    background: #254e90;
    color: white;
}

.phone-btn:hover {
    background: #16a34a;
    color: white;
}

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

.zalo-btn:hover {
    background: #0052cc;
    color: white;
}

.email-btn {
    background: #f8f9fa;
    color: #333;
    border-color: #e5e7eb;
}

.email-btn:hover {
    background: #e5e7eb;
    color: #333;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 350px;
    word-wrap: break-word;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.notification-success {
    background: linear-gradient(135deg, #254e90 0%, #16a34a 100%);
}

.notification-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.notification-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.notification-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #254e90;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
    transition: top 0.3s;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}


.taxi-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 30px;
  margin: 0 auto;
}

.taxi-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.taxi-form input[type="text"],
.taxi-form input[type="tel"],
.taxi-form input[type="email"],
.taxi-form select,
.taxi-form textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.taxi-form input:focus,
.taxi-form select:focus,
.taxi-form textarea:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 2px rgba(0,122,255,0.1);
  outline: none;
}

.taxi-form select {
  appearance: none;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="%23007aff" height="24" viewBox="0 0 24 24" width="24"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.taxi-form textarea {
  min-height: 100px;
  resize: vertical;
}

.tf-row.tf-2col {
  display: flex;
  gap: 20px;
	margin-bottom: 20px;
}

.tf-row.tf-2col .tf-field {
  flex: 1;
}

.taxi-form .tf-checkbox {
  font-size: 14px;
  margin-top: 10px;
}

.taxi-form .tf-checkbox a {
  color: #007aff;
  text-decoration: underline;
}

.taxi-form .tf-submit {
  display: inline-block;
  background: linear-gradient(90deg, #0047FF, #02C39A);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 42px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.taxi-form .tf-submit:hover {
  opacity: 0.9;
}

.tf-submit-wrap {
  text-align: center;
  margin-top: 20px;
}
@media(max-width:768px) {
	.contact-form-grid {
		    grid-template-columns: 1fr;
	}
}