/* =============================================
   ปิดงบเปล่าปี68.com - Main Stylesheet
   Color Palette: Gold #B8860B | Navy #1B263B
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700;800&family=Noto+Sans+Thai:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-dark: #8B6508;
  --gold-pale: #FFF8E1;
  --gold-pale2: #FEF3C7;
  --navy: #1B263B;
  --navy-light: #243B55;
  --navy-dark: #0D1B2A;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --text-dark: #1B263B;
  --text-muted: #6B7280;
  --success: #059669;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(184,134,11,0.25);
  --transition: all 0.3s ease;
  --font-main: 'Sarabun', 'Noto Sans Thai', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(24px, 4vw, 42px); }
h2 { font-size: clamp(20px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
p { margin-bottom: 1em; }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ---- Section Utilities ---- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-gray { background: var(--gray-50); }
.bg-white { background: var(--white); }

/* Section Title */
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 17px; margin-bottom: 40px; }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 12px auto 24px;
}
.section-divider.left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 16px; font-weight: 600;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); font-family: var(--font-main);
  text-decoration: none; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,134,11,0.4);
  color: var(--white);
}
.btn-navy {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark); transform: translateY(-2px); color: var(--white);
}
.btn-outline-gold {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--white); transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--navy); transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-line {
  background: #06C755; color: var(--white); border-color: #06C755;
}
.btn-line:hover {
  background: #05A847; color: var(--white); transform: translateY(-2px);
}
.btn-phone {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-phone:hover {
  background: var(--gold-dark); color: var(--white); transform: translateY(-2px);
}

/* ---- Navbar ---- */
.navbar-main {
  background: var(--navy);
  padding: 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.navbar-main .navbar-brand {
  color: var(--gold); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; gap: 8px; padding: 12px 0;
}
.navbar-main .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500; font-size: 15px; padding: 22px 16px !important;
  border-bottom: 3px solid transparent; transition: var(--transition);
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--gold) !important;
  border-bottom-color: var(--gold);
}
.navbar-main .dropdown-menu {
  background: var(--navy-dark); border: 1px solid rgba(184,134,11,0.3);
  border-radius: var(--radius); margin-top: 0;
}
.navbar-main .dropdown-item {
  color: rgba(255,255,255,0.8); padding: 10px 20px; font-size: 14px;
  transition: var(--transition);
}
.navbar-main .dropdown-item:hover {
  background: rgba(184,134,11,0.15); color: var(--gold);
}
.navbar-cta-group { display: flex; gap: 8px; align-items: center; }
.navbar-phone {
  background: var(--gold); color: var(--white) !important;
  border-radius: var(--radius); padding: 8px 16px !important;
  font-weight: 700; font-size: 14px; border-bottom: none !important;
}
.navbar-phone:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.navbar-line {
  background: #06C755; color: var(--white) !important;
  border-radius: var(--radius); padding: 8px 16px !important;
  font-weight: 700; font-size: 14px; border-bottom: none !important;
}
.navbar-line:hover { background: #05A847 !important; color: var(--white) !important; }

/* ---- Hero Slider ---- */
.hero-section { position: relative; overflow: hidden; }
.hero-carousel .carousel-item { position: relative; }
.hero-img {
  width: 100%; height: 600px; object-fit: cover;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,38,59,0.85) 40%, rgba(184,134,11,0.3) 100%);
  display: flex; align-items: center;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-block;
  background: rgba(184,134,11,0.25); border: 1px solid var(--gold);
  color: var(--gold); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(5px);
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 16px;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.88); margin-bottom: 32px;
  max-width: 600px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-size: 32px; font-weight: 800; color: var(--gold-light);
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }
.carousel-indicators button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none;
}
.carousel-indicators .active { background: var(--gold); }
.carousel-control-prev, .carousel-control-next {
  width: 50px; height: 50px; top: 50%; transform: translateY(-50%);
  background: rgba(184,134,11,0.3); border-radius: 50%; opacity: 0.8;
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }

/* ---- Cards ---- */
.card-service {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid var(--gray-200);
  height: 100%;
}
.card-service:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.card-service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-pale2));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.card-service h3 { font-size: 18px; margin-bottom: 12px; color: var(--navy); }
.card-service p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* Problem Cards */
.card-problem {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold); transition: var(--transition);
  display: flex; align-items: flex-start; gap: 16px;
}
.card-problem:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.card-problem-icon {
  font-size: 28px; flex-shrink: 0; margin-top: 2px;
}
.card-problem-text h4 { font-size: 16px; margin-bottom: 6px; }
.card-problem-text p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Feature List */
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ---- Highlight Stats ---- */
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 20px; text-align: center;
  box-shadow: var(--shadow-gold); border: 1px solid rgba(184,134,11,0.2);
}
.stat-number {
  font-size: 42px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold), var(--navy));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute; left: -40px; top: 4px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--white);
  box-shadow: 0 0 0 4px rgba(184,134,11,0.2);
}
.timeline-content {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}
.timeline-content h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.timeline-content p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---- FAQ ---- */
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); margin-bottom: 12px;
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px; color: var(--navy);
  user-select: none;
}
.faq-question .faq-icon {
  color: var(--gold); font-size: 20px; transition: var(--transition); flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-muted); font-size: 15px;
}
.faq-item.active .faq-answer {
  max-height: 500px; padding: 0 24px 20px;
}

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid var(--gray-200); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 24px; }
.blog-cat-badge {
  display: inline-block;
  background: var(--gold-pale2); color: var(--gold-dark);
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
  margin-bottom: 12px;
}
.blog-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.blog-card-meta { font-size: 13px; color: var(--text-muted); display: flex; gap: 16px; }

/* ---- Location Cards ---- */
.location-card {
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; align-items: center; gap: 12px;
}
.location-card:hover {
  border-color: var(--gold); box-shadow: var(--shadow-gold);
  transform: translateX(3px);
}
.location-card-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.location-card-name { font-weight: 600; font-size: 15px; color: var(--navy); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(184,134,11,0.08); top: -100px; right: -100px;
}
.cta-section::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(184,134,11,0.06); bottom: -80px; left: -80px;
}
.cta-title { color: var(--white); font-size: clamp(24px, 3.5vw, 38px); margin-bottom: 16px; }
.cta-subtitle { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---- Contact Section ---- */
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-pale); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0; color: var(--gold);
}

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.floating-btn:hover { transform: scale(1.12) translateY(-2px); }
.floating-line { background: #06C755; color: white; }
.floating-phone { background: var(--gold); color: white; }

/* Mobile bottom bar */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); z-index: 998;
  display: none; padding: 10px 16px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; gap: 10px; }
  .mobile-cta-bar .btn { flex: 1; padding: 12px 10px; font-size: 14px; }
  .floating-cta { display: none; }
  body { padding-bottom: 70px; }
  .hero-img { height: 400px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-cta-group { flex-direction: column; }
  .section-pad { padding: 50px 0; }
}

/* ---- Breadcrumb ---- */
.breadcrumb-section {
  background: var(--gray-50); padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray-300); }

/* ---- Footer ---- */
.footer-main {
  background: var(--navy-dark); color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer-brand { color: var(--gold); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer-address { font-size: 14px; line-height: 1.8; }
.footer-heading { color: var(--gold); font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 30px 0; }
.footer-bottom { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-cta-inline {
  background: rgba(184,134,11,0.15); border: 1px solid rgba(184,134,11,0.3);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 30px;
}

/* ---- Single Post ---- */
.post-content {
  font-size: 16px; line-height: 1.85; color: var(--gray-700);
}
.post-content h2 { color: var(--navy); margin: 32px 0 16px; font-size: 22px; }
.post-content h3 { color: var(--navy-light); margin: 24px 0 12px; font-size: 19px; }
.post-content ul, .post-content ol {
  padding-left: 24px; margin-bottom: 20px;
}
.post-content ul li { list-style: disc; margin-bottom: 6px; }
.post-content ol li { list-style: decimal; margin-bottom: 6px; }
.post-content img { border-radius: var(--radius); margin: 24px auto; }
.post-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.post-content th { background: var(--navy); color: white; padding: 12px 16px; }
.post-content td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); }

/* ---- Keyword Section ---- */
.keyword-section { padding: 40px 0; background: var(--gray-50); }
.keyword-tag {
  display: inline-block;
  background: var(--white); border: 1px solid var(--gray-300);
  color: var(--gray-700); padding: 8px 16px; border-radius: 50px;
  font-size: 14px; margin: 6px; transition: var(--transition);
}
.keyword-tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

/* ---- Admin ---- */
.admin-wrapper {
  display: flex; min-height: 100vh;
  font-family: var(--font-main);
}
.admin-sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--navy-dark);
  min-height: 100vh; position: fixed; left: 0; top: 0; bottom: 0;
  overflow-y: auto; z-index: 100;
  transition: var(--transition);
}
.admin-logo {
  padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--gold); font-size: 16px; font-weight: 800;
}
.admin-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500; transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
  color: var(--gold); background: rgba(184,134,11,0.1);
  border-left-color: var(--gold);
}
.admin-nav-link i { width: 20px; text-align: center; font-size: 16px; }
.admin-nav-section {
  padding: 12px 20px 4px; font-size: 10px; text-transform: uppercase;
  color: rgba(255,255,255,0.25); letter-spacing: 1px;
}
.admin-content {
  margin-left: 260px; flex: 1;
  background: var(--gray-50); min-height: 100vh;
}
.admin-topbar {
  background: var(--white); padding: 16px 28px;
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 10px rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 50;
}
.admin-main { padding: 28px; }
.admin-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px;
  border: 1px solid var(--gray-200);
}
.stat-widget {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold); height: 100%;
}
.stat-widget .sw-num { font-size: 32px; font-weight: 800; color: var(--navy); }
.stat-widget .sw-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stat-widget .sw-icon { font-size: 32px; color: var(--gold); opacity: 0.3; }

/* Form Styles */
.form-label { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.form-control, .form-select {
  border-radius: var(--radius); border: 1.5px solid var(--gray-300);
  font-size: 15px; padding: 10px 14px; font-family: var(--font-main);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}
.table-admin th {
  background: var(--gray-50); font-size: 13px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
  padding: 12px 16px;
}
.table-admin td { padding: 14px 16px; vertical-align: middle; font-size: 14px; }
.table-admin tr:hover td { background: var(--gray-50); }

/* Status badges */
.badge-published { background: #D1FAE5; color: #065F46; }
.badge-draft { background: var(--gray-100); color: var(--gray-600); }
.badge-active { background: #D1FAE5; color: #065F46; }
.badge-inactive { background: #FEE2E2; color: #991B1B; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,134,11,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(184,134,11,0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease both; }
.pulse-gold { animation: pulse-gold 2s infinite; }
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ---- Wide Banner ---- */
.banner-wide-section {
  width: 100%; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.banner-wide-section a { display: block; line-height: 0; }
.banner-wide-img {
  width: 100%; height: auto; display: block;
  transition: transform 0.4s ease;
}
.banner-wide-section:hover .banner-wide-img { transform: scale(1.01); }

