/* Fallback defaults (matches your samra_get_setting defaults) */
:root {
  --wt-primary:       #154ea1;
  --wt-secondary:     #1a1a1a;
  --wt-bg:            #ffffff;
  --wt-text:          #333333;
  --wt-link:          #ffca05;
  --wt-dark:          #000000;
  --wt-bright:        #f8f8f8;

  /* Derived tokens — computed from the above */
  --wt-primary-dark:  color-mix(in srgb, var(--wt-primary) 80%, #000 20%);
  --wt-primary-subtle: color-mix(in srgb, var(--wt-primary) 42%, transparent);
  --wt-primary-light: color-mix(in srgb, var(--wt-primary) 18%, #fff 82%);
  --wt-text-muted:    color-mix(in srgb, var(--wt-text) 60%, transparent);
  --wt-border:        color-mix(in srgb, var(--wt-secondary) 12%, transparent);
  --wt-radius:        6px;
  --wt-radius-lg:     10px;
  --wt-shadow:        0 2px 12px rgba(0,0,0,.07);
  --wt-gutter:        clamp(1rem, 4vw, 2.5rem);
  --wt-section-pad:   clamp(48px, 8vw, 80px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */


img { max-width: 100%; display: block; }
a { color: var(--wt-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.watec-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--wt-gutter);
}

.watec-section {
  padding: var(--wt-section-pad) 0;
}

.watec-section-alt {
  background: var(--wt-bright);
}

.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY — SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--wt-primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .5rem;
}

.section-divider {
  width: 44px;
  height: 3px;
  background: var(--wt-primary);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.section-divider.center { margin-left: auto; margin-right: auto; }

.watec-section h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--wt-secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--wt-text-muted);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.watec-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--wt-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
  text-decoration: none;
  line-height: 1;
}

.watec-btn:hover { text-decoration: none; transform: translateY(-1px); }
.watec-btn:active { transform: translateY(0); }

.watec-btn-primary {
  background: var(--wt-primary);
  color: var(--wt-bright);
  border-color: var(--wt-primary);
}

.watec-btn-primary:hover {
  background: var(--wt-primary-dark);
  border-color: var(--wt-primary-dark);
  color: var(--wt-bright);
}

.watec-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

.watec-btn-outline:hover {
  border-color: var(--wt-primary);
  background: var(--wt-primary-subtle);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Dark variant of outline (used outside hero) */
.watec-btn-outline-dark {
  background: transparent;
  color: var(--wt-secondary);
  border-color: var(--wt-border);
}

.watec-btn-outline-dark:hover {
  border-color: var(--wt-primary);
  color: var(--wt-secondary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Slider Container */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Each Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

/* Active Slide */
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wt-primary-subtle);
  border: 1px solid var(--wt-primary-subtle);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero-badge .fas,
.hero-badge .ti { font-size: 13px; }

/* Headline */
.hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  max-width: 720px;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero h1 em,
.hero h1 .accent { color: var(--wt-primary); font-style: normal; }

/* Subtext */
.hero > .watec-container > p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.7);
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Tags row */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 4px;
  transition: border-color .18s, background .18s;
}

.hero-tag:hover {
  background: var(--wt-primary-subtle);
  border-color: var(--wt-primary-subtle);
  color: rgba(255,255,255,.82);
}

.hero-tag .fas,
.hero-tag .ti { color: var(--wt-primary); font-size: 13px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 100px 0;
    overflow: hidden;
}

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

/* LEFT SIDE */
.about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* RIGHT GALLERY */
.about-gallery {
    display: flex;
    gap: 12px;
    width: 100%;
    height: 500px;
}

.gallery-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    opacity: 0.65;
    filter: grayscale(30%);
}

.gallery-item.active {
    flex: 9;
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-10px);
}

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

.gallery-item.active img {
    transform: scale(1.08);
}

/* Hover Effect */
.gallery-item:hover {
    opacity: 1;
}

/* MOBILE */
@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-gallery {
        height: 400px;
    }

}

@media (max-width: 768px) {

    .about-gallery {
        height: 320px;
        gap: 8px;
    }

    .gallery-item.active {
        flex: 6;
    }

}
.check-item .fas,
.check-item .ti {
  color: var(--wt-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.about-callout {
  background: var(--wt-secondary);
  border-left: 4px solid var(--wt-primary);
  border-radius: var(--wt-radius);
  padding: 32px 28px;
  color: #fff;
}

.about-callout-icon {
  font-size: 28px;
  color: var(--wt-primary);
  margin-bottom: 14px;
  display: block;
}

.about-callout p {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.about-callout strong { color: var(--wt-primary); font-weight: 600; }

/* ============================================================
   STATISTICS / KPI CARDS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}

.stat-item {
  background: var(--wt-bg);
  border: 1px solid var(--wt-border);
  border-top: 3px solid var(--wt-primary);
  border-radius: var(--wt-radius);
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow .2s;
}

.stat-item:hover { box-shadow: var(--wt-shadow); }

.stat-icon {
  font-size: 24px;
  color: var(--wt-primary);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--wt-secondary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--wt-text-muted);
  line-height: 1.45;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--wt-bg);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--wt-primary-light);
  border-radius: var(--wt-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--wt-secondary);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--wt-secondary);
  margin-bottom: 14px;
  line-height: 1.35;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--wt-text-muted);
  line-height: 1.4;
}

.service-card li .fas,
.service-card li .ti {
  color: var(--wt-primary);
  font-size: 11px;
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US — FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 2.5rem;
}

.feature {
  background: var(--wt-bg);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}

.feature:hover {
  border-color: var(--wt-primary);
  box-shadow: var(--wt-shadow);
}

.feature > .fas,
.feature > .ti {
  font-size: 30px;
  color: var(--wt-primary);
  
  margin-bottom: 14px;
}

.feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--wt-secondary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.feature p {
  font-size: 13.5px;
  color: var(--wt-text-muted);
  line-height: 1.65;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 2.5rem;
  position: relative;
}

/* Connector line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--wt-primary);
  opacity: .2;
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 78px;
  height: 78px;
  font-weight: 700;
  margin: 0 auto 20px;
  background: #f5f5f5;
  color: var(--wt-primary);
  border-radius: 50%;
  border: 3px solid var(--wt-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.step-number .fas,
.step-number .ti {
  font-size: 18px;
  color: var(--wt-primary);
}

.step-number .step-num-label {
  font-size: 10px;
  font-weight: 900;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  line-height: 1;
}

.step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--wt-secondary);
  margin-bottom: 6px;
  line-height: 1.35;
}

.step p {
  font-size: 13px;
  color: var(--wt-text-muted);
  line-height: 1.65;
}

/* ============================================================
   INDUSTRIES / SECTORS BADGES
   ============================================================ */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wt-bg);
  border: 1px solid var(--wt-border);
  color: var(--wt-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 4px;
  transition: border-color .18s, background .18s, transform .18s;
  cursor: default;
}

.industry-badge:hover {
  border-color: var(--wt-primary);
  background: var(--wt-primary-light);
  transform: translateY(-2px);
}

.industry-badge .fas,
.industry-badge .ti {
  color: var(--wt-primary);
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--wt-secondary);
  border-radius: var(--wt-radius-lg);
  padding: clamp(40px, 7vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Top accent bar */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--wt-primary);
}

/* Grid texture overlay */
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,202,5,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,202,5,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-phone-icon {
  font-size: 2.2rem;
  color: var(--wt-primary);
  display: inline-block;
  margin-bottom: 1rem;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 800;
  margin-bottom: .8rem;
}

.cta-banner > p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.cta-banner .btn-group { justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .about-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .process-steps::before { display: none; }

  .hero h1 { font-size: 1.75rem; }
}

@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 36px 20px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .watec-btn { justify-content: center; }
}

@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .hero { background: var(--wt-secondary) !important; -webkit-print-color-adjust: exact; }
  .watec-btn { border: 1px solid currentColor; }
  .cta-banner { background: var(--wt-secondary) !important; -webkit-print-color-adjust: exact; }
}