*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f2b4a;
  --primary-light: #1e4a7a;
  --primary-lighter: #2d6aad;
  --secondary: #d4a73a;
  --secondary-light: #e8c86a;
  --secondary-dark: #b8912e;
  --accent: #38a169;
  --accent-light: #48bb78;
  --text-dark: #1a202c;
  --text-body: #2d3748;
  --text-light: #718096;
  --text-muted: #a0aec0;
  --bg-light: #f0f4f8;
  --bg-card: #ffffff;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 4px 20px rgba(212, 167, 58, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Prompt', 'Sarabun', -apple-system, sans-serif;
  color: var(--text-body);
  line-height: 1.8;
  background: var(--bg-light);

}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 2px solid var(--secondary);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--secondary-light);
  text-decoration: none;
  transition: var(--transition);
}

.top-bar a:hover { color: var(--white); }

.top-bar .contact-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar .contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== HEADER / NAVIGATION ===== */
header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(226,232,240,0.5);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
}

.logo img { height: 46px; width: auto; }

.logo-text .logo-title {
  font-size: 20px;
  color: var(--primary);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.logo-text span {
  font-size: 13px;
  color: var(--text-light);
  display: block;
  margin-top: 1px;
}

/* ===== NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  z-index: 1001;
}

.nav-toggle:hover { background: #f0f4ff; }

/* ===== DESKTOP NAVIGATION ===== */
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
}

nav ul li { position: relative; }

nav ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition);
  white-space: nowrap;
}

nav ul li a i {
  font-size: 14px;
  color: var(--primary-lighter);
  transition: var(--transition);
}

nav ul li a:hover {
  background: #f0f4ff;
  color: var(--primary);
}

nav ul li a:hover i { color: var(--secondary); }

nav ul li a.active {
  background: linear-gradient(135deg, rgba(212,167,58,0.12), rgba(232,200,106,0.06));
  color: var(--primary);
  font-weight: 500;
}

nav ul li a.active i { color: var(--secondary); }

/* ===== DROPDOWN ===== */
nav ul li.dropdown > a {
  padding-right: 10px;
}

nav ul li.dropdown > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  margin-left: 4px;
  color: var(--text-muted);
  transition: var(--transition);
}

nav ul li.dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  border-radius: var(--radius);
  padding: 8px;
  border: 1px solid #edf2f7;
  z-index: 100;
  animation: dropdownIn 0.2s ease;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li { width: 100%; }

.dropdown-menu li a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  gap: 10px;
}

.dropdown-menu li a:hover {
  background: #f0f4ff;
  color: var(--primary);
}

.dropdown-menu li a i {
  font-size: 15px;
  width: 18px;
  text-align: center;
  color: var(--primary-lighter);
}

.dropdown-menu li a:hover i { color: var(--secondary); }

/* ===== NAV CTA ===== */
.nav-cta a {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 500;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(212,167,58,0.25);
}

.nav-cta a i { color: var(--white) !important; }

.nav-cta a:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,167,58,0.35);
}

/* ===== NAV OVERLAY (mobile) ===== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.35);
  z-index: 999;
  animation: overlayFadeIn 0.25s ease;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.nav-overlay.show { display: block; }

/* ===== NAV CONTACT (mobile only) ===== */
.nav-contact {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(15,43,74,0.88) 0%, rgba(30,74,122,0.82) 50%, rgba(26,58,92,0.88) 100%),
    url('../images/hero-bg.png') center / cover no-repeat;
  color: var(--white);
  padding: 90px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,167,58,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero h1 span {
  color: var(--secondary);
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero p {
  font-size: 20px;
  opacity: 0.92;
  margin-bottom: 35px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #2f855a 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(56,161,105,0.35);
}

.btn-ghost {
  background: rgba(212,167,58,0.12);
  color: var(--primary);
  border: 1px solid rgba(212,167,58,0.3);
}

.btn-ghost:hover {
  background: rgba(212,167,58,0.2);
  transform: translateY(-2px);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1a3a5c 100%);
  color: var(--white);
  padding: 55px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,167,58,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner h1 {
  font-size: 36px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.page-banner p {
  font-size: 18px;
  opacity: 0.85;
  margin-top: 10px;
}

/* ===== SECTIONS ===== */
section { padding: 75px 0; }

.section-alt {
  background: var(--white);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,167,58,0.2), transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  margin: 12px auto 0;
  border-radius: 3px;
}

.section-title p {
  color: var(--text-light);
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 18px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,167,58,0.15);
}

.feature-card .icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15,43,74,0.2);
  transition: var(--transition);
}

.feature-card:hover .icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(15,43,74,0.3);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== STEPS GRID (numbered) ===== */
.steps-grid .feature-card .icon {
  font-size: 22px;
  font-weight: 700;
}

/* ===== CONTENT AREA ===== */
.content-area {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}

.content-area h2 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--secondary);
  font-weight: 600;
}

.content-area h3 {
  color: var(--primary-light);
  font-size: 20px;
  margin: 28px 0 14px;
  font-weight: 500;
}

.content-area h4 {
  color: var(--text-dark);
  font-size: 18px;
  margin: 20px 0 10px;
  font-weight: 500;
}

.content-area p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.8;
}

.content-area ul, .content-area ol {
  margin: 16px 0;
  padding-left: 28px;
}

.content-area li {
  margin-bottom: 10px;
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
}

.content-area ul li::marker {
  color: var(--secondary);
}

.content-area ol li::marker {
  color: var(--primary);
  font-weight: 600;
}

.content-area strong {
  color: var(--primary);
}

.content-area a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}

.content-area a:hover {
  color: var(--secondary-dark);
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.pricing-table th {
  padding: 18px 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.pricing-table th:first-child { padding-left: 24px; }
.pricing-table th:last-child { padding-right: 24px; }

.pricing-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #edf2f7;
  font-size: 16px;
  background: var(--white);
}

.pricing-table td:first-child { padding-left: 24px; }
.pricing-table td:last-child { padding-right: 24px; }

.pricing-table tbody tr {
  transition: var(--transition);
}

.pricing-table tbody tr:hover td {
  background: #f7fafc;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) td {
  background: #fafbfc;
}

.pricing-table tbody tr:nth-child(even):hover td {
  background: #f7fafc;
}

.price {
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,167,58,0.15);
}

.contact-card .icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(15,43,74,0.18);
  transition: var(--transition);
}

.contact-card:hover .icon {
  transform: scale(1.06);
}

.contact-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-card p, .contact-card a {
  color: var(--text-light);
  font-size: 16px;
  text-decoration: none;
}

.contact-card a:hover { color: var(--primary); }

/* ===== HIGHLIGHTS / STATS ===== */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.highlight-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top right, rgba(212,167,58,0.06) 0%, transparent 70%);
}

.highlight-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.highlight-item .num {
  font-size: 34px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.1;
}

.highlight-item h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.highlight-item p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== SUBJECT TAGS ===== */
.subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
}

.subject-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ebf4ff 0%, #f0f7ff 100%);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 15px;
  border: 1px solid #d4e4f7;
  transition: var(--transition);
  cursor: default;
}

.subject-tag:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--white);
  border-bottom: 1px solid #edf2f7;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb span { color: var(--primary); font-weight: 500; }

/* ===== QUOTE / TESTIMONIAL ===== */
.quote-block {
  background: linear-gradient(135deg, #ebf4ff 0%, #f0fff4 100%);
  border-radius: var(--radius);
  padding: 44px;
  margin: 30px 0;
  text-align: center;
  border: 1px solid #d4e4f7;
  position: relative;
}

.quote-block::before {
  content: '\201C';
  font-size: 80px;
  color: var(--secondary);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-block p {
  font-size: 20px;
  font-style: italic;
  color: var(--primary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.quote-block .author {
  font-style: normal;
  font-size: 16px;
  color: var(--text-light);
  margin-top: 16px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, var(--primary) 0%, #0a1f36 100%);
  color: var(--white);
  padding: 55px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light), var(--secondary));
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

footer h3 {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--secondary-light);
  font-weight: 600;
  letter-spacing: 0.3px;
}

footer p, footer a {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 2.3;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

footer a:hover {
  color: var(--secondary-light);
  padding-left: 4px;
}

footer .container div:last-child p {
  white-space: nowrap;
}

footer .footer-about p {
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

footer .footer-about h3 {
  font-size: 20px;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 44px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

/* ===== FLOATING CONTACT ===== */
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.floating-contact .line-btn {
  background: linear-gradient(135deg, #00c300 0%, #009900 100%);
}

.floating-contact .phone-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #2f855a 100%);
}

.floating-contact a:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.floating-contact a .label {
  display: none;
}

/* ===== CONTENT IMAGES ===== */
.content-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}

.content-img-left {
  float: left;
  margin: 0 28px 16px 0;
  max-width: 45%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-img-right {
  float: right;
  margin: 0 0 16px 28px;
  max-width: 45%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-img-center {
  display: block;
  margin: 28px auto;
  max-width: 80%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.qr-img {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin: 12px auto;
  display: block;
}

.hero-img {
  max-width: 200px;
  border-radius: var(--radius);
  margin: 20px auto;
  display: block;
  box-shadow: var(--shadow-lg);
}

.logo-img {
  height: 50px;
  width: auto;
}

.feature-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .content-img-left, .content-img-right {
    float: none;
    max-width: 100%;
    margin: 16px auto;
    display: block;
  }
  .content-img-center { max-width: 100%; }
}

/* ===== DIVIDER ===== */
hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 44px 0;
}

/* ===== FAQ ITEMS ===== */
.faq-item {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: var(--transition);
  cursor: default;
}

.faq-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.faq-item h4 {
  color: var(--primary);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-item h4::before {
  content: '\f059';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  color: var(--secondary);
  font-size: 16px;
}

.faq-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item p a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* ===== LAYOUT STANDARDS ===== */
.section-cta {
  text-align: center;
  margin-top: 44px;
}

.text-center { text-align: center; }

.img-inline {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 20px auto;
}

.qr-section {
  text-align: center;
  margin: 30px 0;
}

.qr-section p {
  margin-top: 10px;
  color: var(--text-light);
}

.cta-text {
  text-align: center;
  font-size: 18px;
}

.cta-text strong {
  display: block;
}

/* ===== BUTTON GROUP ===== */
.btn-group-center {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== NOTICE BOX ===== */
.notice-box {
  background: #fffbeb;
  border: 1px solid #fbbf24;
  border-radius: var(--radius);
  padding: 28px;
  margin: 30px 0;
  position: relative;
  padding-left: 56px;
}

.notice-box::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 24px;
  top: 28px;
  color: #d97706;
  font-size: 20px;
}

.notice-box h3 {
  color: #92400e;
  margin-bottom: 10px;
}

.notice-box p {
  color: #92400e;
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
  margin-top: 50px;
  padding-top: 32px;
  border-top: 2px solid var(--secondary);
}

.article-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.article-author { margin: 5px 0 15px; color: #666; font-size: 0.95em; }

.article-date i {
  margin-right: 6px;
  color: var(--secondary);
}

.related-articles h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
}

.related-articles ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.related-articles ul li a {
  display: block;
  padding: 16px 20px;
  background: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding-left: 20px;
}

.related-articles ul li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 14px;
  transition: var(--transition);
}

.related-articles ul li a:hover {
  border-color: var(--secondary);
  background: #fef9e7;
  color: var(--primary);
  padding-left: 28px;
}

.related-articles ul li a:hover::before {
  left: 12px;
}

/* ===== SITEMAP ===== */
.sitemap-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.sitemap-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sitemap-section h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--secondary);
}

.sitemap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-section ul li {
  padding: 8px 0 8px 14px;
  font-size: 16px;
  border-bottom: 1px solid #f7fafc;
  position: relative;
}

.sitemap-section ul li::before {
  content: '\f0c1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 12px;
  color: var(--text-muted);
}

.sitemap-section ul li a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

.sitemap-section ul li a:hover {
  color: var(--secondary-dark);
  padding-left: 6px;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.trust-badge i {
  color: var(--secondary);
  font-size: 16px;
}

.trust-badge strong {
  color: var(--primary);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step .step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 700;
}

.process-step h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  footer .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 { font-size: 34px; }
  .page-banner h1 { font-size: 30px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-toggle { display: block; }

  .top-bar { display: none; }

  nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 40px rgba(0,0,0,0.12);
    padding: 72px 20px 24px;
    overflow-y: auto;
    z-index: 1000;
  }

  nav.open { display: block; animation: navSlideRight 0.3s ease; }

  @keyframes navSlideRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }

  nav ul {
    flex-direction: column;
    gap: 2px;
  }

  nav ul li a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  nav ul li a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
  }

  nav ul li a.active {
    background: rgba(212, 167, 58, 0.1);
    border-left: 3px solid var(--secondary);
    font-weight: 500;
  }

  /* Mobile dropdown */
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 24px;
    background: transparent;
    animation: none;
    transform: none;
  }

  .dropdown.open .dropdown-menu { display: block; }

  .dropdown-menu li a {
    padding: 10px 16px;
    font-size: 14px;
  }

  .dropdown-menu li a:hover { transform: none; }

  nav ul li.dropdown > a::after { margin-left: auto; }

  .nav-cta { margin-top: 8px; }
  .nav-cta a {
    justify-content: center;
    padding: 12px 20px;
    border-radius: var(--radius);
    margin-left: 0;
  }

  /* Mobile contact in nav */
  .nav-contact {
    display: block;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #edf2f7;
  }

  .nav-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
  }

  .nav-contact a i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
  }

  .nav-contact a:hover { color: var(--primary); }

  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 16px; }

  .page-banner { padding: 40px 0; }
  .page-banner h1 { font-size: 24px; }
  .page-banner p { font-size: 15px; }

  .section-title h2 { font-size: 24px; }

  section { padding: 50px 0; }

  .content-area { padding: 24px; }
  .content-area p { font-size: 16px; }
  .content-area li { font-size: 15px; }

  .top-bar .container { flex-direction: column; text-align: center; }

  footer .container { grid-template-columns: 1fr; text-align: center; }

  footer a:hover { padding-left: 0; }

  .pricing-table { font-size: 13px; }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 12px;
  }

  .floating-contact {
    bottom: 16px;
    right: 16px;
  }

  .floating-contact a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .quote-block { padding: 30px 24px; }
  .quote-block p { font-size: 17px; }

  .notice-box { padding-left: 48px; }
  .notice-box::before { left: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero .btn-group { flex-direction: column; }
  .hero .btn { width: 100%; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  .btn-group-center { flex-direction: column; align-items: stretch; }
  .btn-group-center .btn { justify-content: center; }

  .related-articles ul { grid-template-columns: 1fr; }
}

/* ===== PRINT ===== */
@media print {
  .top-bar, .nav-toggle, nav, .floating-contact, footer { display: none; }
  .hero { padding: 30px 0; background: var(--primary) !important; }
  section { padding: 20px 0; }
}
