/* =====================================================
   ZYRON VENTURES — AUTHENTIC EXECUTIVE PREMIUM DESIGN
   Real Product Photography, Modern Organic Pill Buttons,
   Trust Badges & Stickers, Rich Micro-Interactions
   ===================================================== */

/* 1. DESIGN TOKENS */
:root {
  --c-navy-dark:     #0A1128;
  --c-navy-surface:  #1C2541;
  --c-navy-card:     #131B30;
  
  --c-white:         #FFFFFF;
  --c-slate-bg:      #F8FAFC;
  --c-slate-card:    #FFFFFF;
  --c-slate-border:  #E2E8F0;
  
  --c-blue-primary:  #0066FF;
  --c-blue-dark:     #0047BA;
  --c-blue-light:    #F0F6FF;
  
  --c-amber:         #E67E22;
  --c-amber-dark:    #D35400;
  --c-amber-light:   #FEF5ED;

  --c-emerald:       #10B981;
  
  --c-text-main:     #0F172A;
  --c-text-sub:      #475569;
  --c-text-muted:    #64748B;
  --c-text-dark-sub: #94A3B8;
  
  --font-head:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:           1240px;
  --pad-x:           0 32px;
  --section-pad:     96px 0;

  --r-pill:          50px; /* Modern Organic Pill Buttons */
  --r-badge:         30px;
  --r-card:          20px;
  --r-img:           16px;

  --t-fast:          0.20s ease;
  --t-base:          0.35s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card:     0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-hover:    0 20px 45px -10px rgba(15, 23, 42, 0.16);
  --shadow-blue-btn: 0 10px 28px -6px rgba(0, 102, 255, 0.45);
  --shadow-amber-btn:0 10px 28px -6px rgba(230, 126, 34, 0.45);
}

/* 2. RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--c-slate-bg);
  color: var(--c-text-main);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a   { text-decoration: none; color: inherit; transition: all var(--t-fast); }
ul  { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* 3. TYPOGRAPHY & BADGES */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--c-text-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(24px, 5.5vw, 58px); letter-spacing: -0.03em; line-height: 1.18; }
h2 { font-size: clamp(20px, 4vw, 40px); letter-spacing: -0.025em; line-height: 1.22; }
h3 { font-size: clamp(17px, 2.5vw, 24px); }

p { font-size: clamp(14px, 1.5vw, 16px); color: var(--c-text-sub); line-height: 1.65; }

/* STICKERS & BADGES */
.sticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-blue-light);
  color: var(--c-blue-primary);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-badge);
  border: 1px solid rgba(0, 102, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
  margin-bottom: 16px;
}
.sticker-pill.amber {
  background: var(--c-amber-light);
  color: var(--c-amber-dark);
  border-color: rgba(230, 126, 34, 0.2);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.08);
}
.sticker-pill.emerald {
  background: #ECFDF5;
  color: #047857;
  border-color: rgba(16, 185, 129, 0.2);
}

/* 4. MODERN ORGANIC PILL BUTTONS (REDESIGNED) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--r-pill); /* Full Pill Shape */
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-blue-primary) 0%, var(--c-blue-dark) 100%);
  color: var(--c-white);
  box-shadow: var(--shadow-blue-btn);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px -6px rgba(0, 102, 255, 0.55);
}

.btn-amber {
  background: linear-gradient(135deg, var(--c-amber) 0%, var(--c-amber-dark) 100%);
  color: var(--c-white);
  box-shadow: var(--shadow-amber-btn);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-amber:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px -6px rgba(230, 126, 34, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--c-white);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: var(--c-white);
  color: var(--c-text-main);
  border: 1.5px solid var(--c-slate-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-outline-dark:hover {
  border-color: var(--c-blue-primary);
  color: var(--c-blue-primary);
  background: var(--c-blue-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 13px; border-radius: 30px; }

/* UTILITIES */
.container { max-width: var(--max-w); margin: 0 auto; padding: var(--pad-x); }
.s-pad { padding: var(--section-pad); }
.bg-navy { background: var(--c-navy-dark) !important; color: var(--c-white) !important; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--c-white) !important; }
.bg-navy p { color: var(--c-text-dark-sub) !important; }
.bg-white { background: var(--c-white) !important; }
.bg-slate { background: var(--c-slate-bg) !important; }
.text-center { text-align: center; }

/* 5. TOP MATERIAL BADGE BAR */
.top-bar {
  background: #060B1B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 9px 0;
  font-size: 13px;
  color: var(--c-text-dark-sub);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-bar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-amber);
  margin-right: 4px;
}
.top-mat-badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
a.top-mat-badge:hover {
  background: rgba(230, 126, 34, 0.18);
  color: var(--c-amber);
  border-color: rgba(230, 126, 34, 0.4);
}

/* 6. NAVIGATION HEADER */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-slate-border);
  transition: all var(--t-fast);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #060B1B;
  letter-spacing: -0.02em;
  line-height: 1.0;
  display: block;
}
.logo-sub {
  font-size: 9px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-top: 3px;
  display: block;
  text-align: left;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-sub);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--c-blue-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--c-navy-dark);
  border-radius: 2px;
}

.mobile-menu-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #060B1B;
  border-bottom: 3px solid var(--c-blue-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-menu-drawer.active { display: flex; }
.mobile-menu-drawer a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-drawer a:hover,
.mobile-menu-drawer a.active {
  background: rgba(0, 102, 255, 0.15);
  color: var(--c-blue-primary);
}

/* 7. HERO SECTION WITH REAL 8K PHOTOGRAPHY */
.hero-section {
  background: var(--c-navy-dark);
  color: var(--c-white);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}
.hero-content h1 { color: var(--c-white); margin: 12px 0 20px; }
.hero-content p {
  font-size: 18px;
  color: var(--c-text-dark-sub);
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Real Photo Frame */
.hero-photo-frame {
  position: relative;
}
.hero-photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.hero-trust-sticker {
  position: absolute;
  bottom: -22px; left: -22px;
  background: rgba(28, 37, 65, 0.95);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-card);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.trust-badge-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-amber);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.5);
}

/* 8. REAL PRODUCT SAMPLE CARDS WITH REAL IMAGES */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-sample-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.product-sample-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-blue-primary);
}
.sample-card-img {
  height: 220px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
  background: #0A1128;
}
.sample-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-sample-card:hover .sample-card-img img { transform: scale(1.05); }

.sample-card-sticker {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10, 17, 40, 0.85);
  backdrop-filter: blur(8px);
  color: var(--c-amber);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(230, 126, 34, 0.3);
  text-transform: uppercase;
}

.sample-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.spec-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 20px;
}
.spec-tag-chip {
  font-size: 11px;
  font-weight: 700;
  background: var(--c-slate-bg);
  color: var(--c-text-sub);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--c-slate-border);
}

/* 9. TRUST SEALS & CERTIFICATION STICKERS SECTION */
.trust-seals-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.trust-seal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border: 1.5px solid var(--c-slate-border);
  border-radius: var(--r-badge);
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.trust-seal-item i { color: var(--c-blue-primary); font-size: 16px; }

/* UTILITY: SECTION DESCRIPTION */
.section-desc {
  font-size: 17px;
  color: var(--c-text-sub);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* BADGE TAG (small label above headings) */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-blue-primary);
  background: var(--c-blue-light);
  padding: 6px 16px;
  border-radius: var(--r-badge);
  border: 1px solid rgba(0, 102, 255, 0.15);
  margin-bottom: 14px;
}
.badge-tag.amber {
  color: var(--c-amber-dark);
  background: var(--c-amber-light);
  border-color: rgba(230, 126, 34, 0.2);
}

/* WHY / MISSION GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-blue-primary);
}
.why-card h3 { font-size: 20px; margin-bottom: 12px; }
.why-card p  { font-size: 15px; }
.why-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: rgba(0, 102, 255, 0.12);
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* CAT (SERVICE) GRID AND CARD */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cat-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-blue-primary);
}
.cat-card h3 { font-size: 20px; margin-bottom: 12px; }
.cat-card p  { font-size: 15px; }
.cat-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--c-blue-light);
  color: var(--c-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* HERO MEDIA / IMAGE CARD */
.hero-media { width: 100%; }
.hero-img-card {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* PRODUCTS CATALOG GRID (portfolio / blog cards) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-blue-primary);
}
.product-card-img {
  height: 210px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.product-card-body p  { font-size: 14px; flex-grow: 1; }
.product-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-amber-dark);
  background: var(--c-amber-light);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(230,126,34,0.2);
  margin-bottom: 10px;
}
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.spec-chip {
  font-size: 11px;
  font-weight: 700;
  background: var(--c-slate-bg);
  color: var(--c-text-sub);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--c-slate-border);
}
.logo-text { display: flex; flex-direction: column; }

/* 10. PRODUCT CATALOG PAGE & TABS */
.product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 48px;
}
.tab-btn {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  background: var(--c-white);
  color: var(--c-text-sub);
  border: 1.5px solid var(--c-slate-border);
  transition: all var(--t-fast);
  cursor: pointer;
}
.tab-btn:hover {
  border-color: var(--c-blue-primary);
  color: var(--c-blue-primary);
}
.tab-btn.active {
  background: var(--c-blue-primary);
  color: var(--c-white);
  border-color: var(--c-blue-primary);
  box-shadow: var(--shadow-blue-btn);
}

/* 11. CONTACT & FAQ */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-blue-light);
  color: var(--c-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.form-box {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  padding: 44px;
  box-shadow: var(--shadow-hover);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text-main);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-slate-border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-text-main);
  background: var(--c-slate-bg);
  outline: none;
  transition: all var(--t-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--c-blue-primary);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

.faq-accordion { margin-top: 48px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-header {
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-header i { transition: transform var(--t-fast); color: var(--c-blue-primary); }
.faq-item.active .faq-header i { transform: rotate(180deg); }
.faq-body {
  padding: 16px 24px 20px;
  font-size: 15px;
  color: var(--c-text-sub);
  display: none;
  border-top: 1px solid var(--c-slate-border);
}
.faq-item.active .faq-body { display: block; }

/* 12. FOOTER */
.site-footer {
  background: var(--c-navy-dark);
  color: var(--c-white);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; }
.footer-desc { font-size: 14px; color: var(--c-text-dark-sub); line-height: 1.7; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 20px;
}
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { font-size: 14px; color: var(--c-text-dark-sub); }
.footer-links-list a:hover { color: var(--c-white); }

.footer-bottom-bar {
  padding-top: 28px;
  padding-right: 240px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--c-text-dark-sub);
  flex-wrap: wrap;
  gap: 12px;
}

/* 13. RESPONSIVE ARCHITECTURE (MOBILE & DESKTOP PERFECT RATIOS) */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-photo-frame img { height: 320px; }
  .hero-cta-group { justify-content: center; }
  .product-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-grid-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid-layout { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portfolio-stats-row { grid-template-columns: repeat(2, 1fr); }
  .insight-featured-grid { grid-template-columns: 1fr; gap: 24px; }
  .cat-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 44px 0;
    --pad-x: 0 16px;
  }

  /* TOP PHOTO ORDERING ON MOBILE: Photo Always Above Text */
  .hero-grid { display: flex; flex-direction: column; gap: 24px; text-align: center; }
  .hero-media { order: -1; width: 100%; }
  .hero-photo-frame { order: -1; width: 100%; }
  .hero-photo-frame img, .hero-img-card img { height: 220px !important; border-radius: 14px !important; }

  /* Top Bar Single-Line Scroll Strip on Mobile */
  .top-bar { padding: 6px 0; }
  .top-bar-inner {
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .top-bar-inner::-webkit-scrollbar { display: none; }
  .top-bar-label { display: none; }
  .top-mat-badge { font-size: 10px; padding: 4px 10px; flex-shrink: 0; }

  /* Header & Mobile Toggle */
  .nav-container { height: 60px; }
  .logo-brand img { width: 36px; height: 36px; }
  .logo-name { font-size: 17px; }
  .logo-sub { font-size: 8.5px; }
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  
  /* Mobile Menu Drawer Overlay */
  .mobile-menu-drawer {
    padding: 16px 16px 24px;
    gap: 4px;
    background: #060B1B;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  /* Hero Section Mobile Ratios */
  .hero-section { padding: 32px 0 40px; }
  .hero-content p { font-size: 14.5px; margin-bottom: 20px; }

  /* Cards & Grids Mobile Layout */
  .product-showcase-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .products-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .why-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .cat-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  .sample-card-img, .product-card-img, .portfolio-card-img {
    height: 190px !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 18px 18px 0 0 !important;
    overflow: hidden !important;
    background: #0A1128 !important;
  }
  .sample-card-img img, .product-card-img img, .portfolio-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  .sample-card-body, .product-card-body, .portfolio-card-body, .why-card, .cat-card {
    padding: 18px 16px !important;
  }

  /* Form & Contact Mobile Layout */
  .form-box, .contact-info-card { padding: 20px 16px !important; border-radius: 16px !important; }
  .form-row-2 { grid-template-columns: 1fr !important; gap: 0 !important; }
  .form-group { margin-bottom: 14px; }
  .form-group label { font-size: 11px; margin-bottom: 5px; }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px !important;
    padding: 11px 14px;
    border-radius: 10px;
  }

  /* Horizontal Tab Scroll on Mobile */
  .product-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0 10px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { flex-shrink: 0; font-size: 12.5px; padding: 8px 16px; }

  /* Flowchart Mobile Vertical Process Layout */
  .flowchart-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  .flowchart-step {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  .flowchart-connector {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding-top: 0 !important;
    margin: 4px 0;
    color: var(--c-amber);
    font-size: 22px;
  }
  .flowchart-connector i {
    transform: rotate(90deg) !important;
    color: var(--c-amber);
    font-size: 22px;
  }
  .fc-icon-wrap { width: 56px; height: 56px; font-size: 22px; margin-bottom: 12px; }
  .fc-step-title { font-size: 16px; margin-bottom: 6px; }
  .fc-step-desc { font-size: 13px; line-height: 1.55; }

  /* Stats Counter Grid Mobile Layout */
  .portfolio-stats-row { grid-template-columns: repeat(2, 1fr); border-radius: 14px; }
  .stat-cell { padding: 16px 10px; }
  .stat-cell-num { font-size: 26px; }
  .stat-cell-label { font-size: 10px; }

  /* Floating WhatsApp Mobile Layout */
  .whatsapp-widget-container {
    bottom: 20px;
    right: 16px;
  }
  .whatsapp-widget-link {
    padding: 6px 14px 6px 8px;
    gap: 10px;
    border-radius: 30px;
  }
  .wa-icon-badge {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }
  .wa-widget-title {
    font-size: 12px;
  }
  .wa-widget-sub {
    font-size: 10px;
  }

  /* Footer Mobile Layout */
  .site-footer { padding: 40px 0 24px; }
  .footer-grid-layout { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .footer-bottom-bar { padding-right: 0; padding-bottom: 32px; flex-direction: column; text-align: center; gap: 6px; font-size: 12px; }

  .ty-modal-card { padding: 24px 16px; width: 94%; border-radius: 16px; }
}

@media (max-width: 480px) {
  .whatsapp-widget-container {
    bottom: 16px;
    right: 14px;
  }
  .wa-widget-text {
    display: none;
  }
  .whatsapp-widget-link {
    padding: 6px;
    border-radius: 50%;
  }
  .wa-icon-badge {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .portfolio-stats-row { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 13.5px; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 10px; }
  .trust-seals-row { flex-direction: column; width: 100%; gap: 10px; }
  .trust-seal-item { width: 100%; justify-content: center; font-size: 12px; }
}

/* 14. SLEEK FLOATING WHATSAPP CHAT WIDGET */
.whatsapp-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  opacity: 0.85; /* Semi-translucent idle opacity so text/content underneath remains visible */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-widget-container:hover,
.whatsapp-widget-container:focus-within {
  opacity: 1; /* Solid full opacity on hover/focus */
}

.whatsapp-widget-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 17, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px 8px 10px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(37, 211, 102, 0.2);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-widget-link:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(37, 211, 102, 0.4);
}

.wa-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFFFFF;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.wa-online-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #00FF66;
  border: 2px solid #0A1128;
  border-radius: 50%;
  animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.wa-widget-text {
  display: flex;
  flex-direction: column;
}

.wa-widget-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.wa-widget-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-amber);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.wa-widget-sub i {
  font-size: 7px;
  color: #25D366;
}

/* 15. SERVICES FLOWCHART (CREATIVE ANIMATED SCROLL-REVEAL & CENTERED ARROWS) */
.flowchart-section {
  padding: var(--section-pad);
  background: var(--c-navy-dark);
  position: relative;
  overflow: hidden;
}
.flowchart-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  position: relative;
}
.flowchart-step {
  flex: 1;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}
.flowchart-step:hover {
  border-color: var(--c-amber);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}
.flowchart-step.reveal {
  opacity: 1;
  transform: translateY(0);
}
.fc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #1C2541 0%, #263360 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.fc-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(230, 126, 34, 0.4);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.fc-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 8px;
}
.fc-step-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.fc-step-desc {
  font-size: 13.5px;
  color: var(--c-text-dark-sub);
  line-height: 1.6;
}

/* FLOWCHART CONNECTORS & CREATIVE ARROW BADGES */
.flowchart-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px) scale(0.85);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.flowchart-connector.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fc-arrow-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.25) 0%, rgba(217, 119, 6, 0.15) 100%);
  border: 1.5px solid rgba(230, 126, 34, 0.6);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 18px rgba(230, 126, 34, 0.35);
  animation: pulse-arrow 2.4s infinite;
}
@keyframes pulse-arrow {
  0%, 100% { box-shadow: 0 0 18px rgba(230, 126, 34, 0.35); transform: scale(1); }
  50% { box-shadow: 0 0 28px rgba(230, 126, 34, 0.7); transform: scale(1.08); }
}

.desktop-arrow { display: block; }
.mobile-arrow { display: none; }

/* 16. PORTFOLIO STATS BANNER */
.portfolio-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}
.stat-cell {
  background: var(--c-navy-surface);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.stat-cell:hover {
  background: rgba(38, 50, 85, 0.95);
}
.stat-cell-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--c-amber);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-cell-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-dark-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .portfolio-stats-row { grid-template-columns: 1fr 1fr; }
}

/* 17. PORTFOLIO CARD REDESIGN */
.portfolio-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-blue-primary);
}
.portfolio-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.portfolio-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.07); }
.portfolio-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10, 17, 40, 0.88);
  backdrop-filter: blur(8px);
  color: var(--c-amber);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(230, 126, 34, 0.3);
  text-transform: uppercase;
}
.portfolio-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.portfolio-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.portfolio-card-body p  { font-size: 14px; flex-grow: 1; margin-bottom: 16px; }
.portfolio-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
.portfolio-meta-chip {
  font-size: 12px;
  font-weight: 700;
  background: var(--c-slate-bg);
  color: var(--c-text-sub);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--c-slate-border);
}

/* 18. INSIGHTS / BLOG EDITORIAL LAYOUT */
.insight-featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.insight-featured-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
}
.insight-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.insight-featured-img {
  height: 260px;
  overflow: hidden;
}
.insight-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insight-featured-card:hover .insight-featured-img img { transform: scale(1.06); }
.insight-card-body {
  padding: 28px;
}
.insight-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue-primary);
  background: var(--c-blue-light);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,102,255,0.15);
  margin-bottom: 14px;
}
.insight-tag.amber {
  color: var(--c-amber-dark);
  background: var(--c-amber-light);
  border-color: rgba(230,126,34,0.2);
}
.insight-card-body h3 { font-size: 22px; margin-bottom: 10px; line-height: 1.25; }
.insight-card-body p  { font-size: 15px; }
.insight-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-blue-primary);
  margin-top: 16px;
  transition: gap var(--t-fast);
}
.insight-read-link:hover { gap: 10px; }
.insight-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.insight-side-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  gap: 0;
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
}
.insight-side-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-blue-primary);
}
.insight-side-img {
  width: 110px;
  flex-shrink: 0;
  overflow: hidden;
}
.insight-side-img img { width: 100%; height: 100%; object-fit: cover; }
.insight-side-body { padding: 18px 18px 18px 16px; }
.insight-side-body .insight-tag { margin-bottom: 8px; font-size: 10px; }
.insight-side-body h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text-main);
  margin-bottom: 6px;
}
.insight-side-body p { font-size: 13px; }
@media (max-width: 768px) {
  .insight-featured-grid { grid-template-columns: 1fr; }
  .insight-side-card { flex-direction: column; }
  .insight-side-img { width: 100%; height: 160px; }
}

/* 19. SCROLL-REVEAL BASE */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   20. PAGE LOAD STAGGERED INTRO ENTRANCE ANIMATIONS
   (Smooth initial entry animation for all pages)
   ===================================================== */
@keyframes introFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Navigation Header Entry */
.header-nav {
  animation: introFadeIn 0.7s ease 0s both;
}

/* Hero Badge / Sticker Pills Entry */
.hero-section .sticker-pill,
.hero-section .badge-tag {
  animation: introFadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

/* Hero Headline Entry */
.hero-section h1 {
  animation: introFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Hero Paragraph Entry */
.hero-section p {
  animation: introFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

/* Hero CTA Group & Buttons Entry */
.hero-cta-group,
.hero-section .btn {
  animation: introFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

/* Hero Media & Frame Entry */
.hero-photo-frame,
.hero-media {
  animation: introFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

/* Hero Trust Seals Row Entry */
.hero-section .trust-seals-row {
  animation: introFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Contact Page Form & Card Entry */
.contact-info-card,
.form-box {
  animation: introFadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* =====================================================
   21. CINEMATIC UNBLUR PAGE INTRO EFFECT
   (Unblurs and focuses page content smoothly on load)
   ===================================================== */
@keyframes pageUnblurFocus {
  0% {
    filter: blur(14px);
    opacity: 0.15;
    transform: scale(1.015);
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
  }
}

body {
  animation: pageUnblurFocus 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* =====================================================
   22. THANK YOU ENQUIRY CONFIRMATION CARD
   ===================================================== */
.thank-you-card {
  text-align: center;
  padding: 10px 0;
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ty-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.ty-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--c-navy-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.ty-desc {
  font-size: 15px;
  color: var(--c-text-sub);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

.ty-whatsapp-callout {
  background: linear-gradient(135deg, #FEF5ED 0%, #FFFDF9 100%);
  border: 1.5px solid rgba(230, 126, 34, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.08);
}

.ty-wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ty-wa-cool-text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-navy-dark);
  letter-spacing: -0.01em;
}

/* =====================================================
   23. EXECUTIVE POP-UP THANK YOU MODAL
   ===================================================== */
.ty-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(6, 11, 27, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ty-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ty-modal-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-slate-border);
  border-radius: var(--r-card);
  padding: 44px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(18px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ty-modal-overlay.active .ty-modal-card {
  transform: scale(1) translateY(0);
}

.ty-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 22px;
  color: var(--c-text-muted);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-slate-bg);
  border: 1px solid var(--c-slate-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ty-modal-close:hover {
  background: var(--c-navy-dark);
  color: var(--c-white);
}

/* =====================================================
   24. QUICK CONTACT INTERACTIVE ACTION BUTTON GRID
   ===================================================== */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-navy-surface);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 18px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.quick-contact-btn:hover {
  border-color: var(--c-blue-primary);
  transform: translateY(-2px);
  background: rgba(38, 50, 85, 0.95);
}

.quick-contact-btn.green:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.12);
}

.qc-btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.qc-btn-icon.blue { background: rgba(0, 102, 255, 0.18); color: var(--c-blue-primary); }
.qc-btn-icon.amber { background: rgba(230, 126, 34, 0.18); color: var(--c-amber); }
.qc-btn-icon.green { background: rgba(37, 211, 102, 0.18); color: #25D366; }
.qc-btn-icon.slate { background: rgba(255, 255, 255, 0.08); color: var(--c-text-dark-sub); }

.qc-btn-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.qc-btn-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-dark-sub);
}

.qc-btn-val {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qc-btn-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  transition: transform 0.2s, color 0.2s;
}

.quick-contact-btn:hover .qc-btn-arrow {
  color: var(--c-white);
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .quick-contact-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 600px) {
  .quick-contact-grid { grid-template-columns: 1fr; gap: 12px; }
}

.styled-cat-dropdown {
  background: #0A1128;
  color: #FFFFFF;
  border: 1.5px solid var(--c-amber);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.25);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.styled-cat-dropdown:focus,
.styled-cat-dropdown:hover {
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
}

.sub-filter-container {
  margin-top: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sub-filter-row.nested-row {
  background: rgba(0, 102, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.22);
  margin-left: 12px;
}

.sub-filter-label {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--c-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
  white-space: nowrap;
}

.sub-pill-btn {
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.sub-pill-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.sub-pill-btn.active {
  background: var(--c-amber);
  color: #0A1128;
  border-color: var(--c-amber);
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

@media (max-width: 768px) {
  .sub-filter-row {
    padding: 12px 12px;
    gap: 6px;
  }
  .sub-filter-row.nested-row {
    margin-left: 0;
  }
  .sub-pill-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}


/* =====================================================
   SECTION 25 — EXECUTIVE THANK YOU POP-UP MODAL ENGINE
   Responsive Backdrop, Inner Card Scroll, Mobile Scaling
   ===================================================== */
.ty-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: rgba(6, 11, 27, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.ty-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ty-modal-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 28px;
  width: 100%;
  max-width: 500px;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 34px 26px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-align: center;
}

.ty-modal-overlay.active .ty-modal-card {
  transform: translateY(0) scale(1);
}

.ty-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  font-size: 22px;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.ty-modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.ty-icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.ty-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 4.5vw, 25px);
  font-weight: 800;
  color: #0A1128;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ty-desc {
  font-size: clamp(13px, 3.2vw, 14.5px);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 22px;
}

.ty-whatsapp-callout {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 20px;
  padding: 18px 16px;
  text-align: left;
  box-sizing: border-box;
}

.ty-wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.ty-wa-cool-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #0A1128;
}

.ty-whatsapp-callout .btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 14px;
  font-size: clamp(12px, 3.1vw, 13.5px);
  font-weight: 700;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.3);
}

/* Mobile Viewport Constraints for Pop-Up Modal */
@media (max-width: 600px) {
  .ty-modal-overlay {
    padding: 12px 10px;
  }
  .ty-modal-card {
    padding: 26px 16px 20px;
    max-height: 90vh;
    border-radius: 20px;
  }
  .ty-icon-circle {
    width: 50px; height: 50px;
    font-size: 26px;
    margin-bottom: 10px;
  }
  .ty-whatsapp-callout {
    padding: 15px 12px;
    border-radius: 16px;
  }
  .ty-whatsapp-callout .btn-amber {
    padding: 11px 10px;
  }
}





