/* ============================================================
   เว็บสวยราคาถูก - Custom Styles
   Color Scheme: Deep Red (#7B1818) + White (#FFFFFF)
   ============================================================ */

:root {
  --navy:       #7B1818;
  --navy-mid:   #9B1C1C;
  --navy-light: #B91C1C;
  --blue:       #DC2626;
  --blue-light: #EF4444;
  --primary:    #DC2626;
  --accent:     #FFFFFF;
  --accent-2:   #FFD0D0;
  --white:      #ffffff;
  --gray-light: #f4f6fb;
  --gray:       #8895a7;
  --text:       #1e293b;
  --shadow:     0 8px 30px rgba(123,24,24,0.15);
  --shadow-lg:  0 20px 60px rgba(123,24,24,0.25);
  --radius:     12px;
  --radius-lg:  20px;
  --trans:      all 0.3s ease;
}

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

body {
  font-family: 'Prompt', 'Sarabun', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

a { color: var(--blue); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--accent); }

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 12px;
  color: var(--navy);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title.center::after { left: 50%; transform: translateX(-50%); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 48px;
}

.text-accent { color: var(--accent) !important; }
.text-navy   { color: var(--navy)   !important; }
.bg-navy     { background-color: var(--navy) !important; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a         { color: var(--accent); font-weight: 600; }
.topbar a:hover   { color: #fff; }
.topbar-phone, .topbar-line { white-space: nowrap; }

/* ===== NAVBAR ===== */
.main-navbar {
  background: #ffffff;
  padding: 0px 0;
  box-shadow: 0 2px 20px rgba(123,24,24,0.12);
  border-bottom: 3px solid var(--accent);
}
.main-navbar .navbar-toggler {
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 6px 10px;
}
.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237B1818' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.main-navbar .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,193,7,0.4); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.navbar-brand-logo { padding: 4px 0; }
.nav-logo-img {
  height: 73px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1);
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.85; }
.brand-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-bbk     { font-size: 1.4rem; font-weight: 900; color: var(--accent); letter-spacing: 1px; }
.brand-slideon { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.brand-text small { font-size: 0.65rem; color: rgba(123,24,24,0.5); letter-spacing: 3px; }

.main-navbar .nav-link {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--trans);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #fff !important;
  background: var(--navy);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 10px 22px !important;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(220,38,38,0.5);
  animation: pulse-call 2s infinite;
  letter-spacing: 0.3px;
}
.btn-call:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.6);
  animation: none;
}
@keyframes pulse-call {
  0%   { box-shadow: 0 4px 18px rgba(220,38,38,0.5); }
  50%  { box-shadow: 0 4px 28px rgba(220,38,38,0.8), 0 0 0 6px rgba(220,38,38,0.12); }
  100% { box-shadow: 0 4px 18px rgba(220,38,38,0.5); }
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../img-content/14.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1.06); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(80,10,10,0.88) 0%, rgba(123,24,24,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--accent);
  font-size: 0.82rem; font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255,255,255,0.4);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 2rem; font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 25px rgba(220,38,38,0.35);
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  background: var(--navy); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(220,38,38,0.4);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero feature cards at bottom */
.hero-features {
  position: relative; z-index: 2;
  margin-top: 40px;
}
.hero-feature-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero-feature-card:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(220,38,38,0.15);
}
.hero-feature-card i {
  font-size: 2rem; color: var(--primary);
  margin-bottom: 10px;
}
.hero-feature-card h6 { color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.hero-feature-card p { color: #6c757d; font-size: 0.82rem; margin: 0; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
section.bg-alt { background: var(--gray-light); }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-icon {
  position: absolute; bottom: -20px; right: 20px;
  width: 50px; height: 50px;
  background: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy);
  box-shadow: 0 4px 15px rgba(220,38,38,0.3);
}
.service-card-body {
  padding: 32px 24px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.9rem; color: var(--gray);
  flex: 1; margin-bottom: 18px;
}
.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem; font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  transition: var(--trans);
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(220,38,38,0.35);
  letter-spacing: 0.3px;
  text-decoration: none;
}
.btn-service:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 28px rgba(123,24,24,0.45);
  transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why-us-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.why-us-section .section-title { color: #fff; }
.why-us-section .section-title::after { background: var(--accent); }
.why-us-section .section-subtitle { color: rgba(255,255,255,0.65); }
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: var(--trans);
}
.why-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-6px);
}
.why-card-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.why-card h5 { color: #fff; font-weight: 700; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

/* ===== GALLERY PREVIEW ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(123,24,24,0);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.gallery-item-overlay i {
  font-size: 2rem; color: #fff;
  opacity: 0; transform: scale(0.5);
  transition: var(--trans);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { background: rgba(123,24,24,0.65); }
.gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

/* ===== ARTICLE CARDS ===== */
.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  height: 100%;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card-img {
  height: 200px; overflow: hidden;
}
.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; color: var(--gray);
  margin-bottom: 10px;
}
.article-card-body h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.btn-read {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-size: 0.88rem; font-weight: 600;
  padding: 0; background: none; border: none;
  transition: var(--trans);
  cursor: pointer;
}
.btn-read:hover { color: var(--primary); gap: 10px; }

/* ===== NO RESULT ===== */
.no-result-wrap {
  text-align: center;
  padding: 48px 24px 36px;
  background: linear-gradient(135deg,#fff8f8,#ffe8e8);
  border-radius: 20px;
  border: 2px dashed #ffb3b3;
  margin-bottom: 40px;
}
.no-result-icon {
  width: 72px; height: 72px; margin: 0 auto 18px;
  background: linear-gradient(135deg,#ffe4e4,#ffd0d0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--primary);
}
.no-result-title { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.no-result-title strong { color: var(--primary); }
.no-result-sub { color: #6b7a99; font-size: 0.9rem; margin-bottom: 22px; }
.no-result-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  border-radius: 50px; padding: 10px 24px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.no-result-btn:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.suggested-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
}
.suggested-label span {
  font-size: 1.1rem; font-weight: 700; color: #1e2d42;
  display: flex; align-items: center;
}
.suggested-label span i { color: #f97316; }
.suggested-label::after {
  content: ''; flex: 1; height: 2px;
  background: linear-gradient(90deg,#e2e8f0,transparent);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 70px 0;
}
.cta-section h2 { color: #fff; font-weight: 900; }
.cta-section p  { color: rgba(255,255,255,0.75); }
.btn-cta-primary {
  background: #fff;
  color: var(--navy);
  font-size: 1.1rem; font-weight: 800;
  padding: 15px 36px; border-radius: 50px;
  border: none; transition: var(--trans);
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
.btn-cta-primary:hover {
  background: var(--navy-light); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: #fff;
  margin-bottom: 8px;
}
.page-hero-title span { color: var(--accent); }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== GALLERY PAGE ===== */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 20px;
  border: 2px solid var(--navy-light);
  color: var(--navy);
  background: transparent;
  border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--trans);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-full-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(80,10,10,0.85));
  color: #fff; font-size: 0.82rem;
  padding: 24px 12px 12px;
  opacity: 0; transition: var(--trans);
}
.gallery-full-item:hover .gallery-caption { opacity: 1; }

/* ===== PORTFOLIO CARD (mockup style) ===== */
.portfolio-section { padding: 60px 0; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 48px 40px;
}
@media(max-width:500px){ .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card { display: flex; flex-direction: column; gap: 20px; }

/* Mockup wrapper */
.mockup-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
}

/* Browser frame */
.mockup-browser {
  flex: 1;
  border-radius: 12px 12px 8px 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 2px solid #e0e0e0;
  background: #fff;
  position: relative;
  z-index: 1;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0f0f0;
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url-bar {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  font-size: 0.72rem;
  color: #666;
  padding: 3px 12px;
  margin-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #ddd;
}
.mockup-screen {
  overflow: hidden;
  height: 360px;
  background: #f8f8f8;
  cursor: zoom-in;
}
.mockup-screen img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Mobile frame */
.mockup-mobile {
  width: 94px;
  flex-shrink: 0;
  margin-left: -28px;
  margin-bottom: -6px;
  background: #222;
  border-radius: 8px;
  padding: 7px 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  position: relative;
  z-index: 2;
}
.mockup-mobile-top {
  width: 30px; height: 6px;
  background: #444;
  border-radius: 3px;
  margin: 0 auto 6px;
}
.mockup-mobile-screen {
  border-radius: 6px;
  overflow: hidden;
  max-height: 140px;
  background: #fff;
}
.mockup-mobile-screen img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.mockup-mobile-bottom {
  width: 15px; height: 15px;
  border-radius: 100%;
  background: #444;
  margin: 6px auto 0;
}

/* Portfolio info */
.portfolio-info { padding: 0 4px; }
.portfolio-title {
  font-size: 1rem; font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.portfolio-desc {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.6;
}
.portfolio-price {
  display: inline-flex; align-items: center;
  font-size: 0.85rem; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  padding: 4px 14px; border-radius: 50px;
  white-space: nowrap;
}
.portfolio-url {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.portfolio-url:hover { text-decoration: underline; }

/* ===== REVIEWS PAGE ===== */
.reviews-stat-bar {
  background: var(--navy);
  padding: 28px 0;
}
.rstat-num {
  font-size: 1.8rem; font-weight: 800;
  color: #fff; line-height: 1.1;
}
.rstat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.reviews-section { padding: 60px 0; }

/* --- Masonry photo album --- */
.review-masonry {
  columns: 4;
  column-gap: 14px;
}
@media(max-width:992px){ .review-masonry { columns: 3; } }
@media(max-width:640px){ .review-masonry { columns: 2; } }
@media(max-width:400px){ .review-masonry { columns: 1; } }

.review-photo-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: var(--trans);
}
.review-photo-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.review-photo-item a { display: block; position: relative; text-decoration: none; }
.review-photo-item img {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--radius);
}
.review-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.65) 20%, rgba(0,0,0,0.95) 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 1;
  min-height: 90px;
}
.review-photo-meta {
  display: flex; flex-direction: column; gap: 4px;
  color: #fff; font-size: 0.78rem; font-weight: 600;
  flex: 1;
  min-width: 0;
}
.review-photo-meta .rp-name {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
.review-photo-meta .rp-loc {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-photo-meta .rp-stars {
  display: flex; gap: 2px;
}
.review-photo-meta .rp-content {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-photo-zoom {
  color: #fff; font-size: 1rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-left: 8px;
  opacity: 1;
}

/* --- Text review cards (no image) --- */
.reviews-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-text-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 20px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: var(--trans);
}
.review-text-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { display: flex; gap: 3px; }
.review-stars .fas.fa-star { font-size: 1rem; color: #e0e0e0; }
.review-stars .fas.fa-star.filled { color: #f59e0b; }
.review-content {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.7; flex: 1; font-style: italic;
  margin: 10px 0 0;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.review-location { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.review-verified {
  font-size: 0.72rem; color: #16a34a; font-weight: 600;
  display: flex; align-items: center;
}

/* ===== SERVICES PAGE ===== */
.service-detail-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.service-detail-img {
  width: 100%; height: 360px;
  object-fit: cover;
}
.service-detail-body { padding: 36px; }
.service-detail-body h2 { font-size: 1.7rem; color: var(--navy); margin-bottom: 16px; }
.service-detail-body h3 { font-size: 1.1rem; color: var(--navy-mid); margin: 16px 0 8px; }
.service-detail-body ul { padding-left: 20px; color: var(--text); }
.service-detail-body ul li { margin-bottom: 8px; }
.service-icon-big {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(123,24,24,0.35);
}

/* ===== ARTICLE PAGE ===== */
.article-content h2 { font-size: 1.5rem; margin-top: 32px; margin-bottom: 12px; }
.article-content h3 { font-size: 1.2rem; margin-top: 24px; margin-bottom: 10px; color: var(--navy-mid); }
.article-content p  { margin-bottom: 16px; line-height: 1.9; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--navy); }
.article-hero-img {
  width: 100%; max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.article-sidebar-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.article-sidebar-card h5 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.related-article {
  display: flex; gap: 12px; margin-bottom: 14px;
  text-decoration: none !important;
}
.related-article img {
  width: 70px; height: 70px;
  object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.related-article-info h6 {
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy); margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--trans);
}
.related-article:hover h6 { color: var(--blue); }
.related-article-info small { font-size: 0.75rem; color: var(--gray); }

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  height: 100%;
}
.contact-info-card h3 { color: var(--accent); margin-bottom: 8px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--accent);
}
.contact-item-text strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 3px; }
.contact-item-text a { color: #fff; font-size: 1rem; font-weight: 600; }
.contact-item-text a:hover { color: var(--accent); }
.contact-item-text span { color: #fff; font-size: 1rem; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 24px; }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.form-control, .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.95rem;
  transition: var(--trans);
  font-family: 'Prompt', 'Sarabun', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.1);
}
.btn-submit {
  background: var(--navy);
  color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 13px 36px; border-radius: 50px;
  border: none; transition: var(--trans);
  width: 100%;
}
.btn-submit:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

/* ===== FLOAT BUTTONS ===== */
.float-call, .float-line {
  position: fixed;
  right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--trans);
  text-decoration: none;
  animation: float-bounce 3s ease-in-out infinite;
}
.float-call {
  bottom: 90px;
  background: var(--primary);
  color: #fff;
}
.float-line {
  bottom: 24px;
  background: #00b900;
  color: #fff;
}
.float-call:hover { transform: scale(1.15) translateY(-3px); color: #fff; }
.float-line:hover { transform: scale(1.15) translateY(-3px); color: #fff; }
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.float-call:hover, .float-line:hover { animation: none; }

/* ===== FOOTER ===== */
.site-footer { background: #2d2d2d; }
.footer-top { padding: 60px 0 40px; }
.footer-logo {
  font-size: 1.4rem; font-weight: 900; color: #fff;
}
.footer-logo i { color: var(--primary); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1rem;
  transition: var(--trans);
}
.social-links a:hover { background: var(--primary); color: #fff; }

/* Footer Tag Cloud */
.footer-tags { }
.footer-tags-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.footer-tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-tag-chip {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.footer-tag-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.footer-title {
  color: var(--primary);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--trans); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
/* ===== FOOTER CONTACT (fc-*) ===== */
.fc-list { display: flex; flex-direction: column; gap: 6px; }
.fc-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px 14px;
  transition: background 0.2s;
}
.fc-item:hover { background: rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.3); }
.fc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.fc-icon--phone { background: rgba(220,38,38,0.2); color: #ff6b6b; }
.fc-icon--line  { background: rgba(6,199,85,0.15);  color: #06c755; }
.fc-icon--fb    { background: rgba(24,119,242,0.15); color: #4f96ff; }
.fc-icon--map   { background: rgba(220,38,38,0.15);  color: #ff8080; }
.fc-icon--clock { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.fc-body { flex: 1; min-width: 0; }
.fc-label {
  display: block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  margin-bottom: 5px;
}
.fc-phones { display: flex; flex-direction: column; gap: 3px; }
.fc-phone {
  display: inline-block;
  color: #fff; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.02em; text-decoration: none;
  transition: color 0.2s;
}
.fc-phone:hover { color: var(--primary); }
.fc-value {
  display: block;
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; line-height: 1.4;
  word-break: break-word;
  transition: color 0.2s;
}
a.fc-value:hover { color: var(--primary); }
.badge-24h {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem; font-weight: 800;
  padding: 1px 7px; border-radius: 50px;
  margin-left: 5px; vertical-align: middle;
  letter-spacing: 0.03em;
}
/* ===== FOOTER STATS BAR ===== */
.footer-stats-bar {
  background: rgba(0,0,0,0.30);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}
.footer-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.footer-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.footer-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.footer-stat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-stat-dot.online {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.8);
  animation: pulse-green 1.5s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 4px rgba(34,197,94,0.6); }
  50%      { box-shadow: 0 0 10px rgba(34,197,94,1); }
}
.footer-stat-icon {
  color: var(--primary);
  font-size: 0.75rem;
}
.footer-stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.footer-stat-num {
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
}
.footer-stat-unit {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
}
@media (max-width: 480px) {
  .footer-stats-inner { justify-content: flex-start; }
  .footer-stat-item { padding: 5px 12px; font-size: 0.78rem; }
  .footer-stat-divider { height: 22px; }
}

.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

/* ===== UTILITY ===== */
.tag-badge {
  display: inline-block;
  background: rgba(220,38,38,0.08);
  color: var(--primary);
  font-size: 0.75rem; font-weight: 600;
  padding: 3px 12px; border-radius: 50px;
  border: 1px solid rgba(220,38,38,0.2);
  text-decoration: none;
  transition: var(--trans);
  cursor: pointer;
}
a.tag-badge:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
}
.alert-success-custom {
  background: linear-gradient(135deg, #e8f5e9, #f1fff1);
  border-left: 4px solid #4caf50;
  color: #2e7d32;
  border-radius: 10px;
  padding: 16px 20px;
}
.alert-danger-custom {
  background: linear-gradient(135deg, #ffebee, #fff5f5);
  border-left: 4px solid #ef5350;
  color: #c62828;
  border-radius: 10px;
  padding: 16px 20px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== HERO SWIPER ===== */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-swiper-wrap {
  position: relative;
  overflow: hidden;
  background: #3B0000;
}
.heroSwiper {
  height: 70vh;
  min-height: 420px;
  max-height: 700px;
  overflow: hidden;
}
.heroSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Animate content on initial load */
.hero-slide-badge  { animation: heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.00s both; }
.hero-slide-title  { animation: heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.12s both; }
.hero-slide-sub    { animation: heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.24s both; }
.hero-slide-btns   { animation: heroSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.36s both; }

/* Background + Ken Burns */
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.heroSwiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

/* Overlay — gradient diagonal */
.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(60,5,5,0.88) 0%, rgba(123,24,24,0.65) 45%, rgba(123,24,24,0.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.45) 0%, transparent 50%);
}

/* Decorative shapes */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-deco-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -120px; right: -100px;
  animation: decoFloat 8s ease-in-out infinite;
}
.hero-deco-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,100,100,0.12) 0%, transparent 70%);
  bottom: 60px; left: -60px;
  animation: decoFloat 11s ease-in-out infinite reverse;
}
.hero-deco-3 {
  width: 180px; height: 180px;
  border: 1px solid rgba(255,255,255,0.12);
  top: 30%; right: 18%;
  animation: decoSpin 18s linear infinite;
}
@keyframes decoFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.04); }
}
@keyframes decoSpin {
  to { transform: rotate(360deg); }
}

/* Content */
.hero-slide-content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 0 80px;
  max-width: 660px;
}

/* Badge */
.hero-slide-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 700; font-size: 0.8rem;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: badgePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}

/* Title */
.hero-slide-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

/* Sub */
.hero-slide-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
}

/* Buttons group */
.hero-slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-slide-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(220,38,38,0.35);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.hero-slide-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-slide-btn:hover {
  color: var(--navy);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 36px rgba(220,38,38,0.45);
}
.hero-slide-btn:hover::after { opacity: 1; }

.hero-slide-btn-line {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-slide-btn-line:hover {
  background: #06C755;
  border-color: #06C755;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(6,199,85,0.4);
}

/* Hero phone number */
.hero-slide-phone {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-slide-phone i {
  color: var(--accent);
  font-size: 0.9rem;
}
.hero-slide-phone:hover { color: var(--accent); }
.hero-slide-phone-sep {
  color: rgba(255,255,255,0.3);
  font-weight: 300; margin: 0 2px;
}

/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fff, rgba(255,200,200,0.8));
  transition: width 5500ms linear;
}

/* Counter */
.hero-counter {
  position: absolute;
  left: 40px; bottom: 70px;
  z-index: 10;
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Prompt', sans-serif;
}
.hero-counter-cur {
  font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.hero-counter-sep {
  font-size: 0.9rem; color: rgba(255,255,255,0.35); margin: 0 2px;
}
.hero-counter-total {
  font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.45);
}

/* Nav buttons */
.hero-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff; font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}
.hero-swiper-wrap:hover .hero-nav-btn { opacity: 1; }
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }
.hero-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
  transform: translateY(-50%) scale(1.12);
}

/* Bullet thumbnails */
.hero-bullets {
  position: absolute;
  left: 40px; bottom: 36px;
  z-index: 10;
  display: flex; gap: 8px; align-items: center;
}
.hero-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.hero-bullet.active {
  width: 28px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* ===== ABOUT INTRO SECTION ===== */
.about-intro-section { background: #fff8f8; }
.about-intro-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--primary);
  background: rgba(220,38,38,0.08);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 14px;
}
.about-intro-text {
  color: var(--gray); line-height: 1.85; margin-bottom: 14px; font-size: 0.97rem;
}
.about-intro-highlight {
  background: linear-gradient(135deg, rgba(220,38,38,0.08), rgba(220,38,38,0.03));
  border-left: 3px solid var(--primary);
  padding: 12px 18px; border-radius: 0 8px 8px 0;
  font-size: 0.95rem; color: var(--navy);
}
.about-intro-area {
  font-size: 0.9rem; color: var(--gray);
}
.about-intro-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-weight: 800; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(220,38,38,0.35);
  transition: all 0.3s;
}
.btn-main:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-main {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--primary); color: var(--primary);
  font-weight: 700; font-size: 0.95rem;
  padding: 11px 26px; border-radius: 50px;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline-main:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.about-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.about-feat-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(220,38,38,0.06);
  transition: all 0.3s;
}
.about-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(220,38,38,0.12);
  border-color: rgba(220,38,38,0.18);
}
.about-feat-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  margin-bottom: 14px;
}
.about-feat-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.about-feat-card p { font-size: 0.83rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { min-height: 70vh; }
  .hero-stats { gap: 20px; }
  section { padding: 60px 0; }
  .hero-counter { left: 20px; bottom: 66px; }
  .hero-bullets { left: 20px; bottom: 32px; }
}
@media (max-width: 767px) {
  .hero-section { min-height: 60vh; }
  .topbar .topbar-info { display: none; }
  .service-detail-img { height: 220px; }
  .contact-info-card, .contact-form-card { padding: 24px; }
  .footer-top { padding: 40px 0 24px; }
  .float-call, .float-line { width: 46px; height: 46px; font-size: 1.2rem; }
  .heroSwiper { height: 70vh; min-height: 380px; }
  .hero-slide-content { padding: 70px 0 60px; }
  .hero-counter { display: none; }
  .hero-nav-btn { display: none; }
  .hero-bullets { left: 50%; transform: translateX(-50%); bottom: 32px; }
  .hero-slide-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-deco-1, .hero-deco-3 { display: none; }
}

/* ===== GALLERY HOME SECTION ===== */
.gallery-home-section { padding: 80px 0; background: var(--gray-light); }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.gallery-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
/* first item spans 2 columns and 2 rows — hero photo */
.gallery-home-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-home-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  background: #5B0000;
  cursor: pointer;
}
.gallery-home-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-home-item:hover img { transform: scale(1.08); }
.gallery-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(80,10,10,0.85) 0%, rgba(80,10,10,0.1) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  gap: 8px;
  padding: 16px;
  text-align: center;
}
.gallery-home-overlay i {
  font-size: 1.8rem;
  background: rgba(255,255,255,0.15);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.gallery-home-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.gallery-home-item:hover .gallery-home-overlay { opacity: 1; }

@media (max-width: 991px) {
  .gallery-home-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-home-item:first-child { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 576px) {
  .gallery-home-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-home-item:first-child { grid-column: span 2; grid-row: span 1; }
}
