/* ===== LOCAL FONTS (@font-face) ===== */
/*
 * Be Vietnam Pro – 3 weights loaded từ file TTF local
 *   regular  → weight 300, 400, 500  (browser dùng regular cho các weight nhỏ)
 *   semibold → weight 600
 *   bold     → weight 700, 800       (browser dùng bold cho weight 800 – faux-bold)
 *
 * Montserrat Black – weight 900 (dùng cho heading H1/H2)
 *
 * font-display: swap  → hiển thị fallback ngay, swap khi font load xong
 * format('truetype')  → TTF – hỗ trợ toàn bộ trình duyệt hiện đại
 */

/* Be Vietnam Pro – Regular (300 / 400 / 500) */
@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('bevietnampro-regular.ttf') format('truetype');
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

/* Be Vietnam Pro – SemiBold (600) */
@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('bevietnampro-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Be Vietnam Pro – Bold (700 / 800) */
@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('bevietnampro-bold.ttf') format('truetype');
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

/* Montserrat – Black (900) */
@font-face {
  font-family: 'Montserrat';
  src: url('montserrat-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #e8290b;
  --primary-dark: #c41f00;
  --primary-light: #ff4726;
  --secondary: #1a1a2e;
  --accent: #f5a623;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #eeeeee;
  --gray-400: #999999;
  --gray-600: #555555;
  --gray-800: #222222;
  --text: #2d2d2d;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 6px;
  --font: 'Be Vietnam Pro', sans-serif;
  --header-bg: #ffffff;
  --header-border: #e8e8e8;
  --header-shadow: 0 2px 16px rgba(0,0,0,0.08);
  --nav-text: #2d2d2d;
  --footer-bg: #f5f5f5;
  --footer-border: #e0e0e0;
  --footer-text: #555555;
  --footer-heading: #1a1a2e;
  --footer-link: #666666;
  --footer-bottom-bg: #eaeaea;
  --footer-bottom-text: #888888;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
}
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.logo img { height: 54px; width: auto; border-radius: 8px; }
.logo-text {
  font-size: 1.3rem; font-weight: 800; color: #fff;
  background: var(--primary); padding: 8px 16px; border-radius: 8px;
}
.main-nav { flex: 1; }
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  color: var(--nav-text); font-weight: 600; font-size: 0.88rem;
  padding: 8px 14px; border-radius: var(--radius-sm); display: block;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { background: var(--primary); color: #fff; }
.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 10px 20px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  white-space: nowrap; transition: background 0.2s, transform 0.2s;
  animation: pulse-call 2s infinite;
}
.btn-call:hover { background: var(--primary-dark); transform: scale(1.04); }
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,41,11,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(232,41,11,0); }
}
.menu-toggle {
  display: none; background: none; border: 2px solid var(--header-border);
  color: var(--nav-text); font-size: 1.4rem; padding: 6px 12px;
  cursor: pointer; border-radius: var(--radius-sm); transition: border-color 0.2s;
}
.menu-toggle:hover { border-color: var(--primary); color: var(--primary); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--header-bg); border-left: 1px solid var(--header-border);
  z-index: 2000; transition: right 0.3s ease; overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner { padding: 20px; }
.close-btn {
  background: none; border: none; color: var(--nav-text);
  font-size: 1.5rem; cursor: pointer; float: right; margin-bottom: 20px;
}
.close-btn:hover { color: var(--primary); }
.mobile-nav ul { clear: both; }
.mobile-nav ul li a {
  display: block; color: var(--nav-text); padding: 14px 10px;
  border-bottom: 1px solid var(--header-border);
  font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav ul li a:hover { color: var(--primary); padding-left: 16px; }
.mobile-nav ul li a.mobile-call {
  background: var(--primary); color: #fff; border-radius: 8px;
  text-align: center; margin-top: 15px; font-weight: 700; font-size: 1rem;
  border-bottom: none; padding-left: 10px;
}
.mobile-nav ul li a.mobile-call:hover { background: var(--primary-dark); padding-left: 10px; }
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1999;
}
.overlay.show { display: block; }

/* ===== HERO BANNER ===== */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide { position: relative; display: none; }
.hero-slide.active { display: block; }
.hero-slide img { width: 100%; height: 420px; object-fit: cover; filter: brightness(0.6); }
.hero-content {
  position: absolute; top: 65%; left: 50%;
  transform: translate(-50%, -50%); text-align: center; color: #fff; width: 90%;
}
.hero-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem); font-weight: 900;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5); margin-bottom: 8px;
}
.hero-content h3 {
  font-size: clamp(0.95rem, 2.5vw, 1.3rem);
  font-weight: 400; margin-bottom: 5px; opacity: 0.9;
}
.btn-book {
  display: inline-block; background: var(--primary); color: #fff;
  padding: 9px 18px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(232,41,11,0.4); transition: all 0.2s;
}
.btn-book:hover { background: var(--primary-dark); transform: translateY(-2px); }
.slider-dots {
  position: absolute; bottom: 9px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s;
}
.dot.active { background: var(--primary); }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-alt { background: var(--gray-100); }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900;
  color: var(--secondary); position: relative; display: inline-block; padding-bottom: 14px;
}
.section-title h2::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 60px; height: 4px;
  background: var(--primary); border-radius: 2px;
}
.section-title p { color: var(--gray-600); margin-top: 10px; font-size: 0.95rem; }

/* ===== SECTION DARK (Cam kết) ===== */
.section-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
}
.section-dark .section-title h2 { color: #fff; }
.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.commit-item { text-align: center; padding: 16px 12px; }
.commit-item .commit-icon { font-size: 2rem; margin-bottom: 8px; }
.commit-item h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.commit-item p { font-size: 0.82rem; color: #aaa; }

/* ===== SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.cards-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 16px; text-align: center; }
.card-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.card-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.card-badge {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; margin-bottom: 8px; letter-spacing: 0.5px;
}
.card-link {
  display: block; text-align: center; padding: 8px;
  background: var(--gray-100); color: var(--primary); font-weight: 600;
  font-size: 0.85rem; margin-top: 10px; border-radius: var(--radius-sm); transition: background 0.2s;
}
.card-link:hover { background: var(--primary); color: #fff; }

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; text-align: center;
}
.process-step { position: relative; }
.step-icon {
  width: 60px; height: 60px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(232,41,11,0.3);
}
.process-step h3 { font-weight: 700; font-size: 0.9rem; color: var(--secondary); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--gray-600); }

/* ===== PAGE LAYOUT & SIDEBAR ===== */
.page-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 40px; align-items: start; padding: 40px 0;
}
.sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 20px;
}
.sidebar-header { background: var(--primary); color: #fff; padding: 16px 20px; font-weight: 700; font-size: 1rem; }
.sidebar-body { padding: 20px; }
.address-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; color: var(--gray-600); }
.address-item strong { color: var(--text); }
.sidebar-cta { display: flex; flex-direction: column; gap: 10px; }
.btn-sidebar-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 14px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem;
  animation: pulse-call 2s infinite; transition: background 0.2s;
}
.btn-sidebar-call:hover { background: var(--primary-dark); }
.btn-sidebar-zalo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #0068ff; color: #fff; padding: 12px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; transition: background 0.2s;
}
.btn-sidebar-zalo:hover { background: #0050cc; }
.vehicle-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.vehicle-tag {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  padding: 6px 12px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; color: var(--secondary); cursor: pointer; transition: all 0.2s;
}
.vehicle-tag:hover,
.vehicle-tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== PAGE TITLE ===== */
.page-title-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
  padding: 40px 0; color: #fff; text-align: center;
}
.page-title-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 8px;
}
.page-title-section p { font-size: 1rem; opacity: 0.8; }

/* ===== PRICE TABLE ===== */
.price-table-wrapper {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.price-table { width: 100%; border-collapse: collapse; table-layout: fixed; background: #fff; }
.page-layout main { min-width: 0; overflow: hidden; }
.price-table thead { background: var(--primary); color: #fff; }
.price-table thead th {
  padding: 14px 16px; font-weight: 700; font-size: 0.88rem;
  text-align: left; white-space: nowrap;
}
.price-table tbody tr { border-bottom: 1px solid var(--gray-200); transition: background 0.15s; }
.price-table tbody tr:hover { background: #fff5f4; }
.price-table tbody td { padding: 11px 16px; font-size: 0.88rem; }
.price-table .group-header { background: var(--secondary); color: #fff; font-weight: 700; font-size: 0.88rem; }
.price-highlight { font-weight: 700; color: var(--primary); }
.table-note {
  background: #fff8e6; border-left: 4px solid var(--accent);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 20px; font-size: 0.88rem;
}
.table-note ul { margin-top: 8px; padding-left: 16px; list-style: disc; }
.table-note ul li { margin-bottom: 4px; }
.table-note p { margin-top: 8px; }

/* ===== TD LABEL (limo info tables) ===== */
.price-table tbody td.td-label {
  font-weight: 700;
  background: var(--gray-100);
  width: 35%;
  vertical-align: top;
}

/* ===== SECTION HEADING (limo page subheadings) ===== */
.section-heading {
  font-size: 1.2rem; font-weight: 800; color: var(--primary);
  padding: 14px 20px; background: #fff5f4;
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0; margin-bottom: 20px;
}

/* ===== SEARCH INPUT ===== */
.search-wrap { margin-bottom: 16px; }
.table-search-input {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-200); border-radius: 8px;
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.table-search-input:focus { border-color: var(--primary); }

/* ===== CONTENT WRAPPERS ===== */
.content-section { margin-top: 24px; }
.content-section-lg { margin-top: 30px; }

/* ===== BANNER THUMBNAILS ===== */
.banner-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 30px;
}
.banner-row img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
  cursor: pointer; transition: transform 0.3s;
}
.banner-row img:hover { transform: scale(1.02); }

/* ===== FLOAT BUTTONS ===== */
.float-contact { position: fixed; bottom: 33%; left: 33px; z-index: 999999; }
.r {
  border-radius: 100%; position: absolute;
  animation: rr 1.2s infinite ease-in-out;
}
@keyframes rr {
  0%   { transform: rotate(0) scale(0.5) skew(1deg); opacity: 0.1; }
  50%  { transform: rotate(0) scale(0.7) skew(1deg); opacity: 0.5; }
  100% { transform: rotate(0) scale(1)   skew(1deg); opacity: 0.1; }
}
@-webkit-keyframes rr {
  0%   { -webkit-transform: rotate(0) scale(0.5) skew(1deg); opacity: 0.1; }
  50%  { -webkit-transform: rotate(0) scale(0.7) skew(1deg); opacity: 0.5; }
  100% { -webkit-transform: rotate(0) scale(1)   skew(1deg); opacity: 0.1; }
}
.h {
  border-radius: 100%; position: absolute;
  animation: hh 1.2s infinite ease-in-out;
  border: 2px solid transparent; display: flex; align-items: center; justify-content: center;
}
@keyframes hh {
  0%  { transform: rotate(0)     scale(1) skew(1deg); }
  10% { transform: rotate(-25deg) scale(1) skew(1deg); }
  20% { transform: rotate(25deg)  scale(1) skew(1deg); }
  30% { transform: rotate(-25deg) scale(1) skew(1deg); }
  40% { transform: rotate(25deg)  scale(1) skew(1deg); }
  50% { transform: rotate(0)     scale(1) skew(1deg); }
}
@-webkit-keyframes hh {
  0%  { -webkit-transform: rotate(0)     scale(1) skew(1deg); }
  10% { -webkit-transform: rotate(-25deg) scale(1) skew(1deg); }
  20% { -webkit-transform: rotate(25deg)  scale(1) skew(1deg); }
  30% { -webkit-transform: rotate(-25deg) scale(1) skew(1deg); }
  40% { -webkit-transform: rotate(25deg)  scale(1) skew(1deg); }
  50% { -webkit-transform: rotate(0)     scale(1) skew(1deg); }
}
/* Float ring sizes */
.r-outer-phone { width:73px; height:73px; top:14px;  left:-10px; border:3px solid #FF3B30; }
.r-inner-phone { width:55px; height:55px; top:23px;  left:-1px;  border:2px solid #FF3B30; }
.h-phone       { width:33px; height:33px; top:34px;  left:10px;  }
.r-outer-sms   { width:73px; height:73px; top:83px;  left:-10px; border:3px solid #288EF7; }
.r-inner-sms   { width:55px; height:55px; top:92px;  left:-1px;  border:2px solid #288EF7; }
.h-sms         { width:33px; height:33px; top:103px; left:10px;  }
.r-outer-zalo  { width:73px; height:73px; top:152px; left:-10px; border:3px solid #0E3BC4; }
.r-inner-zalo  { width:55px; height:55px; top:161px; left:-1px;  border:2px solid #0E3BC4; }
.h-zalo        { width:33px; height:33px; top:172px; left:10px;  }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg); color: var(--footer-text);
  border-top: 1px solid var(--footer-border); padding: 50px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-col h3 {
  color: var(--footer-heading); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--primary); display: inline-block;
}
.footer-col p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 6px; color: var(--footer-text); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--footer-link); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact a { color: var(--primary); font-weight: 600; }
.footer-contact a:hover { color: var(--primary-dark); }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.service-tags span {
  background: #e8e8e8; color: #555; font-size: 0.75rem;
  padding: 4px 10px; border-radius: 50px;
}
.footer-bottom {
  border-top: 1px solid var(--footer-border); background: var(--footer-bottom-bg);
  padding: 16px 20px; text-align: center;
  font-size: 0.82rem; color: var(--footer-bottom-text);
}
.footer-bottom a { color: var(--primary); font-weight: 600; }

/* ===== FOOTER CTA FORM ===== */
.footer-cta > p { font-size:.85rem; color:#e0f0ff; margin-bottom:12px; font-weight:600; }
.footer-form { display:flex; flex-direction:row; gap:8px; align-items:stretch; }
.footer-form-left { display:flex; flex-direction:column; gap:8px; flex:1; min-width:0; }
.btn-footer-submit {
  width:auto; flex-shrink:0; padding:6px 12px;
  background:linear-gradient(135deg,#f5a623,#e8880a);
  color:#fff; font-weight:800; font-size:.65rem; letter-spacing:.01em;
  border:none; border-radius:9px; cursor:pointer;
  transition:opacity .2s,transform .15s,box-shadow .2s;
  font-family:inherit; box-shadow:0 3px 10px rgba(245,166,35,.4);
  line-height:1.5; text-align:center; align-self:stretch;
}
.footer-input-wrap { display:flex; flex-direction:column; gap:3px; }
.footer-input-group { position:relative; display:flex; align-items:center; }
.footer-input-group input {
  width:100%; padding:12px 12px 12px 38px; border-radius:9px;
  border:2px solid #1a6fd4; background:#1565C0; color:#fff;
  font-size:16px; font-family:inherit; outline:none;
  transition:border-color .2s,background .2s,box-shadow .2s;
  box-sizing:border-box; box-shadow:0 2px 8px rgba(0,0,0,.25);
}
.footer-input-group input::placeholder { color:rgba(255,255,255,.65); }
.footer-input-group input:focus { border-color:#64b5f6; background:#1976D2; box-shadow:0 0 0 3px rgba(100,181,246,.3); }
.footer-input-group input.f-error { border-color:#ff5252!important; background:#b71c1c!important; }
.footer-input-group input.f-valid { border-color:#69f0ae!important; }
.footer-input-hint { font-size:.72rem; color:#ff8a80; padding-left:4px; display:none; }
.footer-input-hint.show { display:block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .btn-call { display: none; }
  .menu-toggle { display: block; }
  .header-inner { justify-content: space-between; }
  .hero-slide img { height: 280px; }
  .page-layout { grid-template-columns: 1fr; padding: 20px 0; }
  .sidebar { position: static; }
  .banner-row { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4col { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .commit-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 14px; }
  .price-table-wrapper { border-radius: 8px; box-shadow: none; }
  .price-table { table-layout: auto; }
  .price-table thead th { padding: 10px 8px; font-size: 0.78rem; white-space: normal; }
  .price-table tbody td { padding: 8px; font-size: 0.78rem; word-break: break-word; }
  .price-table .group-header td { font-size: 0.78rem; padding: 8px; }
  .price-table tbody tr td:first-child { width: 38%; font-size: 0.78rem; }
  .price-table.hide-col-2 tbody td:nth-child(2),
  .price-table.hide-col-2 thead th:nth-child(2) { display: none; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4col { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slide img { height: 220px; }
  .container { padding: 0 12px; }
  .price-table thead th,
  .price-table tbody td,
  .price-table .group-header td { font-size: 0.73rem; padding: 7px 6px; }
  .page-title-section h1 { font-size: 1.2rem; }
  .page-title-section p  { font-size: 0.82rem; }
}

/* ===== UTILITY CLASSES (from new design) ===== */
a {
    text-decoration: none; }
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem; }
:root {
  --primary: #3b82f6;
  --secondary: #f59e0b;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black-40: rgba(0, 0, 0, 0.4);
  --primary-5: rgba(59, 130, 246, 0.05);
  --primary-10: rgba(59, 130, 246, 0.1);
  --primary-20: rgba(59, 130, 246, 0.2);
  --primary-90: rgba(59, 130, 246, 0.9); }
*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb; }
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth; }
body {
  margin: 0;
  line-height: inherit; }
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle; }
img, video {
  max-width: 100%;
  height: auto; }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-white { background-color: var(--white); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/5 { background-color: var(--primary-5); }
.bg-primary\/10 { background-color: var(--primary-10); }
.bg-transparent { background-color: transparent; }
.bg-black\/40 { background-color: var(--black-40); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-800 { color: var(--gray-800); }
.text-white { color: var(--white); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-primary { color: var(--primary); }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.font-sans { font-family: ui-sans-serif, system-ui, -apple-system, sans-serif; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.whitespace-nowrap { white-space: nowrap; }
.container { width: 100%; margin-right: auto; margin-left: auto; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mr-4 { margin-right: 1rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.p-2 { padding: 0.5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-10 { padding-right: 2.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.py-\[12px\] { padding-top: 12px; padding-bottom: 12px; }
.py-\[24px\] { padding-top: 24px; padding-bottom: 24px; }
.h-\[500px\] { height: 500px; }
.-mt-10 { margin-top: -2.5rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-48 { height: 12rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-white { border-color: #fff; }
.border-gray-300 { border-color: var(--gray-300); }
.border-gray-800 { border-color: var(--gray-800); }
.border-t { border-top-width: 1px; }
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-button { border-radius: 8px; } 
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.left-1\/2 { left: 50%; }
.top-1\/4 { top: 25%; }
.bottom-14 { bottom: 3.5rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.appearance-none { -webkit-appearance: none; appearance: none; }
.transition-colors { transition-property: background-color, border-color, color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-500 { transition-duration: 500ms; }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:bg-primary\/90:hover { background-color: var(--primary-90); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary-20); }
.focus\:border-primary:focus { border-color: var(--primary); }
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-left { text-align: left; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:mt-10 { margin-top: 2.5rem; }
  .md\:-mt-10 { margin-top: -2.5rem; }
  .md\:left-4 { left: 1rem; }
  .md\:-translate-x-0 { transform: translateX(0); } }
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
