/*
Theme Name: EazyClean Technologies
Theme URI: https://support.eazyclean.com
Author: EazyClean Technologies GmbH
Author URI: https://eazyclean.com
Description: Premium dark theme for EazyClean Technologies - Professional Dry Cleaning Machines. Features glassmorphism effects, cyan/purple gradients, and responsive design matching the EazyClean brand identity.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eazyclean
Tags: dark, one-column, two-columns, custom-menu, featured-images, translation-ready
*/

:root {
  --ec-cyan: #00d4ff;
  --ec-cyan-dark: #0891b2;
  --ec-blue: #3b82f6;
  --ec-purple: #7c3aed;
  --ec-bg-primary: #0f172a;
  --ec-bg-secondary: #1e293b;
  --ec-bg-card: rgba(15, 23, 42, 0.6);
  --ec-text-primary: #f8fafc;
  --ec-text-secondary: rgba(203, 213, 225, 0.8);
  --ec-text-muted: rgba(148, 163, 184, 0.6);
  --ec-border: rgba(255, 255, 255, 0.1);
  --ec-glow-cyan: rgba(6, 182, 212, 0.3);
  --ec-glow-blue: rgba(59, 130, 246, 0.2);
  --ec-radius-sm: 0.5rem;
  --ec-radius-md: 0.75rem;
  --ec-radius-lg: 1rem;
  --ec-radius-xl: 1.5rem;
  --ec-radius-2xl: 2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #fff;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
}

body.is-front-page {
  color: var(--ec-text-primary);
  background: var(--ec-bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: inherit;
}

body.is-front-page h1,
body.is-front-page h2,
body.is-front-page h3,
body.is-front-page h4,
body.is-front-page h5,
body.is-front-page h6 {
  color: var(--ec-text-primary);
}

a {
  color: var(--ec-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fff;
}

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

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

.glass {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--ec-border);
}

.glass-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius-xl);
}

.text-gradient {
  background: linear-gradient(135deg, #22d3ee, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-brand {
  background: linear-gradient(135deg, #22d3ee, #3b82f6, #7c3aed);
}

.text-hero-gradient {
  background: linear-gradient(to bottom right, #fff, #fff, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
}

body.is-subpage .site-header {
  background: var(--ec-bg-primary);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: auto;
  width: 14rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transition: width 0.3s ease;
}


.site-header .logo a {
  display: inline-block;
}

/* Primary Navigation */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--ec-radius-md);
  color: var(--ec-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.current-menu-item a,
.primary-nav .current_page_item a {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.primary-nav a.nav-cta {
  background: linear-gradient(to right, #06b6d4, #2563eb);
  color: #fff;
  box-shadow: 0 0 20px var(--ec-glow-cyan);
  padding: 0.5rem 1.25rem;
}

.primary-nav a.nav-cta:hover {
  box-shadow: 0 0 30px var(--ec-glow-cyan);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius-md);
  padding: 0.5rem;
  color: var(--ec-text-primary);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--ec-radius-lg);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid var(--ec-border);
    gap: 0.25rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    justify-content: center;
  }

  .site-header .logo img {
    width: 10rem;
  }

}

/* Sticky header on scroll */
.site-header.is-sticky {
  position: fixed;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ec-border);
  padding: 0.75rem 0;
  animation: slideDown 0.3s ease;
}

.site-header.header-subpage .logo img {
  width: 9rem;
}

.site-header.is-sticky .logo img {
  width: 4.5rem;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   MEGA MENU
   ══════════════════════════════════════════════════════════════ */

.mega-menu-trigger {
  position: relative;
}

.mega-menu-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}

.mega-menu-link svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.mega-menu-trigger:hover .mega-menu-link svg {
  transform: rotate(180deg);
  opacity: 1;
}

.mega-menu-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s;
  z-index: 1000;
}

.mega-menu-trigger:hover .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Invisible hover bridge between link and panel */
.mega-menu-panel::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.mega-menu-inner {
  width: 680px;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(0, 211, 242, 0.06);
}

.mega-menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.mega-menu-card:hover {
  border-color: rgba(0, 211, 242, 0.25);
  transform: translateY(-2px);
}

.mega-menu-eco-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.65), rgba(16, 160, 72, 0.65));
  border-radius: 50%;
  z-index: 2;
}

.mega-menu-card-used .mega-menu-eco-badge {
  background: linear-gradient(135deg, #22c55e, #10a048);
}

.mega-menu-eco-badge svg {
  stroke: #fff;
}

.mega-menu-card-img {
  position: relative;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 211, 242, 0.03);
  padding: 0.5rem;
}

.mega-menu-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.mega-menu-card:hover .mega-menu-card-img img {
  transform: scale(1.06);
}

.mega-menu-card-used .mega-menu-card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.mega-menu-card-body {
  padding: 0.75rem 1rem 1rem;
}

.mega-menu-card-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem 0;
}

.mega-menu-card-body p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
}

.mega-menu-more {
  font-size: 0.7rem;
  color: var(--ec-cyan);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.mega-menu-more:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.mega-menu-cta {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-cta .btn {
  font-size: 0.8rem;
}

/* Mobile: hide mega menu */
@media (max-width: 768px) {
  .mega-menu-panel {
    display: none !important;
  }

  .mega-menu-link svg {
    display: none;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .silk-wave {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 70%;
  height: 140%;
  opacity: 0.5;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M350,0 C400,100 450,200 400,300 C350,400 250,450 300,550 C350,650 450,700 400,800 L500,800 L500,0 Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M350,0 C400,100 450,200 400,300 C350,400 250,450 300,550 C350,650 450,700 400,800 L500,800 L500,0 Z' fill='white'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-size: cover;
}

.hero-bg .silk-wave img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .bubbles-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.hero-bg .bubbles-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .ambient-glow-1 {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 30rem;
  height: 30rem;
  background: rgba(30, 58, 138, 0.2);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-bg .ambient-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 25rem;
  height: 25rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}

.hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-cyan);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(226, 232, 240, 0.95);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.hero-machine {
  text-align: center;
  position: relative;
}

.hero-machine-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(6, 182, 212, 0.35) 0%,
    rgba(6, 182, 212, 0.15) 40%,
    rgba(6, 182, 212, 0.05) 60%,
    transparent 75%
  );
  filter: blur(45px);
  z-index: 0;
  animation: machineGlow 5s ease-in-out infinite;
}

@keyframes machineGlow {
  0%, 100% { opacity: 0.8; }
  50%      { opacity: 1; }
}

.hero-machine-img {
  position: relative;
  z-index: 1;
  max-width: 95%;
  height: auto;
  filter:
    drop-shadow(0 0 40px rgba(6, 182, 212, 0.3))
    drop-shadow(0 0 80px rgba(6, 182, 212, 0.15))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.hero-machine-label {
  position: relative;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -0.5rem;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    rgba(140, 165, 180, 0.85) 0%,
    rgba(255, 255, 255, 1) 20%,
    rgba(200, 215, 225, 0.95) 40%,
    rgba(140, 165, 180, 0.85) 50%,
    rgba(255, 255, 255, 1) 70%,
    rgba(200, 215, 225, 0.95) 80%,
    rgba(140, 165, 180, 0.85) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 20px rgba(6, 182, 212, 0.25));
  animation: labelShimmer 4s ease-in-out infinite;
}

@keyframes labelShimmer {
  0%   { background-position: 100% center; }
  100% { background-position: -100% center; }
}

@media (max-width: 768px) {
  .hero > .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding-top: 7rem !important;
    gap: 2rem !important;
  }

  .hero-machine {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-machine-img {
    max-width: 100%;
  }

  .hero-content {
    max-width: 100% !important;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--ec-radius-lg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, #06b6d4, #2563eb);
  color: #fff;
  box-shadow: 0 0 20px var(--ec-glow-cyan);
}

.btn-primary:hover {
  box-shadow: 0 0 35px var(--ec-glow-cyan);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ec-text-secondary);
  border: 1px solid var(--ec-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ec-cyan);
  margin-bottom: 0.75rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--ec-text-secondary);
  max-width: 40rem;
  line-height: 1.7;
}

/* ========================================
   FEATURES GRID
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--ec-radius-xl);
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ec-border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--ec-radius-md);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ec-cyan);
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--ec-text-secondary);
  line-height: 1.6;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  border-radius: var(--ec-radius-xl);
  overflow: hidden;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ec-border);
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ec-bg-secondary), var(--ec-bg-primary));
  position: relative;
}

.eco-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 7px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.65), rgba(16, 160, 72, 0.65));
  border: none;
  border-radius: 9999px;
  z-index: 2;
}

.eco-badge svg {
  stroke: #fff;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card-body .product-subtitle {
  font-size: 0.75rem;
  color: var(--ec-text-muted);
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--ec-border);
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-learn-more {
  font-size: 0.8rem;
  color: var(--ec-cyan);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.product-learn-more:hover {
  opacity: 1;
  text-decoration: underline;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ec-cyan);
}

.product-price small {
  font-size: 0.75rem;
  color: var(--ec-text-muted);
  font-weight: 400;
}

/* ========================================
   PROCESS STEPS / TIMELINE
   ======================================== */

.process-timeline {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

/* Timeline lines removed – icons speak for themselves */
.process-timeline::before,
.process-timeline::after {
  display: none;
}

/* Traveling light dot – removed, was distracting */
.process-timeline-dot {
  display: none;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
  /* Staggered reveal */
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover lift */
.process-step:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Process step animated icons */
.process-step-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.12);
  padding: 0.4rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.process-step-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* SVG animations only play when visible */
.process-step-icon svg * {
  animation-play-state: paused;
}
.process-step.is-visible .process-step-icon svg * {
  animation-play-state: running;
}

/* Drum spin animation (used by wash, recovery, gears) */
@keyframes ecDrumSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ecGearReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Hover: icon lifts and glows */
.process-step:hover .process-step-icon {
  transform: scale(1.12);
  border-color: var(--ec-cyan);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.25), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

.process-step:hover h4 {
  color: var(--ec-cyan);
}

.process-step p {
  font-size: 0.8rem;
  color: var(--ec-text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-step {
    display: flex;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
    transform: translateX(-20px) scale(0.95);
  }

  .process-step.is-visible {
    transform: translateX(0) scale(1);
  }

  .process-step:hover {
    transform: translateX(4px) scale(1.01);
  }

  .process-step-icon {
    flex-shrink: 0;
    margin: 0;
    width: 4rem;
    height: 4rem;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-card {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--ec-radius-2xl);
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ec-border);
}

.cta-card h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--ec-text-secondary);
  margin-bottom: 2rem;
}

/* ========================================
   UNLOCK THE POWER SECTION
   ======================================== */

.unlock-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.03), transparent);
}

.unlock-section .unlock-logo {
  height: 7rem;
  margin: 0 auto 1.5rem;
  display: block;
}

.unlock-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(to right, #22d3ee, #ffffff, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unlock-section .tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-text-muted);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: #1a1a1a;
  border-top: 1px solid var(--ec-border);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ec-text-muted);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--ec-cyan);
}

.footer-menus {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--ec-radius-md);
  border: 1px solid var(--ec-border);
  background: transparent;
  color: var(--ec-text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-menu-grid {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--ec-radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-service-grid {
  grid-template-columns: repeat(5, 1fr);
}

.footer-service-grid h4 a {
  color: var(--ec-cyan);
  text-decoration: none;
}

.footer-service-grid h4 a:hover {
  color: #fff;
}

.footer-flag {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-menu-grid.is-open {
  display: grid;
}

.footer-menu-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ec-cyan);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-menu-grid h4 svg {
  stroke: var(--ec-cyan);
  flex-shrink: 0;
}

.footer-menu-grid a {
  display: block;
  font-size: 0.75rem;
  color: var(--ec-text-muted);
  padding: 0.15rem 0;
}

.footer-menu-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--ec-text-muted);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ec-text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-badge .flag {
  width: 1.25rem;
  height: auto;
}

/* ========================================
   PAGE TEMPLATES
   ======================================== */

.page-header {
  padding: 14rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--ec-bg-primary);
  color: var(--ec-text-primary);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  margin-bottom: 1rem;
}

.page-header .breadcrumbs {
  font-size: 0.8rem;
  color: var(--ec-text-muted);
  margin-bottom: 1rem;
}

.page-header .breadcrumbs a {
  color: var(--ec-text-muted);
}

.page-header .breadcrumbs a:hover {
  color: var(--ec-cyan);
}

.page-header .breadcrumbs .separator {
  margin: 0 0.5rem;
  color: rgba(148, 163, 184, 0.3);
}

.page-content {
  padding: 3rem 0 5rem;
}

.page-content .entry-content {
  max-width: 48rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: inherit;
}

body.is-front-page .page-content .entry-content {
  color: var(--ec-text-secondary);
}

.page-content .entry-content h2 {
  font-size: 1.75rem;
  color: inherit;
  margin: 2.5rem 0 1rem;
}

.page-content .entry-content h3 {
  font-size: 1.35rem;
  color: inherit;
  margin: 2rem 0 0.75rem;
}

.page-content .entry-content p {
  margin-bottom: 1.25rem;
}

.page-content .entry-content ul,
.page-content .entry-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.page-content .entry-content li {
  margin-bottom: 0.5rem;
}

.page-content .entry-content blockquote {
  border-left: 3px solid var(--ec-cyan);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--ec-radius-md) var(--ec-radius-md) 0;
}

body.is-front-page .page-content .entry-content blockquote {
  background: rgba(6, 182, 212, 0.05);
}

body.is-subpage .page-content .entry-content blockquote {
  background: rgba(6, 182, 212, 0.05);
}

.page-content .entry-content img {
  border-radius: var(--ec-radius-lg);
  margin: 1.5rem 0;
}

/* ========================================
   SIDEBAR / WIDGETS
   ======================================== */

.sidebar {
  position: sticky;
  top: 6rem;
}

.widget {
  padding: 1.5rem;
  border-radius: var(--ec-radius-xl);
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ec-border);
  margin-bottom: 1.5rem;
}

.widget h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ec-cyan);
  margin-bottom: 1rem;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget li {
  margin-bottom: 0.5rem;
}

.widget li a {
  font-size: 0.875rem;
  color: var(--ec-text-secondary);
  display: block;
  padding: 0.35rem 0;
}

.widget li a:hover {
  color: var(--ec-cyan);
}

/* Subpage widget overrides (light background) */
body.is-subpage .widget {
  background: #f8fafc;
  border-color: #e2e8f0;
}

body.is-subpage .widget h3 {
  color: #0e7490;
}

body.is-subpage .widget li a {
  color: #334155;
}

body.is-subpage .widget li a:hover {
  color: #0891b2;
}

/* Search form styling on subpages */
body.is-subpage .widget input[type="search"],
body.is-subpage .widget .wp-block-search__input,
body.is-subpage .widget input[type="text"] {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--ec-radius-md);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

body.is-subpage .widget input[type="search"]:focus,
body.is-subpage .widget .wp-block-search__input:focus,
body.is-subpage .widget input[type="text"]:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

body.is-subpage .widget input[type="submit"],
body.is-subpage .widget .wp-block-search__button,
body.is-subpage .widget button[type="submit"] {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: var(--ec-radius-md);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

body.is-subpage .widget input[type="submit"]:hover,
body.is-subpage .widget .wp-block-search__button:hover,
body.is-subpage .widget button[type="submit"]:hover {
  opacity: 0.9;
}

/* Sidebar product cards */
.sidebar-product-card {
  border-radius: var(--ec-radius-xl);
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}

.sidebar-product-card:hover {
  border-color: #06b6d4;
}

.sidebar-product-card img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.sidebar-product-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1rem 1.25rem 0.25rem;
}

.sidebar-product-card p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0 1.25rem 1rem;
  line-height: 1.5;
}

.sidebar-product-card .btn {
  display: block;
  margin: 0 1.25rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.5rem;
}

/* Unlock section on subpages: dark background */
body.is-subpage .unlock-section {
  background: var(--ec-bg-primary);
  color: var(--ec-text-primary);
}


/* ========================================
   CHALLENGES GRID
   ======================================== */

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.challenge-card {
  padding: 1.5rem;
  border-radius: var(--ec-radius-xl);
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--ec-border);
}

.challenge-card .challenge-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.challenge-card .challenge-label.problem {
  color: #f59e0b;
}

.challenge-card .challenge-label.solution {
  color: #22d3ee;
}

.challenge-card p {
  font-size: 0.875rem;
  color: var(--ec-text-secondary);
  line-height: 1.6;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.gap-4 { gap: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

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

  .page-content .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* WordPress specific */
.wp-block-image { margin: 1.5rem 0; }
.wp-block-image img { border-radius: var(--ec-radius-lg); }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }

body.is-front-page .wp-site-blocks,
body.is-front-page .entry-content,
body.is-front-page .page-content,
body.is-front-page .wp-block-group,
body.is-front-page .wp-block-cover,
body.is-front-page .wp-block-columns {
  color: var(--ec-text-primary);
}

body.is-front-page .wp-block-group__inner-container {
  color: var(--ec-text-primary);
}

.wp-block-separator {
  border-color: var(--ec-border) !important;
}

a {
  color: var(--ec-cyan);
}

body.is-front-page .entry-content a {
  color: var(--ec-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(6, 182, 212, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

body.is-front-page .entry-content a:hover {
  text-decoration-color: var(--ec-cyan);
}

body.is-subpage .entry-content a {
  color: #0891b2;
}

body.is-subpage .entry-content a:hover {
  color: #06b6d4;
}

/* Admin bar offset */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ===========================
   WPML LANGUAGE SWITCHER
   =========================== */

.wpml-switcher {
  position: relative;
  margin-left: 0.5rem;
}

.wpml-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius-md);
  color: var(--ec-text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.wpml-current:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(30, 41, 59, 0.8);
}

.wpml-flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
}

.wpml-code {
  font-weight: 600;
}

.wpml-chevron {
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.wpml-switcher.is-open .wpml-chevron {
  transform: rotate(180deg);
}

.wpml-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 10rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius-lg);
  padding: 0.4rem;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: wpmlFadeIn 0.2s ease;
}

.wpml-switcher.is-open .wpml-dropdown {
  display: block;
}

@keyframes wpmlFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.wpml-lang-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  color: var(--ec-text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  border-radius: var(--ec-radius-md);
  transition: all 0.2s ease;
}

.wpml-lang-item:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--ec-text-primary);
}

.wpml-lang-item .wpml-flag {
  width: 20px;
  height: 14px;
}

.wpml-switcher-footer {
  margin-left: 0;
}

.wpml-switcher-footer .wpml-current {
  background: rgba(30, 41, 59, 0.3);
  border-color: rgba(255, 255, 255, 0.05);
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
}

.wpml-switcher-footer .wpml-dropdown {
  bottom: calc(100% + 0.5rem);
  top: auto;
}

/* Hide WPML's built-in footer language switcher (we use our own) */
.wpml-ls-statics-footer,
.wpml-ls-footer,
#lang_sel_footer,
.wpml-ls-legacy-list-horizontal {
  display: none !important;
}

@media (max-width: 768px) {
  .wpml-switcher {
    margin-left: 0;
    width: 100%;
  }

  .wpml-current {
    width: 100%;
    justify-content: center;
  }

  .wpml-dropdown {
    position: relative;
    top: 0.25rem;
    width: 100%;
    right: auto;
  }
}

/* ===========================
   ELEMENTOR COMPATIBILITY
   =========================== */

.elementor-page .page-header,
.elementor-page .page-content {
  display: none;
}

.elementor-full-width-content {
  min-height: 60vh;
}

.elementor-page .elementor-section,
.elementor-page .e-con {
  font-family: 'Inter', sans-serif;
  color: var(--ec-text-primary);
}

.elementor-page .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page .e-con.e-con-boxed {
  max-width: 1280px;
}

.elementor-page .elementor-section.elementor-section-full_width,
.elementor-page .e-con.e-con-full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.elementor-page .elementor-heading-title {
  font-family: 'Outfit', sans-serif;
  color: var(--ec-text-primary);
}

.elementor-page .elementor-text-editor,
.elementor-page .elementor-text-editor p {
  font-family: 'Inter', sans-serif;
  color: var(--ec-text-secondary);
}

.elementor-page .elementor-button {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: var(--ec-radius-xl);
  transition: all 0.3s ease;
}

.elementor-page .elementor-button-link .elementor-button {
  background: linear-gradient(135deg, var(--ec-cyan), var(--ec-cyan-dark));
  border: none;
  padding: 0.8rem 2rem;
}

.elementor-page .elementor-button-link .elementor-button:hover {
  box-shadow: 0 0 24px var(--ec-glow-cyan);
  transform: translateY(-1px);
}

.elementor-page .elementor-icon-list-item .elementor-icon-list-text {
  color: var(--ec-text-secondary);
}

.elementor-page .elementor-icon-list-icon svg {
  fill: var(--ec-cyan);
}

.elementor-page .elementor-icon-box-title {
  font-family: 'Outfit', sans-serif;
  color: var(--ec-text-primary);
}

.elementor-page .elementor-icon-box-description {
  color: var(--ec-text-secondary);
}

.elementor-page .elementor-icon-box-icon .elementor-icon {
  color: var(--ec-cyan);
}

.elementor-page .elementor-counter-number-wrapper,
.elementor-page .elementor-counter-title {
  font-family: 'Outfit', sans-serif;
  color: var(--ec-text-primary);
}

.elementor-page .elementor-toggle .elementor-tab-title,
.elementor-page .elementor-accordion .elementor-tab-title {
  font-family: 'Outfit', sans-serif;
  color: var(--ec-text-primary);
  background: var(--ec-bg-card);
  border-color: var(--ec-border);
}

.elementor-page .elementor-toggle .elementor-tab-content,
.elementor-page .elementor-accordion .elementor-tab-content {
  font-family: 'Inter', sans-serif;
  color: var(--ec-text-secondary);
  background: rgba(30, 41, 59, 0.3);
  border-color: var(--ec-border);
}

.elementor-page .elementor-testimonial-content {
  color: var(--ec-text-secondary);
  font-family: 'Inter', sans-serif;
}

.elementor-page .elementor-testimonial-name {
  color: var(--ec-text-primary);
  font-family: 'Outfit', sans-serif;
}

body.elementor-canvas {
  background: var(--ec-bg-primary);
  color: var(--ec-text-primary);
  font-family: 'Inter', sans-serif;
}

.elementor-widget-image img {
  border-radius: var(--ec-radius-lg);
}

.elementor-page .elementor-divider-separator {
  border-color: var(--ec-border);
}

.elementor-page .elementor-widget-spacer .elementor-spacer-inner {
  background: transparent;
}

.elementor-page .elementor-form .elementor-field-group .elementor-field {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius-md);
  color: var(--ec-text-primary);
  font-family: 'Inter', sans-serif;
  padding: 0.75rem 1rem;
}

.elementor-page .elementor-form .elementor-field-group .elementor-field::placeholder {
  color: var(--ec-text-muted);
}

.elementor-page .elementor-form .elementor-field-group label {
  color: var(--ec-text-secondary);
  font-family: 'Inter', sans-serif;
}

.elementor-page .elementor-form .elementor-button {
  background: linear-gradient(135deg, var(--ec-cyan), var(--ec-cyan-dark));
  border-radius: var(--ec-radius-xl);
}

.elementor-page .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 1rem;
}

@media (max-width: 768px) {
  .elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
    padding: 0 1rem;
  }
}

/* ========================================
   QUALITY SEAL SECTION
   ======================================== */

.quality-seal-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--ec-bg-primary) 0%,
    rgba(6, 182, 212, 0.04) 30%,
    rgba(59, 130, 246, 0.03) 70%,
    var(--ec-bg-primary) 100%
  );
}

.quality-seal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.2), transparent);
}

.quality-seal-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.2), transparent);
}

.quality-seal-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

/* Badge wrapper — holds rays + badge */
.quality-seal-badge-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Animated shining rays */
.quality-seal-rays {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(255, 215, 0, 0.12) 10deg,
      transparent 20deg,
      transparent 30deg,
      rgba(6, 182, 212, 0.1) 40deg,
      transparent 50deg,
      transparent 60deg,
      rgba(255, 215, 0, 0.12) 70deg,
      transparent 80deg,
      transparent 90deg,
      rgba(6, 182, 212, 0.1) 100deg,
      transparent 110deg,
      transparent 120deg,
      rgba(255, 215, 0, 0.12) 130deg,
      transparent 140deg,
      transparent 150deg,
      rgba(6, 182, 212, 0.1) 160deg,
      transparent 170deg,
      transparent 180deg,
      rgba(255, 215, 0, 0.12) 190deg,
      transparent 200deg,
      transparent 210deg,
      rgba(6, 182, 212, 0.1) 220deg,
      transparent 230deg,
      transparent 240deg,
      rgba(255, 215, 0, 0.12) 250deg,
      transparent 260deg,
      transparent 270deg,
      rgba(6, 182, 212, 0.1) 280deg,
      transparent 290deg,
      transparent 300deg,
      rgba(255, 215, 0, 0.12) 310deg,
      transparent 320deg,
      transparent 330deg,
      rgba(6, 182, 212, 0.1) 340deg,
      transparent 350deg,
      transparent 360deg
    );
  animation: sealRaysRotate 20s linear infinite;
  filter: blur(4px);
}

.quality-seal-rays::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 40%,
    rgba(255, 215, 0, 0.06) 60%,
    rgba(6, 182, 212, 0.08) 75%,
    transparent 100%
  );
  animation: sealGlowPulse 3s ease-in-out infinite;
}

@keyframes sealRaysRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sealGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}

/* The badge itself */
.quality-seal-badge {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a2744, #0f172a);
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 3px rgba(255, 215, 0, 0.4),
    0 0 30px rgba(255, 215, 0, 0.15),
    0 0 60px rgba(6, 182, 212, 0.1),
    inset 0 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sealShimmer 4s ease-in-out infinite;
}

@keyframes sealShimmer {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.15), 0 0 60px rgba(6, 182, 212, 0.1), inset 0 0 30px rgba(0, 0, 0, 0.3); }
  50%      { box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.25), 0 0 80px rgba(6, 182, 212, 0.15), inset 0 0 30px rgba(0, 0, 0, 0.3); }
}

.quality-seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.quality-seal-inner svg {
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.quality-seal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #ffd700, #ffec80, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.quality-seal-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255, 215, 0, 0.7);
  text-transform: uppercase;
}

.quality-seal-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
  margin: 0.3rem 0;
}

.quality-seal-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(203, 213, 225, 0.6);
}

/* Content side */
.quality-seal-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.quality-seal-content p {
  font-size: 1rem;
  color: var(--ec-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

/* Feature checkmarks grid */
.quality-seal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}

.quality-seal-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ec-text-primary);
  font-weight: 500;
}

.quality-seal-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
  color: var(--ec-cyan);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .quality-seal-section {
    padding: 4rem 0;
  }

  .quality-seal-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    justify-items: center;
  }

  .quality-seal-badge-wrap {
    width: 180px;
    height: 180px;
  }

  .quality-seal-badge {
    width: 150px;
    height: 150px;
  }

  .quality-seal-inner svg {
    width: 28px;
    height: 28px;
  }

  .quality-seal-title {
    font-size: 1.1rem;
  }

  .quality-seal-content p {
    max-width: 100%;
  }

  .quality-seal-features {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 16rem;
    margin: 0 auto;
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, var(--ec-bg-primary), rgba(6, 182, 212, 0.03), var(--ec-bg-primary));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.15rem;
}

.testimonial-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--ec-text-secondary);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ec-cyan), var(--ec-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ec-text-primary);
  margin: 0;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--ec-text-muted);
  margin: 0;
}

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

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

/* ========================================
   HOMEPAGE CONTACT FORM SPACING
   ======================================== */

body.is-front-page .eazyclean-seo-landing {
  margin-top: -2rem;
}

body.is-front-page .eazyclean-seo-landing .eazyclean-seo-contact-section {
  padding-top: 40px;
}
