/*
 * global-style-v1.css
 * Tiger Sourcing China — Global Stylesheet
 * Use this file for ALL pages. Load once in WordPress Elementor > Custom CSS or via child theme style.css.
 * Last updated: 2026-04-30
 */

/* ============================================================
   0. GOOGLE FONTS IMPORT
   Add this <link> in your <head> before this stylesheet:
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --ts-navy-900:   #050a14;
  --ts-navy-800:   #0a0f1e;
  --ts-navy-700:   #0d1526;
  --ts-navy-600:   #112038;
  --ts-gold:       #d4a843;
  --ts-gold-light: #f0d080;
  --ts-gold-dark:  #b8912a;
  --ts-gray-100:   #f8f6f0;
  --ts-gray-200:   #e5e1d8;
  --ts-gray-400:   #9ca3af;
  --ts-gray-500:   #6b7280;
  --ts-gray-600:   #4b5563;
  --ts-white:      #ffffff;

  /* Typography */
  --ts-font-display: 'Playfair Display', Georgia, serif;
  --ts-font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing base: 8px */
  --ts-space-1:  8px;
  --ts-space-2:  16px;
  --ts-space-3:  24px;
  --ts-space-4:  32px;
  --ts-space-5:  40px;
  --ts-space-6:  48px;
  --ts-space-8:  64px;
  --ts-space-10: 80px;
  --ts-space-14: 112px;

  /* Border radius */
  --ts-radius: 4px;

  /* Transitions */
  --ts-transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ts-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ts-gray-400);
  background-color: var(--ts-navy-800);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--ts-gold-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ts-font-display);
  line-height: 1.2;
  color: var(--ts-white);
  font-weight: 700;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.ts-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--ts-space-2);
}

@media (min-width: 640px) {
  .ts-container { padding: 0 var(--ts-space-3); }
}

@media (min-width: 1024px) {
  .ts-container { padding: 0 var(--ts-space-4); }
}

.ts-section {
  padding: var(--ts-space-10) 0;
}

.ts-section-lg {
  padding: var(--ts-space-14) 0;
}

@media (max-width: 1023px) {
  .ts-section    { padding: var(--ts-space-8) 0; }
  .ts-section-lg { padding: var(--ts-space-10) 0; }
}

@media (max-width: 639px) {
  .ts-section    { padding: var(--ts-space-6) 0; }
  .ts-section-lg { padding: var(--ts-space-8) 0; }
}

.ts-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ts-space-4);
}

.ts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ts-space-3);
}

.ts-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ts-space-3);
}

@media (max-width: 1023px) {
  .ts-grid-3 { grid-template-columns: 1fr 1fr; }
  .ts-grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 639px) {
  .ts-grid-2 { grid-template-columns: 1fr; }
  .ts-grid-3 { grid-template-columns: 1fr; }
  .ts-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   4. BACKGROUNDS
   ============================================================ */
.ts-bg-900 { background-color: var(--ts-navy-900); }
.ts-bg-800 { background-color: var(--ts-navy-800); }
.ts-bg-700 { background-color: var(--ts-navy-700); }
.ts-bg-light { background-color: var(--ts-gray-100); }

/* ============================================================
   5. TYPOGRAPHY HELPERS
   ============================================================ */
.ts-gold-text {
  background: linear-gradient(135deg, var(--ts-gold-light) 0%, var(--ts-gold) 50%, var(--ts-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ts-section-label {
  display: inline-block;
  font-family: var(--ts-font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ts-gold);
}

.ts-gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--ts-gold), var(--ts-gold-dark));
  border-radius: 2px;
  margin-bottom: var(--ts-space-3);
}

.ts-section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ts-white);
  margin-bottom: var(--ts-space-3);
}

.ts-section-subheading {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--ts-white);
  margin-bottom: var(--ts-space-2);
}

.ts-body-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ts-gray-400);
}

.ts-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ts-gray-400);
}

.ts-meta {
  font-size: 0.875rem;
  color: var(--ts-gray-500);
}

/* Light section text overrides */
.ts-bg-light h1,
.ts-bg-light h2,
.ts-bg-light h3,
.ts-bg-light h4 {
  color: var(--ts-navy-900);
}

.ts-bg-light p,
.ts-bg-light li {
  color: var(--ts-gray-600);
}

.ts-bg-light .ts-meta {
  color: var(--ts-gray-500);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.ts-btn,
.ts-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 18px 36px;
  font-family: var(--ts-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--ts-radius);
  cursor: pointer;
  text-decoration: none;
  transition: var(--ts-transition);
  white-space: nowrap;
  border: none;
  line-height: 1.2;
}

/* Primary gold button */
.ts-btn {
  background: linear-gradient(135deg, var(--ts-gold-light) 0%, var(--ts-gold) 50%, var(--ts-gold-dark) 100%);
  color: var(--ts-navy-900);
}

.ts-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 168, 67, 0.4);
  color: var(--ts-navy-900);
}

.ts-btn:active {
  transform: translateY(0);
}

/* Outline gold button */
.ts-btn-outline {
  background: transparent;
  color: var(--ts-gold);
  border: 2px solid var(--ts-gold);
}

.ts-btn-outline:hover {
  background: rgba(212, 168, 67, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.25);
  color: var(--ts-gold-light);
  border-color: var(--ts-gold-light);
}

/* Small nav button */
.ts-btn-sm {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Button group — full-width on mobile */
.ts-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ts-space-2);
  align-items: center;
}

@media (max-width: 639px) {
  .ts-btn-group .ts-btn,
  .ts-btn-group .ts-btn-outline {
    width: 100%;
  }
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.ts-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  padding: 0 var(--ts-space-2);
}

.ts-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.ts-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--ts-space-1);
  text-decoration: none;
}

.ts-nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--ts-radius);
  background: linear-gradient(135deg, var(--ts-gold-light), var(--ts-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ts-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ts-navy-900);
}

.ts-nav-logo-text {
  font-family: var(--ts-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ts-white);
  line-height: 1.2;
}

.ts-nav-logo-sub {
  font-family: var(--ts-font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ts-gold);
  display: block;
}

.ts-nav-links {
  display: flex;
  align-items: center;
  gap: var(--ts-space-4);
  list-style: none;
}

.ts-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--ts-transition);
}

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

.ts-nav-cta {
  display: flex;
  align-items: center;
  gap: var(--ts-space-2);
}

.ts-nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ts-gray-400);
  text-decoration: none;
  transition: var(--ts-transition);
}

.ts-nav-whatsapp:hover {
  color: var(--ts-gold);
}

@media (max-width: 1023px) {
  .ts-nav-links { display: none; }
}

@media (max-width: 639px) {
  .ts-nav-whatsapp span { display: none; }
}

/* Breadcrumb */
.ts-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--ts-gray-500);
  margin-bottom: var(--ts-space-3);
  flex-wrap: wrap;
}

.ts-breadcrumb a {
  color: var(--ts-gray-500);
  text-decoration: none;
  transition: var(--ts-transition);
}

.ts-breadcrumb a:hover {
  color: var(--ts-gold);
}

.ts-breadcrumb-sep {
  color: var(--ts-gray-500);
  opacity: 0.5;
}

.ts-breadcrumb-current {
  color: var(--ts-gold);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.ts-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--ts-navy-900);
  overflow: hidden;
  padding-top: 72px;
}

.ts-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/hero-background.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.ts-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,10,20,0.95) 0%, rgba(5,10,20,0.6) 60%, rgba(5,10,20,0.3) 100%);
}

.ts-hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--ts-gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--ts-gold) 1px, transparent 1px);
  background-size: 80px 80px;
}

.ts-hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--ts-space-14) 0;
}

.ts-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--ts-radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ts-gold);
  margin-bottom: var(--ts-space-3);
}

.ts-hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--ts-white);
  line-height: 1.1;
  margin-bottom: var(--ts-space-3);
  max-width: 720px;
}

.ts-hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: var(--ts-space-5);
}

.ts-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ts-space-4);
  margin-top: var(--ts-space-5);
  padding-top: var(--ts-space-5);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.ts-hero-stat-value {
  font-family: var(--ts-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ts-gold);
  line-height: 1;
}

.ts-hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ts-gray-500);
  margin-top: 4px;
}

/* Compact page hero (for inner pages) */
.ts-page-hero {
  background-color: var(--ts-navy-900);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.ts-page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--ts-gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--ts-gold) 1px, transparent 1px);
  background-size: 80px 80px;
}

.ts-page-hero-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,168,67,0.3), transparent);
}

.ts-page-hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ts-white);
  margin-bottom: var(--ts-space-2);
  max-width: 700px;
}

.ts-page-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   9. CARDS
   ============================================================ */
.ts-card {
  background: var(--ts-navy-700);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--ts-radius);
  padding: var(--ts-space-3);
  transition: var(--ts-transition);
}

.ts-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.ts-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ts-radius);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--ts-space-2);
  font-size: 1.25rem;
  color: var(--ts-gold);
}

.ts-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ts-white);
  margin-bottom: 8px;
  font-family: var(--ts-font-body);
}

.ts-card-body {
  font-size: 0.875rem;
  color: var(--ts-gray-500);
  line-height: 1.6;
}

/* Stat card */
.ts-stat-card {
  background: var(--ts-navy-700);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: var(--ts-radius);
  padding: var(--ts-space-3) var(--ts-space-2);
  text-align: center;
}

.ts-stat-value {
  font-family: var(--ts-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.ts-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ts-gray-500);
}

/* Pillar row */
.ts-pillar {
  display: flex;
  align-items: center;
  gap: var(--ts-space-2);
  padding: var(--ts-space-2);
  background: var(--ts-navy-700);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--ts-radius);
  transition: var(--ts-transition);
}

.ts-pillar:hover {
  border-color: rgba(212, 168, 67, 0.3);
}

.ts-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ts-radius);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--ts-gold);
}

.ts-pillar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ts-white);
  margin-bottom: 2px;
  font-family: var(--ts-font-body);
}

.ts-pillar-sub {
  font-size: 0.75rem;
  color: var(--ts-gray-500);
}

/* ============================================================
   10. CTA STRIP
   ============================================================ */
.ts-cta-strip {
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: var(--ts-space-6) 0;
}

.ts-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ts-space-4);
  flex-wrap: wrap;
}

.ts-cta-strip-heading {
  font-family: var(--ts-font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--ts-white);
  line-height: 1.3;
}

.ts-cta-strip-sub {
  font-size: 0.875rem;
  color: var(--ts-gray-400);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .ts-cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   11. TAG / BADGE
   ============================================================ */
.ts-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--ts-radius);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ts-gold);
}

.ts-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   12. DIVIDERS
   ============================================================ */
.ts-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,168,67,0.25), transparent);
  margin: var(--ts-space-6) 0;
}

/* ============================================================
   13. STEP / PROCESS ITEM
   ============================================================ */
.ts-step {
  display: flex;
  gap: var(--ts-space-3);
  align-items: flex-start;
  margin-bottom: var(--ts-space-4);
}

.ts-step-number {
  font-family: var(--ts-font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(212, 168, 67, 0.15);
  flex-shrink: 0;
  width: 56px;
  text-align: right;
}

.ts-step-content {}

.ts-step-title {
  font-family: var(--ts-font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ts-white);
  margin-bottom: 6px;
}

.ts-step-body {
  font-size: 0.875rem;
  color: var(--ts-gray-500);
  line-height: 1.65;
}

/* ============================================================
   14. TESTIMONIAL CARD
   ============================================================ */
.ts-testimonial {
  background: var(--ts-navy-700);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--ts-radius);
  padding: var(--ts-space-3);
}

.ts-testimonial-stars {
  color: var(--ts-gold);
  font-size: 0.875rem;
  margin-bottom: var(--ts-space-1);
  letter-spacing: 2px;
}

.ts-testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ts-gray-400);
  font-style: italic;
  margin-bottom: var(--ts-space-2);
}

.ts-testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ts-white);
}

.ts-testimonial-meta {
  font-size: 0.75rem;
  color: var(--ts-gray-500);
  margin-top: 2px;
}

/* ============================================================
   15. FAQ / ACCORDION
   ============================================================ */
.ts-faq-item {
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--ts-radius);
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--ts-navy-700);
}

.ts-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--ts-space-2) var(--ts-space-3);
  cursor: pointer;
  font-family: var(--ts-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ts-white);
  list-style: none;
  gap: var(--ts-space-2);
}

.ts-faq-item summary::-webkit-details-marker { display: none; }

.ts-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--ts-gold);
  flex-shrink: 0;
  transition: var(--ts-transition);
}

.ts-faq-item[open] summary::after {
  content: '−';
}

.ts-faq-item summary:hover {
  background: rgba(212, 168, 67, 0.05);
}

.ts-faq-body {
  padding: 0 var(--ts-space-3) var(--ts-space-2);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ts-gray-400);
}

/* ============================================================
   16. CONTACT FORM
   ============================================================ */
.ts-form {
  background: var(--ts-navy-700);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: var(--ts-radius);
  padding: var(--ts-space-5);
}

@media (max-width: 639px) {
  .ts-form { padding: var(--ts-space-3); }
}

.ts-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ts-space-2);
}

@media (max-width: 639px) {
  .ts-form-grid { grid-template-columns: 1fr; }
}

.ts-form-full {
  grid-column: 1 / -1;
}

.ts-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ts-gray-400);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.ts-input,
.ts-select,
.ts-textarea {
  width: 100%;
  background: var(--ts-navy-600);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--ts-radius);
  padding: 14px 16px;
  font-family: var(--ts-font-body);
  font-size: 0.9375rem;
  color: var(--ts-white);
  transition: var(--ts-transition);
  outline: none;
  -webkit-appearance: none;
}

.ts-input::placeholder,
.ts-textarea::placeholder {
  color: var(--ts-gray-500);
}

.ts-input:focus,
.ts-select:focus,
.ts-textarea:focus {
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.08);
}

.ts-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4a843' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.ts-form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ts-form-submit {
  margin-top: var(--ts-space-2);
}

.ts-form-note {
  font-size: 0.75rem;
  color: var(--ts-gray-500);
  margin-top: var(--ts-space-1);
  line-height: 1.5;
}

/* ============================================================
   17. CASE STUDY CARD
   ============================================================ */
.ts-case-card {
  background: var(--ts-navy-700);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--ts-radius);
  overflow: hidden;
  transition: var(--ts-transition);
}

.ts-case-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.ts-case-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ts-case-card-body {
  padding: var(--ts-space-3);
}

.ts-case-card-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ts-gold);
  margin-bottom: 8px;
}

.ts-case-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ts-white);
  margin-bottom: 8px;
  font-family: var(--ts-font-display);
}

.ts-case-card-summary {
  font-size: 0.875rem;
  color: var(--ts-gray-500);
  line-height: 1.6;
  margin-bottom: var(--ts-space-2);
}

.ts-case-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ts-gold);
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.ts-footer {
  background: var(--ts-navy-900);
  border-top: 1px solid rgba(212, 168, 67, 0.12);
  padding: var(--ts-space-10) 0 var(--ts-space-4);
}

.ts-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--ts-space-6);
  padding-bottom: var(--ts-space-8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 1023px) {
  .ts-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 639px) {
  .ts-footer-grid { grid-template-columns: 1fr; gap: var(--ts-space-4); }
}

.ts-footer-logo {
  font-family: var(--ts-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ts-white);
  margin-bottom: var(--ts-space-1);
}

.ts-footer-tagline {
  font-size: 0.8125rem;
  color: var(--ts-gray-500);
  line-height: 1.6;
  margin-bottom: var(--ts-space-3);
  max-width: 280px;
}

.ts-footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--ts-gray-400);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--ts-transition);
}

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

.ts-footer-col-title {
  font-family: var(--ts-font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ts-gold);
  margin-bottom: var(--ts-space-2);
}

.ts-footer-links {
  list-style: none;
  padding: 0;
}

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

.ts-footer-links a {
  font-size: 0.875rem;
  color: var(--ts-gray-400);
  text-decoration: none;
  transition: var(--ts-transition);
}

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

.ts-footer-bottom {
  padding-top: var(--ts-space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--ts-space-2);
}

.ts-footer-copy {
  font-size: 0.8125rem;
  color: var(--ts-gray-500);
}

.ts-footer-hubs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   19. FLOATING WHATSAPP BUTTON
   ============================================================ */
.ts-wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  font-family: var(--ts-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--ts-transition);
}

.ts-wa-float:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.ts-wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .ts-wa-float {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
  }
  .ts-wa-float span { display: none; }
}

/* ============================================================
   20. UTILITY CLASSES
   ============================================================ */
.ts-text-center { text-align: center; }
.ts-text-right  { text-align: right; }
.ts-mb-0  { margin-bottom: 0; }
.ts-mb-2  { margin-bottom: var(--ts-space-2); }
.ts-mb-3  { margin-bottom: var(--ts-space-3); }
.ts-mb-4  { margin-bottom: var(--ts-space-4); }
.ts-mb-5  { margin-bottom: var(--ts-space-5); }
.ts-mb-6  { margin-bottom: var(--ts-space-6); }
.ts-mt-4  { margin-top: var(--ts-space-4); }
.ts-mt-6  { margin-top: var(--ts-space-6); }
.ts-hidden-mobile { display: block; }

@media (max-width: 639px) {
  .ts-hidden-mobile { display: none; }
}

/* ============================================================
   21. PAGE-SPECIFIC OVERRIDES
   Place any page-specific styles below this line.
   ============================================================ */
