/*
Theme Name:   WebFootprint Child
Theme URI:    https://webfootprint.com
Description:  OceanWP Child Theme for WebFootprint Digital Agency
Author:       WebFootprint
Author URI:   https://webfootprint.com
Template:     oceanwp
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  webfootprint-child
Tags: child-theme, oceanwp, digital-agency, elementor
*/

/* ============================================================
   WEBFOOTPRINT — DESIGN SYSTEM & GLOBAL STYLES
   ============================================================ */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Brand Colors */
  --wf-primary:       #0A1628;   /* Deep Navy — primary brand */
  --wf-secondary:     #1E3A5F;   /* Dark Blue */
  --wf-accent:        #00C2FF;   /* Electric Cyan — CTA / highlights */
  --wf-accent-dark:   #008FBB;   /* Darker cyan for hover states */
  --wf-accent-alt:    #7B2FBE;   /* Violet — secondary accent */

  /* Neutrals */
  --wf-white:         #FFFFFF;
  --wf-off-white:     #F7F9FC;
  --wf-light-gray:    #EEF1F6;
  --wf-mid-gray:      #8A96A8;
  --wf-dark-gray:     #3D4A5C;
  --wf-text:          #1A2535;

  /* Semantic */
  --wf-success:       #22C55E;
  --wf-warning:       #F59E0B;
  --wf-error:         #EF4444;

  /* Typography */
  --wf-font-heading:  'Inter', 'Segoe UI', Arial, sans-serif;
  --wf-font-body:     'Inter', 'Segoe UI', Arial, sans-serif;
  --wf-font-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Font Sizes (fluid scale) */
  --wf-text-xs:    0.75rem;   /* 12px */
  --wf-text-sm:    0.875rem;  /* 14px */
  --wf-text-base:  1rem;      /* 16px */
  --wf-text-lg:    1.125rem;  /* 18px */
  --wf-text-xl:    1.25rem;   /* 20px */
  --wf-text-2xl:   1.5rem;    /* 24px */
  --wf-text-3xl:   1.875rem;  /* 30px */
  --wf-text-4xl:   2.25rem;   /* 36px */
  --wf-text-5xl:   3rem;      /* 48px */
  --wf-text-6xl:   3.75rem;   /* 60px */

  /* Spacing */
  --wf-space-1:   0.25rem;
  --wf-space-2:   0.5rem;
  --wf-space-3:   0.75rem;
  --wf-space-4:   1rem;
  --wf-space-6:   1.5rem;
  --wf-space-8:   2rem;
  --wf-space-10:  2.5rem;
  --wf-space-12:  3rem;
  --wf-space-16:  4rem;
  --wf-space-20:  5rem;
  --wf-space-24:  6rem;
  --wf-space-32:  8rem;

  /* Border Radius */
  --wf-radius-sm:   4px;
  --wf-radius-md:   8px;
  --wf-radius-lg:   16px;
  --wf-radius-xl:   24px;
  --wf-radius-full: 9999px;

  /* Shadows */
  --wf-shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --wf-shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --wf-shadow-lg:  0 10px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --wf-shadow-xl:  0 20px 60px rgba(0,0,0,0.18);
  --wf-shadow-glow: 0 0 30px rgba(0,194,255,0.25);

  /* Transitions */
  --wf-transition-fast:   150ms ease;
  --wf-transition-base:   250ms ease;
  --wf-transition-slow:   400ms ease;

  /* Layout */
  --wf-container-max:  1280px;
  --wf-container-wide: 1440px;
  --wf-header-height:  80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--wf-font-body);
  font-size: var(--wf-text-base);
  line-height: 1.7;
  color: var(--wf-text);
  background-color: var(--wf-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--wf-accent);
  text-decoration: none;
  transition: color var(--wf-transition-fast);
}
a:hover {
  color: var(--wf-accent-dark);
}

/* Focus styles — WCAG AA accessible */
:focus-visible {
  outline: 3px solid var(--wf-accent);
  outline-offset: 3px;
  border-radius: var(--wf-radius-sm);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--wf-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--wf-primary);
  margin-top: 0;
  margin-bottom: var(--wf-space-4);
}

h1 { font-size: var(--wf-text-5xl); }
h2 { font-size: var(--wf-text-4xl); }
h3 { font-size: var(--wf-text-3xl); }
h4 { font-size: var(--wf-text-2xl); }
h5 { font-size: var(--wf-text-xl);  }
h6 { font-size: var(--wf-text-lg);  }

p {
  margin-top: 0;
  margin-bottom: var(--wf-space-4);
  color: var(--wf-dark-gray);
}

.wf-lead {
  font-size: var(--wf-text-xl);
  font-weight: 400;
  line-height: 1.6;
  color: var(--wf-dark-gray);
}

.wf-eyebrow {
  display: inline-block;
  font-size: var(--wf-text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wf-accent);
  margin-bottom: var(--wf-space-3);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wf-container {
  width: 100%;
  max-width: var(--wf-container-max);
  margin-inline: auto;
  padding-inline: var(--wf-space-6);
}

.wf-section {
  padding-block: var(--wf-space-24);
}

.wf-section--lg {
  padding-block: var(--wf-space-32);
}

.wf-section--sm {
  padding-block: var(--wf-space-16);
}

.wf-grid {
  display: grid;
  gap: var(--wf-space-8);
}

.wf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wf-grid--4 { grid-template-columns: repeat(4, 1fr); }

.wf-flex {
  display: flex;
  gap: var(--wf-space-4);
}

.wf-flex--center {
  align-items: center;
  justify-content: center;
}

/* ============================================================
   BUTTONS — WCAG AA contrast ratios maintained
   ============================================================ */
.wf-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--wf-space-2);
  padding: 14px 32px;
  font-family: var(--wf-font-body);
  font-size: var(--wf-text-base);
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--wf-radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--wf-transition-base);
  white-space: nowrap;
  -webkit-appearance: none;
}

.wf-btn:focus-visible {
  outline: 3px solid var(--wf-accent);
  outline-offset: 4px;
}

/* Primary */
.wf-btn--primary {
  background: var(--wf-accent);
  color: var(--wf-primary);
  border-color: var(--wf-accent);
}
.wf-btn--primary:hover {
  background: var(--wf-accent-dark);
  border-color: var(--wf-accent-dark);
  color: var(--wf-white);
  transform: translateY(-2px);
  box-shadow: var(--wf-shadow-glow);
}

/* Secondary */
.wf-btn--secondary {
  background: transparent;
  color: var(--wf-white);
  border-color: rgba(255,255,255,0.6);
}
.wf-btn--secondary:hover {
  background: var(--wf-white);
  color: var(--wf-primary);
  border-color: var(--wf-white);
}

/* Dark */
.wf-btn--dark {
  background: var(--wf-primary);
  color: var(--wf-white);
  border-color: var(--wf-primary);
}
.wf-btn--dark:hover {
  background: var(--wf-secondary);
  border-color: var(--wf-secondary);
  transform: translateY(-2px);
  box-shadow: var(--wf-shadow-md);
}

/* Ghost */
.wf-btn--ghost {
  background: transparent;
  color: var(--wf-accent);
  border-color: var(--wf-accent);
}
.wf-btn--ghost:hover {
  background: var(--wf-accent);
  color: var(--wf-primary);
}

.wf-btn--sm {
  padding: 10px 20px;
  font-size: var(--wf-text-sm);
}

.wf-btn--lg {
  padding: 18px 40px;
  font-size: var(--wf-text-lg);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--wf-header-height);
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--wf-transition-base),
              box-shadow var(--wf-transition-base);
}

#site-header.scrolled,
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: var(--wf-shadow-md);
}

.oceanwp-mobile-menu-icon,
#site-navigation .nav-link,
.main-navigation a {
  color: var(--wf-white) !important;
  font-weight: 500;
  font-size: var(--wf-text-sm);
  letter-spacing: 0.02em;
  transition: color var(--wf-transition-fast);
}

.main-navigation a:hover,
#site-navigation .nav-link:hover {
  color: var(--wf-accent) !important;
}

/* Active menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current-page-ancestor > a {
  color: var(--wf-accent) !important;
}

/* Dropdown */
.main-navigation ul ul {
  background: var(--wf-primary) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--wf-radius-md) !important;
  box-shadow: var(--wf-shadow-lg) !important;
  min-width: 220px;
}

.main-navigation ul ul li a {
  padding: 10px 20px !important;
  font-size: var(--wf-text-sm) !important;
}

/* Logo */
#site-logo img,
.custom-logo {
  max-height: 48px;
  width: auto;
}

/* Offset for fixed header */
.page-content-wrapper,
#content,
.content-area {
  padding-top: var(--wf-header-height);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.wf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--wf-primary) 0%, var(--wf-secondary) 50%, #0D2B4A 100%);
  overflow: hidden;
  padding-top: var(--wf-header-height);
}

.wf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C2FF' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* Animated gradient orbs */
.wf-hero::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.wf-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--wf-white);
}

.wf-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--wf-white);
  margin-bottom: var(--wf-space-6);
}

.wf-hero__title span {
  color: var(--wf-accent);
}

.wf-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--wf-space-10);
}

.wf-hero__cta {
  display: flex;
  gap: var(--wf-space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.wf-scroll-indicator {
  position: absolute;
  bottom: var(--wf-space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wf-space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--wf-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   CARDS — SERVICE, BLOG, PORTFOLIO, TESTIMONIAL
   ============================================================ */

/* Base Card */
.wf-card {
  background: var(--wf-white);
  border-radius: var(--wf-radius-lg);
  border: 1px solid var(--wf-light-gray);
  overflow: hidden;
  transition: transform var(--wf-transition-base),
              box-shadow var(--wf-transition-base),
              border-color var(--wf-transition-base);
}

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

/* Service Card */
.wf-service-card {
  padding: var(--wf-space-8);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.wf-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--wf-accent) 0%, var(--wf-accent-alt) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--wf-transition-base);
}

.wf-service-card:hover::before {
  transform: scaleY(1);
}

.wf-service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--wf-radius-md);
  background: linear-gradient(135deg, rgba(0,194,255,0.1), rgba(123,47,190,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--wf-space-6);
  font-size: 1.75rem;
  transition: background var(--wf-transition-base);
}

.wf-service-card:hover .wf-service-card__icon {
  background: linear-gradient(135deg, var(--wf-accent), var(--wf-accent-alt));
}

.wf-service-card__title {
  font-size: var(--wf-text-xl);
  color: var(--wf-primary);
  margin-bottom: var(--wf-space-3);
}

.wf-service-card__text {
  font-size: var(--wf-text-base);
  color: var(--wf-mid-gray);
  line-height: 1.65;
  margin-bottom: var(--wf-space-4);
}

.wf-service-card__link {
  font-size: var(--wf-text-sm);
  font-weight: 600;
  color: var(--wf-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--wf-space-1);
}

.wf-service-card__link::after {
  content: '→';
  transition: transform var(--wf-transition-fast);
}

.wf-service-card:hover .wf-service-card__link::after {
  transform: translateX(4px);
}

/* Blog Card */
.wf-blog-card {
  display: flex;
  flex-direction: column;
}

.wf-blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.wf-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wf-transition-slow);
}

.wf-blog-card:hover .wf-blog-card__image img {
  transform: scale(1.05);
}

.wf-blog-card__body {
  padding: var(--wf-space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wf-blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--wf-space-3);
  margin-bottom: var(--wf-space-3);
  font-size: var(--wf-text-xs);
  color: var(--wf-mid-gray);
}

.wf-blog-card__category {
  background: rgba(0,194,255,0.1);
  color: var(--wf-accent);
  padding: 3px 10px;
  border-radius: var(--wf-radius-full);
  font-weight: 600;
  font-size: var(--wf-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wf-blog-card__title {
  font-size: var(--wf-text-xl);
  line-height: 1.3;
  margin-bottom: var(--wf-space-3);
  flex: 1;
}

.wf-blog-card__title a {
  color: var(--wf-primary);
}
.wf-blog-card__title a:hover {
  color: var(--wf-accent);
}

.wf-blog-card__excerpt {
  font-size: var(--wf-text-sm);
  color: var(--wf-mid-gray);
  margin-bottom: var(--wf-space-4);
  line-height: 1.6;
}

/* Portfolio Card */
.wf-portfolio-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--wf-radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.wf-portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wf-transition-slow);
}

.wf-portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--wf-transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--wf-space-6);
}

.wf-portfolio-card:hover img {
  transform: scale(1.06);
}

.wf-portfolio-card:hover .wf-portfolio-card__overlay {
  opacity: 1;
}

.wf-portfolio-card__title {
  color: var(--wf-white);
  font-size: var(--wf-text-xl);
  margin-bottom: var(--wf-space-1);
}

.wf-portfolio-card__tag {
  color: var(--wf-accent);
  font-size: var(--wf-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonial Card */
.wf-testimonial-card {
  background: var(--wf-off-white);
  padding: var(--wf-space-8);
  border-radius: var(--wf-radius-lg);
  border: 1px solid var(--wf-light-gray);
  position: relative;
}

.wf-testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--wf-space-4);
  right: var(--wf-space-6);
  font-size: 6rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--wf-accent);
  opacity: 0.2;
}

.wf-testimonial-card__stars {
  color: #F59E0B;
  font-size: var(--wf-text-sm);
  margin-bottom: var(--wf-space-4);
  letter-spacing: 2px;
}

.wf-testimonial-card__quote {
  font-size: var(--wf-text-lg);
  line-height: 1.65;
  color: var(--wf-dark-gray);
  font-style: italic;
  margin-bottom: var(--wf-space-6);
}

.wf-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--wf-space-3);
}

.wf-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wf-accent);
}

.wf-testimonial-card__name {
  font-weight: 700;
  color: var(--wf-primary);
  font-size: var(--wf-text-sm);
  display: block;
}

.wf-testimonial-card__role {
  font-size: var(--wf-text-xs);
  color: var(--wf-mid-gray);
}

/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */
.wf-stats {
  background: linear-gradient(135deg, var(--wf-primary), var(--wf-secondary));
  padding-block: var(--wf-space-16);
}

.wf-stat {
  text-align: center;
  color: var(--wf-white);
}

.wf-stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--wf-accent);
  line-height: 1;
  margin-bottom: var(--wf-space-2);
}

.wf-stat__label {
  font-size: var(--wf-text-sm);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.wf-cta {
  background: linear-gradient(135deg, var(--wf-primary) 0%, #0D2448 50%, var(--wf-secondary) 100%);
  padding-block: var(--wf-space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wf-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.wf-cta__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--wf-white);
  margin-bottom: var(--wf-space-4);
}

.wf-cta__subtitle {
  font-size: var(--wf-text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--wf-space-10);
}

/* ============================================================
   PROCESS / HOW WE WORK
   ============================================================ */
.wf-process-step {
  display: flex;
  gap: var(--wf-space-6);
  align-items: flex-start;
}

.wf-process-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wf-accent), var(--wf-accent-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-white);
  font-size: var(--wf-text-xl);
  font-weight: 800;
}

.wf-process-step__content h4 {
  font-size: var(--wf-text-xl);
  margin-bottom: var(--wf-space-2);
}

/* ============================================================
   TEAM MEMBER CARD
   ============================================================ */
.wf-team-card {
  text-align: center;
}

.wf-team-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: var(--wf-space-4);
  border: 4px solid var(--wf-light-gray);
  transition: border-color var(--wf-transition-base);
}

.wf-team-card:hover .wf-team-card__photo {
  border-color: var(--wf-accent);
}

.wf-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wf-team-card__name {
  font-size: var(--wf-text-xl);
  margin-bottom: var(--wf-space-1);
}

.wf-team-card__role {
  font-size: var(--wf-text-sm);
  color: var(--wf-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--wf-space-3);
}

/* ============================================================
   FORMS — CONTACT & NEWSLETTER
   ============================================================ */
.wf-form-group {
  margin-bottom: var(--wf-space-6);
}

.wf-form-label {
  display: block;
  font-size: var(--wf-text-sm);
  font-weight: 600;
  color: var(--wf-primary);
  margin-bottom: var(--wf-space-2);
}

.wf-form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: var(--wf-text-base);
  font-family: var(--wf-font-body);
  color: var(--wf-text);
  background: var(--wf-white);
  border: 2px solid var(--wf-light-gray);
  border-radius: var(--wf-radius-md);
  transition: border-color var(--wf-transition-fast),
              box-shadow var(--wf-transition-fast);
  -webkit-appearance: none;
}

.wf-form-control:focus {
  outline: none;
  border-color: var(--wf-accent);
  box-shadow: 0 0 0 4px rgba(0,194,255,0.12);
}

.wf-form-control::placeholder {
  color: var(--wf-mid-gray);
}

textarea.wf-form-control {
  min-height: 140px;
  resize: vertical;
}

/* Elementor Form Override */
.elementor-form .elementor-field-group .elementor-field {
  border: 2px solid var(--wf-light-gray) !important;
  border-radius: var(--wf-radius-md) !important;
  padding: 14px 18px !important;
  font-family: var(--wf-font-body) !important;
  transition: border-color var(--wf-transition-fast) !important;
}

.elementor-form .elementor-field-group .elementor-field:focus {
  border-color: var(--wf-accent) !important;
  box-shadow: 0 0 0 4px rgba(0,194,255,0.12) !important;
  outline: none !important;
}

.elementor-form .elementor-button {
  border-radius: var(--wf-radius-full) !important;
  font-weight: 600 !important;
  transition: all var(--wf-transition-base) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer,
.site-footer {
  background: var(--wf-primary);
  color: rgba(255,255,255,0.7);
}

.wf-footer-top {
  padding-block: var(--wf-space-16) var(--wf-space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wf-footer-logo {
  margin-bottom: var(--wf-space-4);
}

.wf-footer-about {
  font-size: var(--wf-text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.wf-footer-heading {
  color: var(--wf-white);
  font-size: var(--wf-text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--wf-space-4);
}

.wf-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wf-footer-links li {
  margin-bottom: var(--wf-space-2);
}

.wf-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: var(--wf-text-sm);
  transition: color var(--wf-transition-fast), padding-left var(--wf-transition-fast);
}

.wf-footer-links a:hover {
  color: var(--wf-accent);
  padding-left: 6px;
}

.wf-footer-bottom {
  padding-block: var(--wf-space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--wf-space-4);
  font-size: var(--wf-text-sm);
}

/* Social Icons */
.wf-social-links {
  display: flex;
  gap: var(--wf-space-3);
}

.wf-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: var(--wf-text-sm);
  transition: background var(--wf-transition-fast), color var(--wf-transition-fast);
  text-decoration: none;
}

.wf-social-link:hover {
  background: var(--wf-accent);
  color: var(--wf-primary);
}

/* ============================================================
   SECTION HEADERS (REUSABLE)
   ============================================================ */
.wf-section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--wf-space-12);
}

.wf-section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin-bottom: var(--wf-space-4);
}

.wf-section-header p {
  font-size: var(--wf-text-lg);
  color: var(--wf-mid-gray);
  line-height: 1.65;
}

/* Dark Section Override */
.wf-bg-dark .wf-section-header h2,
.wf-bg-dark h2,
.wf-bg-dark h3 {
  color: var(--wf-white);
}

.wf-bg-dark .wf-section-header p,
.wf-bg-dark p {
  color: rgba(255,255,255,0.7);
}

.wf-bg-dark {
  background: var(--wf-primary);
}

.wf-bg-light {
  background: var(--wf-off-white);
}

/* ============================================================
   BADGE / PILL
   ============================================================ */
.wf-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--wf-radius-full);
  font-size: var(--wf-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wf-badge--primary {
  background: rgba(0,194,255,0.12);
  color: var(--wf-accent);
}

.wf-badge--dark {
  background: rgba(255,255,255,0.1);
  color: var(--wf-white);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.wf-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--wf-accent), var(--wf-accent-alt));
  border-radius: var(--wf-radius-full);
  margin-bottom: var(--wf-space-6);
}

.wf-divider--center {
  margin-inline: auto;
}

/* ============================================================
   SKIP LINK (ACCESSIBILITY)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--wf-space-4);
  background: var(--wf-accent);
  color: var(--wf-primary);
  padding: var(--wf-space-3) var(--wf-space-6);
  border-radius: var(--wf-radius-md);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--wf-transition-fast);
}

.skip-link:focus {
  top: var(--wf-space-4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wf-animate-fade-up {
  animation: fadeInUp 0.6s ease both;
}

.wf-animate-fade {
  animation: fadeIn 0.6s ease both;
}

.wf-animate-slide-left {
  animation: slideInLeft 0.6s ease both;
}

/* Animation delays */
.wf-delay-1 { animation-delay: 0.1s; }
.wf-delay-2 { animation-delay: 0.2s; }
.wf-delay-3 { animation-delay: 0.3s; }
.wf-delay-4 { animation-delay: 0.4s; }
.wf-delay-5 { animation-delay: 0.5s; }

/* ============================================================
   ELEMENTOR GLOBAL OVERRIDES
   ============================================================ */
.elementor-section {
  position: relative;
}

/* Ensure Elementor widgets respect our design system */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--wf-font-heading);
  line-height: 1.2;
}

.elementor-widget-text-editor {
  color: var(--wf-dark-gray);
  line-height: 1.7;
}

/* Elementor Icon Box */
.elementor-icon-box-wrapper {
  transition: transform var(--wf-transition-base);
}

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

/* Full-width page template */
.page-template-elementor_canvas #site-header,
.page-template-elementor_canvas .site-header {
  display: none;
}

/* Blog post single */
.single-post .entry-content {
  font-size: var(--wf-text-lg);
  line-height: 1.8;
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
  margin-top: var(--wf-space-12);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large tablet / small desktop */
@media (max-width: 1200px) {
  :root {
    --wf-container-max: 960px;
  }

  .wf-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 992px) {
  :root {
    --wf-header-height: 70px;
  }

  h1 { font-size: var(--wf-text-4xl); }
  h2 { font-size: var(--wf-text-3xl); }
  h3 { font-size: var(--wf-text-2xl); }

  .wf-section { padding-block: var(--wf-space-16); }
  .wf-section--lg { padding-block: var(--wf-space-20); }

  .wf-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .wf-grid--2 { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --wf-header-height: 64px;
  }

  h1 { font-size: var(--wf-text-3xl); }
  h2 { font-size: var(--wf-text-2xl); }

  .wf-section { padding-block: var(--wf-space-12); }
  .wf-container { padding-inline: var(--wf-space-4); }

  .wf-grid--2,
  .wf-grid--3,
  .wf-grid--4 {
    grid-template-columns: 1fr;
  }

  .wf-hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .wf-btn { width: 100%; justify-content: center; }

  .wf-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .wf-process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --wf-header-height: 60px;
  }

  .wf-btn--lg {
    padding: 14px 24px;
    font-size: var(--wf-text-base);
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  #site-header,
  .wf-hero,
  .wf-cta,
  #site-footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
