/* ============================================================
   RestoSuite Global Stylesheet
   ============================================================ */

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

/* CSS Variables */
:root {
  --navy: #1D1B2E;
  --brand-blue: #2563EB;
  --brand-blue-dark: #1D4ED8;
  --accent-gold: #F59E0B;
  --accent-orange: #F97316;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --success: #10B981;
  --gradient-hero: linear-gradient(135deg, #1D1B2E 0%, #1e3a5f 50%, #1a2f4e 100%);
  --gradient-blue: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { line-height: 1.7; color: var(--gray-800); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}
.btn-primary:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-dark {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}
.btn-dark:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--navy);
  border-color: var(--accent-gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: #D97706;
  border-color: #D97706;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-outline-blue {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.btn-outline-blue:hover {
  background: var(--brand-blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.navbar-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-badge-hot {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--accent-orange);
  color: white;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  font-family: var(--font-main);
}
.lang-btn:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   Hero Section (Index)
   ============================================================ */
.hero {
  min-height: calc(100vh - 70px);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-content { }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: stretch;
  align-self: flex-start;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  width: 100%;
  height: 480px;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.slider-dot.active {
  background: #2563eb;
  transform: scale(1.3);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
  padding: 0;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.50);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.hero-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: var(--gradient-blue);
  opacity: 0.3;
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat .stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
   Trust Bar / Marquee
   ============================================================ */
.trust-bar {
  padding: 56px 24px;
  background: var(--white);
  overflow: hidden;
}

.trust-bar-header {
  text-align: center;
  margin-bottom: 2rem;
}

.trust-bar-header p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 15%, #fff 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.brand-chip:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
.brand-chip img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
  padding: 80px 24px;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-blue);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.stat-card .icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-blue);
}

.stat-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.15));
}

.stat-card .stat-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .stat-big span {
  color: var(--brand-blue);
}

.stat-card h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ============================================================
   Features Tab Section
   ============================================================ */
.features-section {
  padding: 100px 24px;
  background: var(--white);
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  margin-top: 3rem;
}

.features-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  border-left: 3px solid #E2E8F0;
  background: transparent;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  text-align: left;
  width: 100%;
  position: relative;
}

.feature-tab .tab-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.feature-tab .tab-icon svg {
  width: 20px;
  height: 20px;
  stroke: #64748B;
  color: #64748B;
  transition: all 0.25s ease;
  display: block;
}

.feature-tab span:not(.tab-icon) {
  position: relative;
  z-index: 1;
}

.feature-tab:hover {
  border-left-color: rgba(37, 99, 235, 0.4);
  color: var(--navy);
  background: rgba(37, 99, 235, 0.04);
}

.feature-tab:hover .tab-icon {
  background: rgba(37, 99, 235, 0.1);
  transform: scale(1.08);
}

.feature-tab:hover .tab-icon svg {
  stroke: #2563EB;
  color: #2563EB;
}

.feature-tab.active {
  border-left-color: var(--brand-blue);
  background: rgba(37, 99, 235, 0.06);
  color: var(--brand-blue);
  font-weight: 600;
}

.feature-tab.active .tab-icon {
  background: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  transform: scale(1.05);
}

.feature-tab.active .tab-icon svg {
  stroke: #ffffff;
  color: #ffffff;
}
}

.features-content {
  position: relative;
  min-height: 420px;
}

.feature-panel {
  display: none;
  animation: fadeInUp 0.35s ease;
}

.feature-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-panel-text h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.feature-panel-text p {
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}

.feature-bullets li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-panel-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-panel-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.feature-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-placeholder .ph-icon { font-size: 3rem; opacity: 0.5; }

/* ============================================================
   Dark CTA Strip
   ============================================================ */
.cta-strip {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-strip .btn { position: relative; }

/* ============================================================
   FHA Promo Banner
   ============================================================ */
.fha-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #7C2D12 40%, #C2410C 70%, #EA580C 100%);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.fha-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.25) 0%, transparent 65%);
}

.fha-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fha-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #FCD34D;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fha-banner h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.fha-banner .venue-info {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.fha-banner .deal-text {
  color: #FCD34D;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.countdown-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 80px;
  text-align: center;
}

.countdown-item .count-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.countdown-item .count-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================================
   Customer Logo Wall
   ============================================================ */
.logo-wall {
  padding: 80px 24px;
  background: var(--white);
}

.logo-wall .section-header { margin-bottom: 3rem; }

.brand-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

.brand-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 12px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  color: #475569;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.brand-card img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}

.brand-card:hover {
  border-color: #2563EB;
  box-shadow: 0 6px 20px rgba(37,99,235,0.12);
  transform: translateY(-3px);
  color: #1D1B2E;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 0;
}

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 64px 24px;
  text-align: center;
}

.footer-top h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-main {
  padding: 56px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  height: 24px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom .contact-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .contact-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-bottom .contact-links a:hover {
  color: var(--white);
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Products Page
   ============================================================ */
.products-section {
  padding: 100px 24px;
  background: var(--white);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-100);
}

.product-block:last-child { border-bottom: none; }

.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }

.product-block-text .block-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.product-block-text h3 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.product-block-text .product-desc {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
  line-height: 1.75;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.product-block-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.product-block-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-block-visual:hover img {
  transform: scale(1.03);
}

.product-placeholder {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Product placeholder gradients */
.ph-qr { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.ph-reservations { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.ph-kiosk { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.ph-kds { background: linear-gradient(135deg, #0f9b58 0%, #00b4d8 100%); }
.ph-bi { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.ph-table { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.ph-delivery { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.ph-loyalty { background: linear-gradient(135deg, #fda085 0%, #f6d365 100%); }

/* ============================================================
   FHA Page Specific
   ============================================================ */
.fha-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #1D1B2E 100%);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.fha-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fha-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fha-hero-top {
  text-align: center;
  margin-bottom: 3rem;
}

.fha-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #93C5FD;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fha-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.fha-hero .subtitle {
  font-size: 1.4rem;
  color: #93C5FD;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fha-venue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.fha-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}

.fha-photos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Panel Section */
.panel-section {
  padding: 80px 24px;
  background: var(--gray-50);
}

.panel-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.panel-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.panel-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.panel-text h2 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.panel-text .session-title {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.session-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.session-meta span {
  background: var(--gray-100);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.speakers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.speaker {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.speaker-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.speaker-info h5 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.speaker-info p {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 24px;
  background: var(--white);
}

.fha-notice {
  max-width: 900px;
  margin: 0 auto 3rem;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #92400E;
  font-size: 0.95rem;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.price-card.featured {
  border-color: var(--accent-gold);
  background: linear-gradient(180deg, #FFFBEB 0%, #FFF 40%);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1), var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.price-card-header {
  margin-bottom: 1.5rem;
}

.price-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 0.4rem;
}

.price-amount .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  padding-bottom: 8px;
}

.price-amount .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.price-original {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
  font-weight: 500;
}

.price-save {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
}

.price-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 1.5rem 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.price-features li .check {
  color: var(--success);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.price-freebies {
  background: linear-gradient(135deg, #FFF7ED, #FFFBEB);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 1.5rem;
}

.price-freebies h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.price-freebies p {
  font-size: 0.82rem;
  color: #B45309;
  line-height: 1.5;
  font-weight: 500;
}

/* Lucky Draw Section */
.lucky-draw {
  padding: 72px 24px;
  background: linear-gradient(135deg, #1a0a00 0%, #7C2D12 40%, #92400E 70%, #B45309 100%);
  position: relative;
  overflow: hidden;
}

.lucky-draw::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.3) 0%, transparent 60%);
}

.lucky-draw-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lucky-draw h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.lucky-draw > .lucky-draw-inner > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}

.prize-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.prize-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.prize-card .prize-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.prize-card .prize-qty { font-size: 1.8rem; font-weight: 800; color: #FCD34D; line-height: 1; }
.prize-card .prize-name { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-top: 4px; }

.fha-terms {
  padding: 32px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.fha-terms-inner {
  max-width: 900px;
  margin: 0 auto;
}

.fha-terms p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-section {
  padding: 80px 24px;
  background: var(--white);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  font-size: 0.975rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  border-color: var(--brand-blue);
  background: rgba(37, 99, 235, 0.03);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-method .method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method .method-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-method .method-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.form-group label .required { color: #EF4444; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 0.92rem;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition);
  color: var(--gray-800);
  background: white;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px;
}

/* ============================================================
   Section Container Helper
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 24px;
}

/* ============================================================
   Mobile Navigation Menu
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--navy);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero { min-height: auto; padding: 80px 24px 60px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-panel.active { grid-template-columns: 1fr; }
  .features-tabs { flex-direction: row; flex-wrap: wrap; }
  .feature-tab { flex: 0 0 auto; border-left: none; border-bottom: 3px solid transparent; }
  .feature-tab.active { border-left: none; border-bottom-color: var(--brand-blue); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .prizes-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .product-block { grid-template-columns: 1fr; gap: 32px; }
  .product-block.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr; }
  .fha-photos { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .lang-btn { display: none; }
  .hamburger { display: flex; }
  .navbar-actions .btn { display: none; }

  .hero h1 { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 16px; }
  .hero-stat:last-child { border-bottom: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { display: block; width: 100%; }
  .hero-slider { width: 100%; min-height: 260px; }
  .hero-slide img { max-height: 300px; object-fit: cover; }

  .countdown-container { flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr; }
  .prizes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
}

/* ============================================================
   Legal Pages (Privacy, Terms, PDPA)
   ============================================================ */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 90px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 10;
}

.legal-toc h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc ul li {
  margin-bottom: 4px;
}

.legal-toc ul li a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1.4;
}

.legal-toc ul li a:hover,
.legal-toc ul li a.active {
  background: var(--brand-blue);
  color: white;
}

.legal-toc-toggle {
  display: none;
  width: 100%;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  margin-bottom: 12px;
  color: var(--gray-800);
}

.legal-content {
  background: white;
  min-width: 0;
}

.legal-content section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  color: var(--gray-600);
  padding-left: 24px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul li, .legal-content ol li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--brand-blue);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.9rem;
}

.legal-table th {
  background: var(--navy);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  vertical-align: top;
}

.legal-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.legal-badge {
  display: inline-block;
  background: var(--brand-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-right: 8px;
  vertical-align: middle;
}

.legal-badge-green {
  background: var(--success);
}

.legal-contact-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 16px;
}

.legal-contact-box p {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px 60px;
  }

  .legal-toc-toggle {
    display: block;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc ul {
    display: none;
  }

  .legal-toc ul.open {
    display: block;
  }
}

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: white; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ============================================================
   Video Section
   ============================================================ */
.video-section {
  padding: 80px 0;
  background: #f8faff;
}

.video-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  background: #000;
  line-height: 0;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.video-sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.video-sound-btn:hover {
  background: rgba(0,0,0,0.75);
}

@media (max-width: 768px) {
  .video-section {
    padding: 50px 0;
  }
  .video-sound-btn {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ============================================================
   Hero Slide Cards (Text/Gradient Style)
   ============================================================ */
.hero-slide-card {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1e3a5f 0%, #1a2980 50%, #26d0ce 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.hero-slide-card::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -80px;
  right: -80px;
}

.hero-slide-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -40px;
  left: 20px;
}

.hero-slide-card.card-2 {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.hero-slide-card.card-3 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.slide-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.slide-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.slide-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.slide-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.slide-stat span {
  font-weight: 800;
  font-size: 1.05rem;
  color: #60A5FA;
}

@media (max-width: 768px) {
  .hero-slide-card {
    height: 300px;
    padding: 32px 24px;
  }
  .slide-icon { font-size: 2rem; margin-bottom: 14px; }
  .slide-headline { font-size: 1.3rem; }
  .slide-sub { font-size: 0.85rem; }
}

/* ============================================================
   Nav Dropdown (Resources > Customer Stories)
   ============================================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex !important;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.7;
  margin-left: 2px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem !important;
  white-space: nowrap;
  transition: all var(--transition);
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.1) !important;
  color: var(--white) !important;
}
.nav-dropdown-menu a.active-page {
  color: var(--white) !important;
  background: rgba(37,99,235,0.2) !important;
}
