@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ═══════════════════════════════════════════
   DESIGN SYSTEM — LEO INTERIOR SERVICES
   Premium Dark Luxury Theme
   ═══════════════════════════════════════════ */

:root {
  /* Core Palette */
  --primary-black: #0D0D0D;
  --surface-dark: #141414;
  --surface-card: #1A1A1A;
  --surface-elevated: #222222;
  --gold: #C9A227;
  --gold-light: #E8C547;
  --gold-dim: #8B7019;
  --off-white: #F5F0EA;
  --text-body: #B8B8B8;
  --text-heading: #FFFFFF;
  --text-muted: #777777;
  --accent-green: #E8C547; /* Vibrant luxury Gold instead of WhatsApp green! */
  --accent-green-dark: #C9A227; /* Rich Gold! */

  /* Typography */
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px 20px;
  --section-padding-sm: 60px 16px;

  /* Effects */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.15);
  --glass-bg: rgba(26, 26, 26, 0.7);
  --glass-border: rgba(201, 162, 39, 0.12);
  --border-subtle: rgba(255,255,255,0.06);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--primary-black);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

::selection {
  background: var(--gold);
  color: var(--primary-black);
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY CLASSES
   ═══════════════════════════════════════════ */

.heading-xl {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.heading-lg {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.3;
  font-weight: 600;
}

.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-center { text-align: center; }

/* Section subtitle style */
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Gold accent line under headings */
.heading-lg::after,
.section .heading-lg::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 16px;
  border-radius: 2px;
}

.text-center .heading-lg::after,
.text-center.heading-lg::after {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  gap: 10px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary-black);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
  filter: brightness(1.1);
}

.btn-green {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  color: var(--primary-black);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(230, 213, 184, 0.2);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 213, 184, 0.3);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background-color: var(--surface-dark);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p {
  color: inherit;
}

/* Alternate light section */
.section-alt {
  background-color: var(--surface-card);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand img {
  height: 42px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-brand img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .btn-green {
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: 50px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(165deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.65) 100%), url('../images/hero.webp') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* Subtle gold gradient overlay at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--primary-black), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero h1 {
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */

.stats-bar {
  background: var(--surface-dark);
  padding: 60px 20px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   ABOUT SNIPPET
   ═══════════════════════════════════════════ */

.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--glass-border);
}

/* Gold corner accent */
.about-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm) 0 0 0;
  pointer-events: none;
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-sm) 0;
  pointer-events: none;
}

.about-content h2::after {
  margin-left: 0;
}

.about-content p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
}

.about-link {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.95rem;
}

.about-link:hover {
  color: var(--gold-light);
  gap: 12px;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════ */

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

.service-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.service-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.service-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--surface-card), transparent);
  pointer-events: none;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-content {
  padding: 24px 20px;
}

.service-title {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
}

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

/* ═══════════════════════════════════════════
   BEFORE & AFTER SLIDER
   ═══════════════════════════════════════════ */

.ba-sliders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.ba-before, .ba-after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ba-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  cursor: ew-resize;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}

.ba-handle::after {
  content: '⟷';
  color: var(--primary-black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

/* Labels */
.ba-slider::before {
  content: 'BEFORE';
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.ba-after-wrapper::before {
  content: 'AFTER';
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(201, 162, 39, 0.85);
  color: var(--primary-black);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 5;
}

.ba-caption {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* ═══════════════════════════════════════════
   TRUST / WHY CHOOSE US
   ═══════════════════════════════════════════ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.trust-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.trust-block:hover {
  border-color: var(--glass-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.2);
}

.trust-block h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.trust-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

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

.testi-card {
  background: var(--surface-card);
  border-left: 3px solid var(--gold);
  padding: 32px;
  width: 380px;
  border-radius: var(--radius-md);
  border-top: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  flex-shrink: 0;
}

.testi-card:hover {
  background: var(--surface-elevated);
}

.stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

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

.testi-author {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.testi-loc {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   TIKTOK SECTION
   ═══════════════════════════════════════════ */

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.tiktok-grid blockquote {
  margin: 0 !important;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */

.cta-section {
  background: linear-gradient(135deg, var(--surface-dark) 0%, #1a1508 50%, var(--surface-dark) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-body);
}

.cta-sub {
  max-width: 550px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-note {
  color: var(--text-muted) !important;
  font-size: 0.82rem;
  margin-top: 16px;
}

.cta-section .btn-green {
  font-size: 1.15rem;
  padding: 16px 40px;
  border-radius: 50px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background-color: var(--primary-black);
  color: #fff;
  padding: 80px 20px 30px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--primary-black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer h4 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  align-items: flex-start;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
  font-style: normal;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(201,162,39,0.15);
  color: var(--text-muted);
  font-size: 0.82rem;
  max-width: 1200px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════ */

.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-green);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background-color: var(--surface-card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
  background-color: var(--surface-elevated);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ═══════════════════════════════════════════
   PAGE HERO (for sub-pages)
   ═══════════════════════════════════════════ */

.page-hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: linear-gradient(165deg, var(--primary-black) 0%, var(--surface-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */

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

.faq-item:hover {
  border-color: var(--glass-border);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
  font-weight: 300;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PORTFOLIO GRID
   ═══════════════════════════════════════════ */

.portfolio-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--primary-black);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   VALUES / FEATURE BLOCKS
   ═══════════════════════════════════════════ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid rgba(201,162,39,0.2);
}

/* ═══════════════════════════════════════════
   SCROLL INDICATOR
   ═══════════════════════════════════════════ */

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  z-index: 3;
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* ═══════════════════════════════════════════
   SERVICE DETAIL (services page)
   ═══════════════════════════════════════════ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.service-detail-content h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-detail-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER & TRANSLATION SYSTEM
   ═══════════════════════════════════════════ */

.lang-switch-btn {
  background: var(--surface-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.lang-switch-btn:hover {
  background: var(--gold);
  color: var(--primary-black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hide Pidgin elements by default */
.lang-pid {
  display: none !important;
}

/* Show Pidgin / Hide English when body has .pidgin class */
body.pidgin .lang-en {
  display: none !important;
}

body.pidgin .lang-pid {
  display: block !important;
}

/* Inline typography toggles */
body span.lang-pid,
body a.lang-pid,
body strong.lang-pid,
body i.lang-pid,
body p.lang-pid,
body h1.lang-pid,
body h2.lang-pid,
body h3.lang-pid,
body h4.lang-pid {
  display: none !important;
}

body.pidgin span.lang-pid,
body.pidgin a.lang-pid,
body.pidgin strong.lang-pid,
body.pidgin i.lang-pid,
body.pidgin p.lang-pid,
body.pidgin h1.lang-pid,
body.pidgin h2.lang-pid,
body.pidgin h3.lang-pid,
body.pidgin h4.lang-pid {
  display: inline !important;
}

body.pidgin span.lang-en,
body.pidgin a.lang-en,
body.pidgin strong.lang-en,
body.pidgin i.lang-en,
body.pidgin p.lang-en,
body.pidgin h1.lang-en,
body.pidgin h2.lang-en,
body.pidgin h3.lang-en,
body.pidgin h4.lang-en {
  display: none !important;
}

/* Block, Flex, and Grid container toggles */
body.pidgin div.lang-pid,
body.pidgin section.lang-pid {
  display: block !important;
}

body.pidgin div.lang-pid.flex,
body.pidgin section.lang-pid.flex {
  display: flex !important;
}

body.pidgin div.lang-pid.grid,
body.pidgin section.lang-pid.grid {
  display: grid !important;
}

body.pidgin ul.lang-pid {
  display: block !important;
}

body.pidgin li.lang-pid {
  display: list-item !important;
}

/* ═══════════════════════════════════════════
   DIRECTORY MAP & OFFICE SECTION
   ═══════════════════════════════════════════ */

.map-section {
  padding: var(--section-padding);
  background-color: var(--surface-dark);
  border-top: 1px solid var(--border-subtle);
}

.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.map-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.map-card:hover {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.map-card h3 {
  color: var(--gold);
  margin-bottom: 16px;
}

.map-card p {
  color: var(--text-body);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.map-details {
  margin-bottom: 28px;
}

.map-details-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.map-details-item i {
  color: var(--gold);
  font-style: normal;
  font-size: 1.1rem;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  height: 400px;
  width: 100%;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ═══════════════════════════════════════════
   PREMIUM STATS CARDS (replaces stats-bar)
   ═══════════════════════════════════════════ */

.premium-stats {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.premium-stats .container {
  max-width: 1100px;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.3));
}

.stat-card-value {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-card-value .stat-stars {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   HORIZONTAL TIKTOK CAROUSEL
   ═══════════════════════════════════════════ */

.tiktok-slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}

.tiktok-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}

.tiktok-slider::-webkit-scrollbar {
  display: none;
}

.tiktok-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition);
  min-height: 520px;
}

.tiktok-card:hover {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.tiktok-card blockquote {
  margin: 0 !important;
  padding: 0 !important;
  min-width: unset !important;
  max-width: 100% !important;
}

.tiktok-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.tiktok-scroll-hint span {
  animation: float 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   TRUSTED BRANDS / PARTNERS GRID
   ═══════════════════════════════════════════ */

.brands-section {
  padding: 80px 20px;
  background: var(--surface-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  min-width: 180px;
  transition: var(--transition);
  cursor: default;
}

.brand-item:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.brand-item-inner {
  text-align: center;
}

.brand-item-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}

.brand-item-name {
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.brand-item:hover .brand-item-name {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   PORTFOLIO FILTER BUTTONS
   ═══════════════════════════════════════════ */

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-black);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════════
   SUBPAGE HERO BANNER
   ═══════════════════════════════════════════ */

.page-hero {
  padding: 160px 20px 80px;
  background: linear-gradient(180deg, var(--primary-black) 0%, var(--surface-dark) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

/* ═══════════════════════════════════════════
   VALUES GRID (about page)
   ═══════════════════════════════════════════ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  font-size: 2.2rem;
}

/* ═══════════════════════════════════════════
   PORTFOLIO GRID (about team gallery)
   ═══════════════════════════════════════════ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

