/* ==========================================================================
   WizTach Information Technology — Main Stylesheet
   Phase 1: Static Frontend
   ========================================================================== */

/* ----- CSS Variables (Light Theme Default) ----- */
:root {
  --wt-primary: #FF6B1A;
  --wt-primary-dark: #E55A0E;
  --wt-primary-light: #FF8744;
  --wt-primary-soft: rgba(255, 107, 26, 0.1);
  --wt-secondary: #1A1A1A;
  --wt-accent: #2C2C2C;

  --wt-bg: #FFFFFF;
  --wt-bg-alt: #F7F8FA;
  --wt-bg-card: #FFFFFF;
  --wt-bg-hero: linear-gradient(135deg, #FFF7F0 0%, #FFFFFF 50%, #FFF7F0 100%);

  --wt-text: #1A1A1A;
  --wt-text-muted: #6B6B6B;
  --wt-text-inverse: #FFFFFF;
  --wt-heading: #0F0F0F;

  --wt-border: #E5E7EB;
  --wt-border-hover: #FF6B1A;
  --wt-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --wt-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);
  --wt-shadow-orange: 0 10px 40px rgba(255, 107, 26, 0.25);

  --wt-nav-bg: rgba(255, 255, 255, 0.95);
  --wt-footer-bg: #0F0F0F;
  --wt-footer-text: #B4B4B4;

  --wt-radius-sm: 8px;
  --wt-radius: 14px;
  --wt-radius-lg: 22px;
  --wt-radius-xl: 32px;

  --wt-font-heading: 'Inter', 'Segoe UI', sans-serif;
  --wt-font-body: 'Inter', 'Segoe UI', sans-serif;

  --wt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Dark Theme ----- */
[data-theme="dark"] {
  --wt-bg: #0A0A0A;
  --wt-bg-alt: #141414;
  --wt-bg-card: #1A1A1A;
  --wt-bg-hero: linear-gradient(135deg, #0F0F0F 0%, #1A0E08 50%, #0F0F0F 100%);

  --wt-text: #E8E8E8;
  --wt-text-muted: #9B9B9B;
  --wt-heading: #FFFFFF;

  --wt-border: #2A2A2A;
  --wt-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --wt-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --wt-shadow-orange: 0 10px 40px rgba(255, 107, 26, 0.35);

  --wt-nav-bg: rgba(10, 10, 10, 0.95);
  --wt-footer-bg: #050505;
  --wt-footer-text: #8A8A8A;
}

/* ----- Base ----- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--wt-font-body);
  background: var(--wt-bg);
  color: var(--wt-text);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wt-font-heading);
  color: var(--wt-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

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

a {
  color: var(--wt-primary);
  text-decoration: none;
  transition: var(--wt-transition);
}
a:hover { color: var(--wt-primary-dark); }

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

::selection { background: var(--wt-primary); color: white; }

/* ----- Layout ----- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-subtitle {
  display: inline-block;
  color: var(--wt-primary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--wt-primary-soft);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--wt-text-muted);
}

/* ----- Buttons ----- */
.btn-wt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: var(--wt-radius);
  border: 2px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--wt-transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-wt-primary {
  background: var(--wt-primary);
  color: white;
  box-shadow: var(--wt-shadow-orange);
}
.btn-wt-primary:hover {
  background: var(--wt-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(255, 107, 26, 0.45);
}

.btn-wt-outline {
  background: transparent;
  color: var(--wt-text);
  border-color: var(--wt-border);
}
.btn-wt-outline:hover {
  border-color: var(--wt-primary);
  color: var(--wt-primary);
  transform: translateY(-2px);
}

.btn-wt-dark {
  background: var(--wt-secondary);
  color: white;
}
.btn-wt-dark:hover {
  background: var(--wt-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-wt-lg { padding: 18px 38px; font-size: 1rem; }

/* ----- Navigation ----- */
.wt-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--wt-nav-bg);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--wt-border);
  transition: var(--wt-transition);
}

.wt-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--wt-heading) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wt-navbar .navbar-brand img {
  height: 42px;
  width: auto;
}

.wt-navbar .navbar-brand .brand-text-fallback {
  color: var(--wt-primary);
}

.wt-navbar .nav-link {
  color: var(--wt-text) !important;
  font-weight: 500;
  padding: 8px 18px !important;
  font-size: 0.95rem;
  position: relative;
  transition: var(--wt-transition);
}

.wt-navbar .nav-link:hover,
.wt-navbar .nav-link.active {
  color: var(--wt-primary) !important;
}

.wt-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--wt-primary);
  border-radius: 2px;
}

.wt-navbar .dropdown-menu {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius);
  box-shadow: var(--wt-shadow-lg);
  padding: 10px;
  margin-top: 8px;
  min-width: 240px;
}

.wt-navbar .dropdown-item {
  color: var(--wt-text);
  padding: 10px 14px;
  border-radius: var(--wt-radius-sm);
  font-size: 0.92rem;
  transition: var(--wt-transition);
}

.wt-navbar .dropdown-item:hover {
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
}

.dropdown-menu-mega {
  min-width: 600px !important;
  padding: 20px !important;
}

.dropdown-menu-mega .row { margin: 0; }
.dropdown-menu-mega h6 {
  color: var(--wt-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

/* Theme toggle button */
.theme-toggle {
  background: var(--wt-bg-alt);
  border: 1px solid var(--wt-border);
  color: var(--wt-text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--wt-transition);
}
.theme-toggle:hover {
  background: var(--wt-primary);
  color: white;
  border-color: var(--wt-primary);
  transform: rotate(15deg);
}
.theme-toggle .bi-sun-fill { display: none; }
[data-theme="dark"] .theme-toggle .bi-moon-fill { display: none; }
[data-theme="dark"] .theme-toggle .bi-sun-fill { display: inline; }

body { padding-top: 80px; }

/* ----- Hero ----- */
.wt-hero {
  position: relative;
  background: var(--wt-bg-hero);
  padding: 80px 0 100px;
  overflow: hidden;
}

.wt-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--wt-primary-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.wt-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--wt-primary-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wt-text-muted);
  margin-bottom: 22px;
  box-shadow: var(--wt-shadow);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--wt-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--wt-primary) 0%, var(--wt-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--wt-heading);
  margin-bottom: 4px;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: var(--wt-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  text-align: center;
}

.hero-visual-card {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-xl);
  padding: 50px 40px;
  box-shadow: var(--wt-shadow-lg);
  position: relative;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero-visual-tile {
  background: var(--wt-bg-alt);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--wt-transition);
}
.hero-visual-tile:hover {
  background: var(--wt-primary-soft);
  border-color: var(--wt-primary);
  transform: translateY(-4px);
}
.hero-visual-tile i {
  font-size: 2rem;
  color: var(--wt-primary);
  display: block;
  margin-bottom: 10px;
}
.hero-visual-tile span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wt-text);
}

.floating-shape {
  position: absolute;
  background: var(--wt-primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}
.floating-shape:nth-child(1) { width: 60px; height: 60px; top: -20px; right: -20px; }
.floating-shape:nth-child(2) { width: 40px; height: 40px; bottom: -10px; left: -10px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ----- Cards ----- */
.wt-card {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--wt-transition);
  position: relative;
  overflow: hidden;
}

.wt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--wt-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.wt-card:hover {
  border-color: var(--wt-primary);
  transform: translateY(-6px);
  box-shadow: var(--wt-shadow-lg);
}

.wt-card:hover::before { transform: scaleX(1); }

.wt-card-icon {
  width: 64px;
  height: 64px;
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
  border-radius: var(--wt-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: var(--wt-transition);
}

.wt-card:hover .wt-card-icon {
  background: var(--wt-primary);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.wt-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.wt-card-desc {
  color: var(--wt-text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.wt-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wt-primary);
}

.wt-card-link:hover { gap: 10px; }

/* Service card variant */
.service-card {
  text-align: left;
}

/* Industry card */
.industry-card {
  text-align: center;
  padding: 28px 20px;
}
.industry-card .wt-card-icon {
  margin: 0 auto 18px;
}

/* ----- Feature Box ----- */
.feature-box {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-box-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
  border-radius: var(--wt-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-box-content h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.feature-box-content p {
  font-size: 0.95rem;
  margin: 0;
}

/* ----- Stats Section ----- */
.stats-section {
  background: linear-gradient(135deg, var(--wt-secondary) 0%, #2C2C2C 100%);
  padding: 80px 0;
  color: white;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item .stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--wt-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 1rem;
}

/* ----- CTA Section ----- */
.cta-section {
  background: linear-gradient(135deg, var(--wt-primary) 0%, var(--wt-primary-dark) 100%);
  padding: 90px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-section .btn-wt {
  background: white;
  color: var(--wt-primary);
}

.cta-section .btn-wt:hover {
  background: var(--wt-secondary);
  color: white;
}

/* ----- Testimonials ----- */
.testimonial-card {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: var(--wt-transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wt-shadow-lg);
}

.testimonial-card .quote-icon {
  color: var(--wt-primary);
  font-size: 2.4rem;
  margin-bottom: 18px;
  opacity: 0.4;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--wt-text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--wt-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author-info h6 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--wt-heading);
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--wt-text-muted);
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  background: var(--wt-bg-hero);
  padding: 70px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wt-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--wt-primary-soft) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--wt-primary-soft) 0%, transparent 50%);
  z-index: 0;
}

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

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 14px;
}

.page-hero .breadcrumb-wt {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--wt-text-muted);
  margin-bottom: 18px;
}
.page-hero .breadcrumb-wt a {
  color: var(--wt-text-muted);
}
.page-hero .breadcrumb-wt a:hover { color: var(--wt-primary); }
.page-hero .breadcrumb-wt .separator { opacity: 0.5; }
.page-hero .breadcrumb-wt .current { color: var(--wt-primary); font-weight: 600; }

/* ----- Forms ----- */
.form-control-wt,
.form-select-wt {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  color: var(--wt-text);
  padding: 14px 18px;
  border-radius: var(--wt-radius);
  font-size: 0.95rem;
  transition: var(--wt-transition);
  width: 100%;
}

.form-control-wt:focus,
.form-select-wt:focus {
  outline: none;
  border-color: var(--wt-primary);
  box-shadow: 0 0 0 4px var(--wt-primary-soft);
  background: var(--wt-bg-card);
  color: var(--wt-text);
}

.form-label-wt {
  font-weight: 600;
  color: var(--wt-heading);
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: block;
}

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

/* ----- Footer ----- */
.wt-footer {
  background: var(--wt-footer-bg);
  color: var(--wt-footer-text);
  padding: 80px 0 0;
}

.wt-footer h5 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.wt-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 3px;
  background: var(--wt-primary);
  border-radius: 2px;
}

.wt-footer p { color: var(--wt-footer-text); font-size: 0.92rem; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--wt-footer-text);
  font-size: 0.92rem;
  transition: var(--wt-transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--wt-primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--wt-primary); font-size: 1.1rem; margin-top: 3px; }
.footer-contact-item a { color: var(--wt-footer-text); }
.footer-contact-item a:hover { color: var(--wt-primary); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--wt-transition);
}
.footer-social a:hover {
  background: var(--wt-primary);
  transform: translateY(-3px);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 12px 14px;
  border-radius: var(--wt-radius-sm);
  font-size: 0.9rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--wt-primary); }
.footer-newsletter button {
  background: var(--wt-primary);
  color: white;
  border: none;
  padding: 0 18px;
  border-radius: var(--wt-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--wt-transition);
}
.footer-newsletter button:hover { background: var(--wt-primary-dark); }

.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand img { height: 42px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 0.88rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-bottom-links a { color: var(--wt-footer-text); }
.footer-bottom-links a:hover { color: var(--wt-primary); }

/* ----- Floating buttons (WhatsApp / scroll-top) ----- */
.floating-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: var(--wt-transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: white;
}

.whatsapp-btn {
  bottom: 26px;
  right: 26px;
  background: #25D366;
}

.scroll-top {
  bottom: 96px;
  right: 26px;
  background: var(--wt-secondary);
  opacity: 0;
  visibility: hidden;
}
.scroll-top.show { opacity: 1; visibility: visible; }

/* ----- Accordion (FAQ) ----- */
.wt-accordion .accordion-item {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.wt-accordion .accordion-button {
  background: var(--wt-bg-card);
  color: var(--wt-heading);
  font-weight: 600;
  padding: 18px 22px;
  box-shadow: none;
}
.wt-accordion .accordion-button:not(.collapsed) {
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
}
.wt-accordion .accordion-button:focus { box-shadow: none; }
.wt-accordion .accordion-body {
  color: var(--wt-text-muted);
  padding: 6px 22px 22px;
}

/* ----- Portfolio ----- */
.portfolio-item {
  position: relative;
  border-radius: var(--wt-radius-lg);
  overflow: hidden;
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  transition: var(--wt-transition);
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--wt-shadow-lg);
}
.portfolio-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--wt-primary-soft) 0%, var(--wt-bg-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--wt-primary);
}
.portfolio-body { padding: 24px; }
.portfolio-category {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--wt-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.portfolio-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* ----- Blog ----- */
.blog-card {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--wt-transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wt-shadow-lg);
}
.blog-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--wt-primary) 0%, var(--wt-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}
.blog-body { padding: 26px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--wt-text-muted);
  margin-bottom: 12px;
}
.blog-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-title a { color: var(--wt-heading); }
.blog-title a:hover { color: var(--wt-primary); }

/* ----- Pricing ----- */
.pricing-card {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  transition: var(--wt-transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--wt-primary);
  box-shadow: var(--wt-shadow-lg);
}
.pricing-card.popular {
  border-color: var(--wt-primary);
  box-shadow: var(--wt-shadow-orange);
}
.pricing-card .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wt-primary);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-name { font-size: 1.1rem; color: var(--wt-text-muted); margin-bottom: 16px; }
.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--wt-heading);
  line-height: 1;
}
.pricing-amount .period { font-size: 0.9rem; color: var(--wt-text-muted); font-weight: 400; }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--wt-border);
  font-size: 0.95rem;
  color: var(--wt-text);
}
.pricing-features li i { color: var(--wt-primary); margin-right: 8px; }

/* ----- Team ----- */
.team-card {
  text-align: center;
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 30px 22px;
  transition: var(--wt-transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wt-shadow-lg);
  border-color: var(--wt-primary);
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--wt-primary) 0%, var(--wt-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  border: 4px solid var(--wt-bg-card);
  box-shadow: var(--wt-shadow);
}
.team-name { font-size: 1.15rem; margin-bottom: 4px; }
.team-role { color: var(--wt-primary); font-size: 0.9rem; font-weight: 500; margin-bottom: 14px; }
.team-social {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.team-social a {
  width: 34px; height: 34px;
  background: var(--wt-bg-alt);
  color: var(--wt-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--wt-transition);
}
.team-social a:hover {
  background: var(--wt-primary);
  color: white;
}

/* ----- Process steps ----- */
.process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}
.process-step .step-number {
  width: 70px;
  height: 70px;
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 2px dashed var(--wt-primary);
}

/* ----- Tag pills ----- */
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 4px;
}

/* ----- Industry mini-icon grid ----- */
.industry-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.industry-mini {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius);
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--wt-text);
  transition: var(--wt-transition);
  display: block;
}
.industry-mini:hover {
  background: var(--wt-primary-soft);
  border-color: var(--wt-primary);
  color: var(--wt-primary);
  transform: translateY(-4px);
}
.industry-mini i { font-size: 1.8rem; display: block; margin-bottom: 10px; color: var(--wt-primary); }
.industry-mini span { font-size: 0.88rem; font-weight: 600; }

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
  body { padding-top: 70px; }
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 50px; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-number { font-size: 1.7rem; }
  .stat-item .stat-num { font-size: 2.5rem; }
  .footer-bottom-links { justify-content: flex-start; margin-top: 14px; }
  .dropdown-menu-mega { min-width: 100% !important; }
  .wt-navbar .navbar-collapse {
    background: var(--wt-bg-card);
    margin-top: 14px;
    padding: 18px;
    border-radius: var(--wt-radius);
    border: 1px solid var(--wt-border);
  }
}

@media (max-width: 575.98px) {
  .section { padding: 50px 0; }
  .wt-hero { padding: 50px 0 70px; }
  .btn-wt { padding: 12px 22px; font-size: 0.9rem; }
  .floating-btn { width: 48px; height: 48px; font-size: 1.3rem; }
  .whatsapp-btn { bottom: 18px; right: 18px; }
  .scroll-top { bottom: 80px; right: 18px; }
}

/* ----- Utilities ----- */
.text-gradient {
  background: linear-gradient(135deg, var(--wt-primary) 0%, var(--wt-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-alt { background: var(--wt-bg-alt); }
.text-primary-wt { color: var(--wt-primary) !important; }
.divider {
  width: 60px;
  height: 4px;
  background: var(--wt-primary);
  border-radius: 2px;
  margin: 16px auto;
}

/* AOS-like reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   LUXURY UPGRADE LAYER — applies globally to every page
   ========================================================================== */

/* Import the display font (Playfair) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --wt-font-display: 'Playfair Display', 'Georgia', serif;
  --wt-radius-2xl: 28px;
  --wt-gradient-orange: linear-gradient(135deg, #FF6B1A 0%, #FF8C42 50%, #FFB347 100%);
  --wt-gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #0F0F0F 100%);
}

/* ---------- Display headings (global) ---------- */
.page-hero h1,
.section-title,
h1.display-luxury,
h2.display-luxury {
  font-family: var(--wt-font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.text-display { font-family: var(--wt-font-display) !important; font-weight: 800; letter-spacing: -0.02em; }

/* Gradient accent text helper */
.text-gradient {
  background: var(--wt-gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Premium scroll progress bar (top of every page) ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--wt-gradient-orange);
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(255, 107, 26, 0.6);
}

/* ---------- Custom scrollbar (premium polish) ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--wt-bg-alt); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--wt-primary), var(--wt-primary-dark));
  border-radius: 100px;
  border: 2px solid var(--wt-bg-alt);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--wt-primary-dark), #B8470A);
}
* { scrollbar-color: var(--wt-primary) var(--wt-bg-alt); scrollbar-width: thin; }

/* ---------- UPGRADE: .page-hero → luxury dark-gradient hero ---------- */
.page-hero {
  background: var(--wt-gradient-dark);
  color: #fff !important;
  padding: 130px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 26, 0.28) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 26, 0.15) 0%, transparent 50%);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff !important;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.page-hero h1 .text-gradient {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #FF8C42 0%, #FFD89B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.page-hero p,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.page-hero .breadcrumb-wt {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
}
.page-hero .breadcrumb-wt a { color: rgba(255, 255, 255, 0.65); }
.page-hero .breadcrumb-wt a:hover { color: var(--wt-primary); }
.page-hero .breadcrumb-wt .current { color: var(--wt-primary); }
.page-hero .breadcrumb-wt .separator { color: rgba(255, 255, 255, 0.35); }
.page-hero .wt-card-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wt-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
}

/* Optional eyebrow chip inside page-hero */
.page-hero .hero-chip,
.lux-tag-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.35);
  color: #FF8C42 !important;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

/* ---------- UPGRADE: section-title with display font + gradient accent ---------- */
.section-subtitle {
  letter-spacing: 2.5px;
  font-weight: 700;
}
.section-title {
  font-family: var(--wt-font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

/* ---------- UPGRADE: .wt-card → add subtle shine on hover ---------- */
.wt-card {
  position: relative;
  overflow: hidden;
}
.wt-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 26, 0.06) 50%, transparent 100%);
  transform: rotate(20deg);
  transition: left 0.7s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.wt-card:hover::after {
  left: 130%;
}

/* ---------- UPGRADE: buttons with subtle shimmer ---------- */
.btn-wt {
  position: relative;
  overflow: hidden;
}
.btn-wt-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.6s cubic-bezier(.16,1,.3,1);
}
.btn-wt-primary:hover::before { left: 100%; }

/* ---------- UPGRADE: footer top orange line + polished spacing ---------- */
.wt-footer {
  position: relative;
  padding-top: 90px;
}
.wt-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wt-gradient-orange);
}
.wt-footer h5 {
  font-family: var(--wt-font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.wt-footer h5::after {
  background: var(--wt-gradient-orange);
}
.wt-footer .footer-brand {
  margin-bottom: 18px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-right: 8px;
}
.footer-social a:hover {
  background: var(--wt-primary);
  border-color: var(--wt-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255, 107, 26, 0.35);
}

/* ---------- UPGRADE: cta-section with luxury depth ---------- */
.cta-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 200, 100, 0.3) 0%, transparent 50%),
    var(--wt-gradient-orange) !important;
  box-shadow: inset 0 50px 100px rgba(0, 0, 0, 0.1);
}
.cta-section h2 {
  font-family: var(--wt-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-section .btn-wt {
  background: #FFFFFF;
  color: var(--wt-primary);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.cta-section .btn-wt:hover {
  background: #0F0F0F;
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Reusable luxury chips ---------- */
.lux-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(255, 107, 26, 0.10);
  color: var(--wt-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ---------- Reusable trust strip (small awards row that can be dropped on any page) ---------- */
.trust-strip {
  background: var(--wt-bg-alt);
  border-top: 1px solid var(--wt-border);
  border-bottom: 1px solid var(--wt-border);
  padding: 50px 0;
}
.trust-cell {
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--wt-border);
}
.trust-cell:last-child { border-right: none; }
@media (max-width: 767px) {
  .trust-cell { border-right: none; border-bottom: 1px solid var(--wt-border); }
  .trust-cell:last-child { border-bottom: none; }
}
.trust-cell i {
  font-size: 2rem; color: var(--wt-primary);
  margin-bottom: 10px; display: block;
}
.trust-cell h5 {
  font-size: 0.95rem; font-weight: 700; margin: 0 0 4px;
  color: var(--wt-heading);
}
.trust-cell p {
  font-size: 0.82rem; color: var(--wt-text-muted); margin: 0;
}

/* ---------- Hover-lift utility for any card ---------- */
.hover-lift { transition: all 0.35s cubic-bezier(.16,1,.3,1); }
.hover-lift:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.10); }

/* ---------- "Glass" surface utility ---------- */
.lux-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--wt-radius-2xl);
}

/* ---------- Section padding bump (cascades to all pages using .section) ---------- */
.section { padding: 110px 0; }
@media (max-width: 991px) {
  .section { padding: 75px 0; }
  .section-lg { padding: 100px 0; }
  .page-hero { padding: 110px 0 70px; }
}
@media (max-width: 575px) {
  .section { padding: 55px 0; }
  .page-hero { padding: 95px 0 55px; }
  .page-hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
}

/* ---------- Process-step (used in service detail pages) — refresh ---------- */
.process-step {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 28px;
  text-align: center;
  height: 100%;
  transition: all 0.35s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--wt-primary);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}
.process-step .step-number {
  font-family: var(--wt-font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--wt-primary);
  line-height: 1;
  margin-bottom: 12px;
}

/* ---------- Select dropdown options — always readable ----------
   Native <option> elements don't inherit parent select's bg/color reliably.
   This forces dark text on white bg for the dropdown items, no matter
   what the parent select looks like (dark form, glass form, etc.). */
select option,
.form-select-wt option,
select optgroup,
.form-select-wt optgroup {
  background-color: #FFFFFF !important;
  color: #1A1A1A !important;
  padding: 8px 10px;
  font-weight: 500;
}
select option:checked,
.form-select-wt option:checked,
select option:hover,
.form-select-wt option:hover {
  background-color: #FF6B1A !important;
  color: #FFFFFF !important;
}
/* Dark theme: keep options readable with dark surface */
[data-theme="dark"] select option,
[data-theme="dark"] .form-select-wt option {
  background-color: #1A1A1A !important;
  color: #FFFFFF !important;
}
[data-theme="dark"] select option:checked,
[data-theme="dark"] .form-select-wt option:checked {
  background-color: #FF6B1A !important;
  color: #FFFFFF !important;
}

/* ---------- Industry "Pre-Configured Modules" grid ---------- */
.ind-mod-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) { .ind-mod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .ind-mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ind-mod-grid { grid-template-columns: 1fr; } }

.ind-mod-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-border);
  border-radius: 14px;
  padding: 16px 18px;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.ind-mod-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--wt-gradient-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.ind-mod-card:hover::before { transform: scaleY(1); }
.ind-mod-card:hover {
  border-color: var(--wt-primary);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}
.ind-mod-card .ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.ind-mod-card:hover .ic {
  background: var(--wt-gradient-orange);
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}
.ind-mod-card h4 {
  font-size: 0.94rem;
  font-weight: 600;
  margin: 0;
  color: var(--wt-heading);
  line-height: 1.3;
}

/* ==========================================================================
   WhatsApp Business Chat Widget — global, replaces simple wa.me button
   ========================================================================== */
.wt-wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 950;
  font-family: 'Inter', sans-serif;
}

/* The trigger button (the floating WhatsApp circle) */
.wt-wa-trigger {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.wt-wa-trigger:hover {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.55);
}
.wt-wa-trigger::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: wt-wa-ping 2.2s infinite cubic-bezier(0, 0, 0.2, 1);
}
@keyframes wt-wa-ping {
  0%   { transform: scale(1);   opacity: 0.7; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

/* Unread badge */
.wt-wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px; height: 22px;
  background: #FF6B1A;
  color: #fff;
  border-radius: 100px;
  border: 2px solid #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.4);
}

/* Hover preview pill (right side of trigger) */
.wt-wa-preview {
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #fff;
  color: #1A1A1A;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.wt-wa-preview::after {
  content: '';
  position: absolute;
  right: -7px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #fff;
}
.wt-wa-widget:not(.open) .wt-wa-trigger:hover + .wt-wa-preview,
.wt-wa-widget:not(.open) .wt-wa-preview:hover {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* The chat panel */
.wt-wa-panel {
  position: absolute;
  bottom: 82px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 30px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.wt-wa-widget.open .wt-wa-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wt-wa-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.wt-wa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #128C7E;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(37, 211, 102, 0.15);
}
.wt-wa-header-info { flex: 1; min-width: 0; }
.wt-wa-header h6 {
  color: #fff;
  margin: 0 0 2px;
  font-weight: 700;
  font-size: 0.96rem;
}
.wt-wa-header p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.74rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wt-wa-header p::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.35);
  flex-shrink: 0;
}
.wt-wa-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.15);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wt-wa-close:hover { background: rgba(255, 255, 255, 0.25); }

/* WhatsApp-style chat background */
.wt-wa-body {
  background-color: #ECE5DD;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
  padding: 18px 16px;
  max-height: 340px;
  overflow-y: auto;
}

/* Bubble */
.wt-wa-msg {
  background: #fff;
  padding: 12px 14px 8px;
  border-radius: 14px 14px 14px 4px;
  max-width: 90%;
  font-size: 0.88rem;
  color: #1A1A1A;
  margin-bottom: 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  line-height: 1.55;
  position: relative;
  animation: wt-wa-msg-in 0.4s cubic-bezier(.16,1,.3,1);
}
@keyframes wt-wa-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wt-wa-msg .stamp {
  font-size: 0.66rem;
  color: #667781;
  text-align: right;
  margin-top: 4px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
.wt-wa-msg .stamp i {
  color: #34B7F1;
  font-size: 0.78rem;
}

/* Quick-reply chips */
.wt-wa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.wt-wa-chip {
  padding: 7px 13px;
  background: #fff;
  border: 1px solid #25D366;
  color: #075E54;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.wt-wa-chip:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
}

/* Input row */
.wt-wa-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #F0F2F5;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
}
.wt-wa-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid #e5e7eb;
  font-size: 0.88rem;
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.wt-wa-input:focus { border-color: #25D366; }
.wt-wa-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all 0.2s;
}
.wt-wa-send:hover { transform: scale(1.08); }
.wt-wa-send:active { transform: scale(0.96); }

/* "Powered by WizTach" footer line */
.wt-wa-foot {
  padding: 6px 14px 10px;
  background: #F0F2F5;
  text-align: center;
  font-size: 0.68rem;
  color: #667781;
  letter-spacing: 0.5px;
}

/* Hide the old simple WhatsApp floating button (the new widget replaces it) */
.floating-btn.whatsapp-btn { display: none !important; }

/* Hide chat widget on mobile — mobile-cta bar already has WhatsApp */
@media (max-width: 767px) {
  .wt-wa-widget { display: none !important; }
}

/* On tablet, slightly compact */
@media (max-width: 991px) {
  .wt-wa-widget { bottom: 22px; right: 22px; }
  .wt-wa-trigger { width: 58px; height: 58px; font-size: 1.65rem; }
  .wt-wa-preview { right: 70px; padding: 8px 14px; font-size: 0.8rem; }
}

/* ---------- Mobile sticky CTA (Call + WhatsApp + Quote) ---------- */
.wt-mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.25);
}
.wt-mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 6px;
}
.wt-mobile-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 9px 6px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 52px;
}
.wt-mobile-cta a i {
  font-size: 1.15rem;
  margin-bottom: 1px;
}
.wt-mobile-cta .cta-call {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.wt-mobile-cta .cta-wa {
  background: #25D366;
  color: #fff;
}
.wt-mobile-cta .cta-quote {
  background: linear-gradient(135deg, #FF6B1A, #FF8C42);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.35);
}
.wt-mobile-cta a:active { transform: scale(0.96); }

/* Show only on mobile */
@media (max-width: 767px) {
  .wt-mobile-cta { display: block; }
  /* Push footer up so it doesn't get hidden behind the bar */
  body { padding-bottom: 78px; }
  /* Hide the floating buttons on mobile when the CTA bar is showing */
  .floating-btn.whatsapp-btn,
  .floating-btn.scroll-top { display: none !important; }
}

/* ---------- Cookie consent banner ---------- */
.wt-cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  z-index: 10000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), opacity 0.4s;
}
.wt-cookie-banner.show { transform: translateY(0); opacity: 1; }
.wt-cookie-inner {
  display: flex;
  gap: 18px;
  align-items: center;
}
.wt-cookie-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF6B1A, #FF8C42);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 12px 28px rgba(255, 107, 26, 0.35);
}
.wt-cookie-text { flex: 1; min-width: 0; }
.wt-cookie-text h6 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.wt-cookie-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.55;
}
.wt-cookie-text a {
  color: var(--wt-primary);
  text-decoration: underline;
}
.wt-cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.wt-cookie-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.wt-cookie-decline {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.wt-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}
.wt-cookie-accept {
  background: linear-gradient(135deg, #FF6B1A, #FF8C42);
  color: #fff;
}
.wt-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 26, 0.4);
}
@media (max-width: 640px) {
  .wt-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; border-radius: 16px; }
  .wt-cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .wt-cookie-icon { margin: 0 auto; }
  .wt-cookie-text { text-align: center; }
  .wt-cookie-actions { width: 100%; }
  .wt-cookie-btn { flex: 1; padding: 12px; }
}

/* ---------- Floating buttons polish ---------- */
.floating-btn {
  z-index: 100;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}
.floating-btn.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  background: #25D366; color: white;
}
.floating-btn.whatsapp-btn:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.5);
}
.floating-btn.scroll-top {
  position: fixed; bottom: 28px; right: 96px;
  background: var(--wt-bg-card);
  color: var(--wt-text);
  border: 1px solid var(--wt-border);
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
}
.floating-btn.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-btn.scroll-top:hover {
  background: var(--wt-primary);
  color: #fff;
  border-color: var(--wt-primary);
  transform: scale(1.1);
}
@media (max-width: 575px) {
  .floating-btn { width: 48px; height: 48px; font-size: 1.4rem; }
  .floating-btn.whatsapp-btn { bottom: 20px; right: 20px; }
  .floating-btn.scroll-top { bottom: 20px; right: 78px; font-size: 1rem; }
}

