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

:root {
  --orange: #E94560;
  --orange-dk: #C42D48;
  --blue: #0F3460;
  --blue-dk: #0A2448;
  --dark: #0A1628;
  --text: #1E2A3B;
  --muted: #5A6B7B;
  --light: #F0F4F8;
  --white: #ffffff;
  --border: #DDE4EE;
  --gold: #F7B731;
  --shadow-sm: 0 2px 8px rgba(15, 52, 96, .10);
  --shadow: 0 4px 20px rgba(15, 52, 96, .14);
  --shadow-lg: 0 8px 40px rgba(15, 52, 96, .20);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-label {
  display: inline-block;
  background: rgba(233, 69, 96, .1);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

/* ============================================================
   FLOATING BUTTONS (Phone + Zalo)
============================================================ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .28);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, .5);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

.float-btn-phone {
  background: linear-gradient(135deg, #E94560, #C42D48);
  animation: ring 2.5s infinite;
}

.float-btn-zalo {
  background: linear-gradient(135deg, #0068ff, #0052cc);
}

.float-btn-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.float-btn:hover .float-btn-label {
  opacity: 1;
}

@keyframes ring {
  0%, 100% { transform: scale(1) rotate(0); }
  10%, 30% { transform: scale(1.06) rotate(-8deg); }
  20%, 40% { transform: scale(1.06) rotate(8deg); }
  50% { transform: scale(1) rotate(0); }
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--dark);
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.header-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.header-brand {
  display: flex;
  flex-direction: column;
}

.header-brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.header-brand-name span {
  color: var(--orange);
}

.header-brand-tag {
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .05em;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  letter-spacing: .03em;
  transition: background .2s;
}

.header-phone:hover {
  background: var(--orange-dk);
}

.header-phone i {
  font-size: .9rem;
}

.header-zalo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0068ff;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  transition: background .2s;
}

.header-zalo:hover {
  background: #0052cc;
}

@media (max-width: 600px) {
  .header-zalo {
    display: none;
  }

  .header-phone {
    font-size: .9rem;
    padding: 8px 14px;
  }

  .header-brand-name {
    font-size: .95rem;
  }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: .35;
  filter: blur(1px);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      rgba(10, 22, 40, .92) 0%,
      rgba(10, 22, 40, .7) 55%,
      rgba(15, 52, 96, .3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 69, 96, .18);
  border: 1px solid rgba(233, 69, 96, .4);
  color: #FFB3BD;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
}

.hero-feature i {
  color: #4cdc7a;
  font-size: 1rem;
}

.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.hero-price-tag .price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #F7B731;
}

.hero-price-tag .price-note {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 10px;
  letter-spacing: .03em;
  box-shadow: 0 4px 20px rgba(233, 69, 96, .45);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-call:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 69, 96, .55);
}

.btn-call i {
  font-size: 1rem;
}

.btn-zalo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background .2s, border-color .2s;
}

.btn-zalo:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .8);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  font-size: 1.3rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 600px) {
  .btn-call {
    font-size: 1rem;
    padding: 14px 22px;
  }

  .btn-zalo {
    font-size: .9rem;
    padding: 12px 20px;
  }
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--orange);
  padding: 20px 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}

.trust-item {
  padding: 8px;
}

.trust-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .85);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .trust-num {
    font-size: 1.4rem;
  }
}

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}

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

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(233, 69, 96, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--orange);
  transition: background .25s, color .25s;
}

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

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-price {
  display: inline-block;
  margin-top: 14px;
  background: rgba(233, 69, 96, .1);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why {
  background: var(--light);
}

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

.why-text-col .section-sub {
  margin-bottom: 36px;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  margin-top: 2px;
}

.why-item-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.why-item-desc {
  font-size: .82rem;
  color: var(--muted);
}

.why-img-col {
  position: relative;
}

.why-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-img-grid img:first-child {
  grid-column: span 2;
  height: 240px;
}

@media (max-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-img-col {
    order: -1;
  }
}

@media (max-width: 500px) {
  .why-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GALLERY
============================================================ */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: #eee;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s, filter .4s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.85);
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .65));
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 24px 12px 10px;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
}

.gallery-item.large img {
  height: 300px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICE AREAS
============================================================ */
.areas {
  background: var(--dark);
  padding: 55px 0;
}

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

.areas .section-sub {
  color: rgba(255, 255, 255, .65);
}

.areas-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.areas-city {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
}

.areas-arrow {
  color: var(--orange);
  font-size: 1.6rem;
}

.areas-districts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .2s;
}

.area-tag i {
  color: var(--orange);
  font-size: .8rem;
}

.area-tag:hover {
  background: rgba(255, 255, 255, .13);
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews {
  background: var(--light);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 4rem;
  color: rgba(233, 69, 96, .15);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  color: #F7B731;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: .92rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.review-name {
  font-weight: 700;
  color: var(--dark);
  font-size: .9rem;
}

.review-location {
  font-size: .8rem;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 50px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  transition: background .2s;
  user-select: none;
}

.faq-q:hover {
  background: var(--light);
}

.faq-q-text {
  font-weight: 700;
  color: var(--dark);
  font-size: .95rem;
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(233, 69, 96, .1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #C42D48 100%);
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: var(--orange);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  padding: 20px 40px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  transition: transform .2s;
  letter-spacing: .03em;
}

.cta-phone-big:hover {
  transform: scale(1.03);
}

.cta-phone-big i {
  font-size: 1.4rem;
  color: var(--orange);
}

.cta-note {
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  margin-top: 18px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-wrap img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
}

.footer-brand-name span {
  color: var(--orange);
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--orange);
  width: 18px;
}

.footer-col-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-links a i {
  font-size: .6rem;
  color: var(--orange);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   FADE-IN ANIMATION (scroll)
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MOBILE – tổng hợp (max-width: 768px)
============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 44px 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 36px 0 64px;
  }

  .hero-features {
    gap: 8px;
  }

  .hero-feature {
    font-size: .82rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-call,
  .btn-zalo {
    justify-content: center;
    width: 100%;
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .hero-price-tag {
    flex-wrap: wrap;
  }

  .why-text-col a.btn-call {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .gallery-item-label {
    opacity: 1;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-item.large img {
    height: 200px;
  }

  .areas-city {
    font-size: .95rem;
    padding: 10px 18px;
  }

  .areas-arrow {
    font-size: 1.3rem;
  }

  .area-tag {
    font-size: .8rem;
    padding: 7px 12px;
  }

  .reviews-grid {
    margin-top: 32px;
  }

  .faq-list {
    margin-top: 32px;
  }

  .faq-q-text {
    font-size: .88rem;
  }

  .cta-phone-big {
    font-size: 1.6rem;
    padding: 16px 24px;
    gap: 10px;
  }

  .footer-contact-item {
    font-size: .82rem;
  }
}

/* ============================================================
   MOBILE NHỎ – iPhone SE, màn hình ≤ 390px
============================================================ */
@media (max-width: 390px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: .75rem;
    padding: 5px 12px;
  }

  .hero-price-tag .price {
    font-size: 1.2rem;
  }

  .hero-price-tag .price-note {
    font-size: .78rem;
  }

  .trust-num {
    font-size: 1.2rem;
  }

  .trust-label {
    font-size: .7rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .service-card {
    padding: 22px 16px;
  }

  .service-name {
    font-size: .95rem;
  }

  .cta-phone-big {
    font-size: 1.35rem;
    padding: 14px 18px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ============================================================
   TOUCH – ẩn hover effects (pointer: coarse = màn cảm ứng)
============================================================ */
@media (hover: none) {
  .gallery-item-label {
    opacity: 1;
  }

  .service-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
}
