/* ==========================================================================
   TEJAJ | Group of Companies — Premium UI/UX Upgrade
   style.css — Base styles, variables, typography, components, sections
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors (extracted & refined from tejaj.com) */
  --tj-navy: #0b1f3a;
  --tj-navy-2: #12294d;
  --tj-navy-soft: #1c3a63;
  --tj-gold: #c9973b;
  --tj-gold-light: #e8c777;
  --tj-ink: #1b2130;
  --tj-muted: #5b6472;
  --tj-bg: #f6f7fb;
  --tj-bg-alt: #eef1f8;
  --tj-white: #ffffff;
  --tj-line: #e7e9f0;
  --tj-success: #2e8b77;

  /* Gradients */
  --tj-gradient-navy: linear-gradient(135deg, #0b1f3a 0%, #17335c 55%, #1c3a63 100%);
  --tj-gradient-gold: linear-gradient(135deg, #d4a537 0%, #e8c777 100%);
  --tj-gradient-overlay: linear-gradient(135deg, rgba(11, 31, 58, 0.92) 0%, rgba(18, 41, 77, 0.82) 60%, rgba(28, 58, 99, 0.55) 100%);

  /* Typography */
  --tj-font-display: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --tj-font-body: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii & shadow */
  --tj-radius-sm: 10px;
  --tj-radius-md: 18px;
  --tj-radius-lg: 28px;
  --tj-radius-pill: 999px;
  --tj-shadow-sm: 0 4px 16px rgba(11, 31, 58, 0.06);
  --tj-shadow-md: 0 12px 32px rgba(11, 31, 58, 0.10);
  --tj-shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.16);
  --tj-shadow-gold: 0 12px 28px rgba(201, 151, 59, 0.30);

  /* Spacing rhythm */
  --tj-section-y: 6.5rem;
  --tj-section-y-sm: 4rem;

  /* Motion */
  --tj-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tj-speed: 0.35s;
}

html{
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   2. BASE / RESET
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--tj-font-body);
  color: var(--tj-ink);
  background-color: var(--tj-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tj-font-display);
  color: var(--tj-navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.container-xl-custom { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

section { position: relative; }

::selection { background: var(--tj-gold-light); color: var(--tj-navy); }

/* Focus states — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--tj-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--tj-navy);
  color: var(--tj-white);
  padding: 0.75rem 1.25rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. UTILITIES
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tj-gold);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--tj-gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--tj-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.text-gold { color: var(--tj-gold); }
.bg-navy-section { background: var(--tj-gradient-navy); color: var(--tj-white); }
.bg-navy-section .section-title,
.bg-navy-section h1, .bg-navy-section h2, .bg-navy-section h3 { color: var(--tj-white); }
.bg-navy-section .section-lead { color: rgba(255,255,255,0.75); }

.py-section { padding-top: var(--tj-section-y); padding-bottom: var(--tj-section-y); }
.py-section-sm { padding-top: var(--tj-section-y-sm); padding-bottom: var(--tj-section-y-sm); }

.divider-soft {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--tj-line) 20%, var(--tj-line) 80%, transparent);
  border: 0;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--tj-radius-lg);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn-tj {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: var(--tj-radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--tj-speed) var(--tj-ease), box-shadow var(--tj-speed) var(--tj-ease);
  isolation: isolate;
}
.btn-tj:hover { transform: translateY(-3px); }

.btn-tj-primary {
  background: var(--tj-gradient-gold);
  color: var(--tj-navy);
  box-shadow: var(--tj-shadow-gold);
}
.btn-tj-primary:hover { box-shadow: 0 18px 36px rgba(201, 151, 59, 0.38); color: var(--tj-navy); }

.btn-tj-outline {
  background: transparent;
  color: var(--tj-white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-tj-outline:hover { background: rgba(255, 255, 255, 0.12); color: var(--tj-white); border-color: var(--tj-white); }

.btn-tj-outline-navy {
  background: transparent;
  color: var(--tj-navy);
  border: 1.5px solid var(--tj-navy);
}
.btn-tj-outline-navy:hover { background: var(--tj-navy); color: var(--tj-white); }

/* Ripple effect */
.btn-tj .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: tj-ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
@keyframes tj-ripple {
  to { transform: scale(3); opacity: 0; }
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--tj-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar a { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--tj-gold-light); }
.topbar .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 0.4rem;
}
.topbar .social-link:hover { background: var(--tj-gold); color: var(--tj-navy); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tj-line);
  transition: box-shadow var(--tj-speed) var(--tj-ease), padding var(--tj-speed) var(--tj-ease);
  padding: 0.6rem 0;
}
.site-header.is-scrolled {
  box-shadow: var(--tj-shadow-md);
  padding: 0.25rem 0;
  background: #fff !important;
}

.navbar-brand img { height: 46px; width: auto; transition: height var(--tj-speed) var(--tj-ease); }
.site-header.is-scrolled .navbar-brand img { height: 38px; }

.main-nav .nav-link {
  font-weight: 500;
  color: var(--tj-ink);
  padding: 0.6rem 1rem !important;
  position: relative;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--tj-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tj-speed) var(--tj-ease);
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .nav-link.active { color: var(--tj-navy); font-weight: 600; }

.header-cta { margin-left: 0.5rem; }

/* Mobile hamburger */
.tj-toggler {
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.tj-toggler:hover { background: var(--tj-bg-alt); }
.tj-toggler .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tj-navy);
  margin: 4px 0;
  transition: transform var(--tj-speed) var(--tj-ease), opacity var(--tj-speed) var(--tj-ease);
}
.tj-toggler[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.tj-toggler[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.tj-toggler[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: var(--tj-gradient-navy);
  color: var(--tj-white);
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tj-gradient-overlay);
  z-index: 1;
}
.hero .hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--tj-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--tj-white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.hero h1 .accent { color: var(--tj-gold-light); }

.hero p.lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.scroll-indicator {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-indicator .dot-wrap {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--tj-radius-pill);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator .dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--tj-gold-light);
  animation: tj-scroll-dot 1.8s infinite;
}
@keyframes tj-scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}

/* Page header (inner pages) */
.page-header {
  position: relative;
  padding: 8.5rem 0 4.5rem;
  background: var(--tj-gradient-navy);
  color: var(--tj-white);
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201, 151, 59, 0.25), transparent 55%);
}
.page-header .breadcrumb-tj {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}
.page-header .breadcrumb-tj a { color: rgba(255, 255, 255, 0.85); }
.page-header .breadcrumb-tj a:hover { color: var(--tj-gold-light); }
.page-header h1 { position: relative; z-index: 1; color: var(--tj-white); font-size: clamp(2rem, 4vw, 3.1rem); }

/* --------------------------------------------------------------------------
   7. FEATURE / VALUE CARDS
   -------------------------------------------------------------------------- */
.value-card {
  background: var(--tj-white);
  border-radius: var(--tj-radius-md);
  padding: 2.2rem 1.9rem;
  height: 100%;
  box-shadow: var(--tj-shadow-sm);
  border: 1px solid var(--tj-line);
  transition: transform var(--tj-speed) var(--tj-ease), box-shadow var(--tj-speed) var(--tj-ease), border-color var(--tj-speed) var(--tj-ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tj-gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tj-speed) var(--tj-ease);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tj-shadow-lg);
  border-color: transparent;
}
.value-card:hover::before { transform: scaleX(1); }

.value-card .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--tj-radius-sm);
  background: linear-gradient(135deg, rgba(201,151,59,0.14), rgba(11,31,58,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--tj-gold);
  margin-bottom: 1.3rem;
}

.value-card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.value-card p { color: var(--tj-muted); margin-bottom: 0; font-size: 0.96rem; }

/* --------------------------------------------------------------------------
   8. STATS COUNTER
   -------------------------------------------------------------------------- */
.stats-strip {
  background: var(--tj-navy-2);
  border-radius: var(--tj-radius-lg);
  padding: 3rem 1rem;
  margin-top: -5.5rem;
  position: relative;
  z-index: 3;
  box-shadow: var(--tj-shadow-lg);
}
.stat-item { text-align: center; color: var(--tj-white); }
.stat-item .stat-number {
  font-family: var(--tj-font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--tj-gold-light);
  line-height: 1;
}
.stat-item .stat-label {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   9. BUSINESS / SERVICE CARDS
   -------------------------------------------------------------------------- */
.biz-card {
  border-radius: var(--tj-radius-md);
  overflow: hidden;
  background: var(--tj-white);
  box-shadow: var(--tj-shadow-sm);
  border: 1px solid var(--tj-line);
  height: 100%;
  transition: transform var(--tj-speed) var(--tj-ease), box-shadow var(--tj-speed) var(--tj-ease);
}
.biz-card:hover { transform: translateY(-8px); box-shadow: var(--tj-shadow-lg); }
.biz-card .biz-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--tj-bg-alt); }
.biz-card .biz-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--tj-ease); }
.biz-card:hover .biz-media img { transform: scale(1.08); }
.biz-card .biz-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.55), transparent 55%);
}
.biz-card .biz-body { padding: 1.4rem 1.5rem 1.6rem; }
.biz-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.biz-card .biz-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tj-gold);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. ABOUT / STORY
   -------------------------------------------------------------------------- */
.about-media {
  position: relative;
  border-radius: var(--tj-radius-lg);
  overflow: hidden;
  box-shadow: var(--tj-shadow-lg);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 0.5rem;
  background: var(--tj-white);
  border-radius: var(--tj-radius-md);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--tj-shadow-lg);
  text-align: center;
}
.about-badge .num { font-family: var(--tj-font-display); font-size: 2.1rem; font-weight: 700; color: var(--tj-navy); }
.about-badge .label { font-size: 0.8rem; color: var(--tj-muted); }

/* --------------------------------------------------------------------------
   11. TIMELINE
   -------------------------------------------------------------------------- */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--tj-gold), var(--tj-line));
}
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tj-white);
  border: 3px solid var(--tj-gold);
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.timeline-item p { color: var(--tj-muted); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   12. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testi-card {
  background: var(--tj-white);
  border-radius: var(--tj-radius-md);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--tj-line);
  box-shadow: var(--tj-shadow-sm);
  position: relative;
}
.testi-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 3.2rem;
  color: var(--tj-gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.testi-card p { color: var(--tj-ink); font-size: 0.98rem; }
.testi-card .testi-meta { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.testi-card .testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--tj-gradient-navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--tj-gold-light); font-weight: 700; font-family: var(--tj-font-display);
}
.testi-card .testi-name { font-weight: 600; font-size: 0.9rem; color: var(--tj-navy); }
.testi-card .testi-role { font-size: 0.78rem; color: var(--tj-muted); }

/* --------------------------------------------------------------------------
   13. FAQ (ACCORDION)
   -------------------------------------------------------------------------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--tj-line);
  border-radius: var(--tj-radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--tj-white);
}
.faq-accordion .accordion-button {
  font-family: var(--tj-font-display);
  font-weight: 600;
  color: var(--tj-navy);
  padding: 1.3rem 1.6rem;
  background: var(--tj-white);
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--tj-navy);
  background: var(--tj-bg-alt);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; outline: none !important; outline-offset: -3px; }
.faq-accordion .accordion-button::after { filter: hue-rotate(0deg); }
.faq-accordion .accordion-body { padding: 0 1.6rem 1.5rem; color: var(--tj-muted); }

/* --------------------------------------------------------------------------
   14. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--tj-gradient-navy);
  border-radius: var(--tj-radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  color: var(--tj-white);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,59,0.35), transparent 70%);
  top: -120px; right: -80px;
}
.cta-band h2 { color: var(--tj-white); margin-bottom: 0.6rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. WHY TEJAJ — process / comparison
   -------------------------------------------------------------------------- */
.process-step {
  text-align: center;
  padding: 2rem 1.2rem;
  position: relative;
}
.process-step .step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--tj-gradient-gold);
  color: var(--tj-navy);
  font-family: var(--tj-font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: var(--tj-shadow-gold);
}
.process-step h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--tj-muted); font-size: 0.92rem; }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--tj-white);
  border-radius: var(--tj-radius-md);
  overflow: hidden;
  box-shadow: var(--tj-shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--tj-line);
  font-size: 0.94rem;
}
.compare-table thead th {
  font-family: var(--tj-font-display);
  background: var(--tj-navy);
  color: var(--tj-white);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td.tj-yes { color: var(--tj-success); font-weight: 600; }
.compare-table td.tj-no { color: var(--tj-muted); }

/* --------------------------------------------------------------------------
   16. CONTACT PAGE (information only — no form)
   -------------------------------------------------------------------------- */
.contact-info-card {
  background: var(--tj-white);
  border-radius: var(--tj-radius-md);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--tj-line);
  box-shadow: var(--tj-shadow-sm);
  transition: transform var(--tj-speed) var(--tj-ease), box-shadow var(--tj-speed) var(--tj-ease);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--tj-shadow-md); }
.contact-info-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,151,59,0.16), rgba(11,31,58,0.06));
  color: var(--tj-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.contact-info-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.contact-info-card p { color: var(--tj-muted); margin-bottom: 0; font-size: 0.94rem; }
.contact-info-card a.value-link { color: var(--tj-navy); font-weight: 600; }
.contact-info-card a.value-link:hover { color: var(--tj-gold); }

.map-frame {
  border-radius: var(--tj-radius-lg);
  overflow: hidden;
  box-shadow: var(--tj-shadow-md);
  border: 1px solid var(--tj-line);
  height: 100%;
  min-height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--tj-line);
  font-size: 0.94rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--tj-ink); font-weight: 500; }
.hours-list .time { color: var(--tj-muted); }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--tj-navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4.5rem;
}
.site-footer h4 {
  color: var(--tj-white);
  font-size: 1rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}
.site-footer .footer-about img { height: 42px; margin-bottom: 1.2rem; }
.site-footer .footer-about p { font-size: 0.92rem; color: rgba(255,255,255,0.62); max-width: 320px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.75rem; }
.site-footer ul li a { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.site-footer ul li a:hover { color: var(--tj-gold-light); padding-left: 4px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--tj-gold); color: var(--tj-navy); }
.footer-contact li { display: flex; gap: 0.7rem; font-size: 0.9rem; color: rgba(255,255,255,0.72); align-items: flex-start; }
.footer-contact li i { color: var(--tj-gold); margin-top: 0.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3.5rem;
  padding: 1.4rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--tj-gradient-gold);
  color: var(--tj-navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--tj-shadow-gold);
  border: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--tj-speed) var(--tj-ease), transform var(--tj-speed) var(--tj-ease), visibility var(--tj-speed);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }


/* ==========================================================================
   TEJAJ — responsive.css
   Breakpoints: Desktop (>1400), Laptop (1200-1399), Tablet (768-1199),
   Large Mobile (576-767), Mobile (<576)
   ========================================================================== */

/* Laptop */
@media (max-width: 1399.98px) {
  :root { --tj-section-y: 5.5rem; }
  .hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
}

/* Tablet */
@media (max-width: 1199.98px) {
  :root { --tj-section-y: 4.5rem; }
  .stats-strip { margin-top: -4rem; }
  .about-badge { right: 1rem; bottom: -1.2rem; padding: 1.1rem 1.4rem; }
  .cta-band { padding: 3rem 2rem; }
}

@media (max-width: 991.98px) {
  .hero { min-height: auto; padding-top: 7.5rem; padding-bottom: 3.5rem; }
  .hero-actions { margin-bottom: 2rem; }
  .scroll-indicator { display: none; }
  .page-header { padding: 7rem 0 3.5rem; }

  .main-nav {
    background: var(--tj-white);
    border-radius: var(--tj-radius-md);
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: var(--tj-shadow-md);
  }
  .main-nav .nav-link::after { display: none; }
  .main-nav .nav-link { padding: 0.75rem 0.5rem !important; border-bottom: 1px solid var(--tj-line); }
  .main-nav .nav-link:last-child { border-bottom: none; }
  .header-cta { margin: 0.75rem 0 0; display: block; }
  .header-cta .btn-tj { width: 100%; }

  .about-media { margin-bottom: 4rem; }
  .about-badge { position: absolute !important; margin-top: 1.2rem; display: inline-block; }

  .stats-strip { margin-top: 2rem; border-radius: var(--tj-radius-md); }
}

/* Large mobile */
@media (max-width: 767.98px) {
  :root { --tj-section-y: 3.5rem; --tj-section-y-sm: 2.75rem; }
  .topbar .topbar-right { display: none; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .hero p.lead { font-size: 1rem; }
  .section-title { font-size: 1.7rem; }
  .cta-band { text-align: center; }
  .cta-band .cta-actions { justify-content: center; margin-top: 1.5rem; }
  .value-card, .biz-card, .testi-card, .contact-info-card { margin-bottom: 1.5rem; }
  .timeline { padding-left: 1.8rem; }
  .timeline-item::before { left: -1.8rem; }
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 0.8rem 0.9rem; }
}
@media (max-width: 767.98px){
    .cta-actions{
        width: 100%;
        display: flex !important;
        justify-content: center !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
  .navbar-brand img { height: 38px; }
  .btn-tj { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-tj { width: 100%; }
  .page-header { padding: 6.5rem 0 3rem; text-align: center; }
  .stat-item { margin-bottom: 1.5rem; }
  .stat-item:last-child { margin-bottom: 0; }
  .footer-about p { max-width: none; }
  .back-to-top { right: 1rem; bottom: 1rem; width: 44px; height: 44px; }
  .cta-band { padding: 2.4rem 1.4rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

