/* ============================================
   MacCon-Net — Premium Business Website
   Colors: Green / Orange / White
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --green-dark: #004A59;
  --green: #00738A;
  --green-medium: #0092AB;
  --green-light: #5CC5D9;
  --green-pale: #E3F6FA;

  --orange-dark: #F57C00;
  --orange: #FF9800;
  --orange-medium: #FFA726;
  --orange-light: #FFCC80;
  --orange-pale: #FFF3E0;

  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F5F5F5;
  --gray-100: #EEEEEE;
  --gray-200: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-600: #757575;
  --gray-800: #424242;
  --gray-900: #212121;
  --black: #1A1A1A;

  /* Semantic */
  --accent: var(--orange);
  --primary: var(--green);
  --text: var(--gray-900);
  --text-muted: var(--gray-600);
  --bg: var(--white);
  --bg-alt: var(--gray-50);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,.14);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: .35s;

  /* Typography */
  --font-heading: 'Kanit', 'Noto Sans JP', 'Inter', sans-serif;
  --font-body: 'Kanit', 'Noto Sans JP', 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
  --section-padding: 100px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-padding {
  padding: var(--section-padding) 0;
}
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-800);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 124, 0, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 124, 0, .45);
}

.btn-accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,124,0,.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,124,0,.45);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 115, 138, .25);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  max-width: 100%;
  height: 80px;
  z-index: 1000;
  transition: all var(--duration) var(--ease);
  background: transparent;
  padding: 0 4%;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
}
.navbar.scrolled {
  background: rgba(25, 49, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}
.nav-logo .brand-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-logo:hover .brand-logo {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .nav-logo .brand-logo {
    height: 38px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding: 6px 0;
  transition: color var(--duration) var(--ease);
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.nav-links a::after {
  display: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: #cda47b;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.nav-actions .btn-accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
  padding: 12px 32px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
}
.nav-actions .btn-accent:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}
.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 8px 0;
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}
.lang-dropdown-toggle:hover {
  color: #cda47b;
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0,0,0,0.05);
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-option:hover {
  background: var(--gray-100);
}
.lang-option.active {
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.1);
}

/* CTA in nav button overrides removed for unified aesthetic */

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url('../images/new-hero-bg.png') center center / cover no-repeat;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.75) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.5) 60%, rgba(180, 100, 20, 0.35) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 20px 8px 10px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-title .highlight-green {
  background: linear-gradient(135deg, #7ee8d0 0%, #5dd6b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .highlight-orange {
  background: linear-gradient(135deg, #ffc97a 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Gradient Text Utilities ---------- */
.text-gradient-green {
  background: linear-gradient(135deg, #2a9db0 0%, #1a7a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-orange {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-white {
  background: linear-gradient(135deg, #ffffff 0%, #ffd59e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.stat-number span { color: #ffc97a; }
.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7ee8d0 0%, #ffb347 100%);
}

.hero-card-icon {
  width: 72px; height: 72px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.hero-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}
.hero-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.hero-card-features li .check {
  width: 22px; height: 22px;
  background: rgba(126, 232, 208, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ee8d0;
  font-size: .75rem;
  flex-shrink: 0;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.float-badge.top-right {
  top: -10px; right: -30px;
  animation-delay: 0s;
}
.float-badge.bottom-left {
  bottom: 20px; left: -30px;
  animation-delay: -3s;
}

.float-badge-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.float-badge-icon.green {
  background: var(--green-pale);
  color: var(--green);
}
.float-badge-icon.orange {
  background: var(--orange-pale);
  color: var(--orange);
}

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

/* ---------- Trusted By / Logos ---------- */
.trusted-section {
  padding: 50px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trusted-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 30px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: .5;
}
.trusted-logos span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 1px;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--green) 0%, var(--orange) 100%);
  transition: height var(--duration) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all var(--duration) var(--ease);
}
.service-icon.green {
  background: var(--green-pale);
  color: var(--green);
}
.service-icon.orange {
  background: var(--orange-pale);
  color: var(--orange);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--duration) var(--ease);
}
.service-link:hover { gap: 12px; }

/* Premium Solutions Layout v2 */
.services-section {
  position: relative;
  background: radial-gradient(circle at 0% 0%, rgba(224, 242, 241, 0.8) 0%, transparent 40%),
              radial-gradient(circle at 100% 100%, rgba(255, 243, 224, 0.8) 0%, transparent 40%),
              var(--gray-50);
  z-index: 1;
}

.premium-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.premium-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0, 121, 107, 0.2);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 77, 64, 0.08);
}
.premium-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.premium-title .accent {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.solutions-sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 30px;
}
.solutions-sub-title::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 0 12px rgba(255, 152, 0, 0.5);
}

/* Glassmorphism Cards */
.bento-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
}
.bento-colspan-2 {
  grid-column: span 2;
}

.premium-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-light), var(--green-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.premium-card.orange-accent::before {
  background: linear-gradient(90deg, var(--orange-light), var(--orange-dark));
}
.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 77, 64, 0.08);
  background: var(--white);
}
.premium-card:hover::before { opacity: 1; }

.premium-card-header { margin-bottom: 30px; }
.premium-card-header h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.premium-card-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.premium-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}
.premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.6;
}
.premium-list li .icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 800;
}
.premium-list li .icon-wrapper.orange {
  background: var(--orange-pale);
  color: var(--orange);
}

/* Service Box inside premium grid */
.service-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.service-box:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px 24px 0 0;
}
.service-box:hover::after { opacity: 1; }

.service-box-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-50);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--green-dark);
  transition: transform 0.3s ease;
}
.service-box:hover .service-box-icon {
  transform: scale(1.1);
}

.premium-highlight-banner {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--green-dark) 100%);
  border-radius: 32px;
  padding: 70px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 77, 64, 0.25);
  margin-top: 60px;
}
.premium-highlight-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.premium-highlight-banner h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.premium-highlight-banner p {
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  max-width: 850px;
  margin: 0 auto;
  font-weight: 300;
}
.premium-highlight-banner .text-orange {
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 152, 0, 0.4);
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-colspan-2 { grid-column: span 1; }
}

/* ---------- About / Why Us Section ---------- */
.about-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--green-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section .section-title { color: var(--white); }
.about-section .section-label { color: var(--orange-light); }
.about-section .about-text { color: #ffffff; }
.about-section .about-feature h4 { color: var(--white); }
.about-section .about-feature p { color: rgba(255,255,255,.7); }

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

.about-image {
  position: relative;
}

.about-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 40px;
  color: var(--white);
}
.about-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-card-header p {
  opacity: .85;
  font-size: .92rem;
}

.about-card-body {
  padding: 32px 40px;
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.credential-item:last-child { border-bottom: none; }
.credential-icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .9rem;
  flex-shrink: 0;
}
.credential-item h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.credential-item p {
  font-size: .82rem;
  color: var(--text-muted);
}

.about-content .about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-feature-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.about-feature p {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ---------- Process / How It Works ---------- */
.process-section {
  background: var(--gray-50);
  color: var(--text);
}
.process-section .section-title { color: var(--gray-900); }
.process-section .section-subtitle { color: var(--gray-800); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%);
  opacity: .2;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 4px 16px rgba(0, 115, 138,.3);
}
.process-step:nth-child(even) .step-number {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 16px rgba(245,124,0,.3);
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.process-step p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: linear-gradient(135deg, #fdf5ea 0%, #f7dfc6 100%);
  color: var(--gray-900);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: rgba(209, 158, 97, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(15, 76, 92, 0.02);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-section .section-label { color: var(--orange-dark); }
.testimonials-section .section-title { color: var(--gray-900); }
.testimonials-section .section-subtitle { color: var(--gray-800); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(209, 158, 97, 0.15);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all var(--duration) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08);
  border-color: rgba(209, 158, 97, 0.4);
}

.testimonial-stars {
  color: var(--orange-light);
  font-size: .9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
img.testimonial-avatar {
  object-fit: cover;
  object-position: center;
  background: var(--bg-alt);
}
.testimonial-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--gray-900);
}
.testimonial-role {
  font-size: .8rem;
  color: var(--gray-600);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 32px;
  padding: 70px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-box p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.cta-box .btn {
  position: relative;
  z-index: 2;
}

/* ---------- Footer ---------- */
.footer {
  background: #0f4c5c; /* Matches the solid dark teal reference */
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-brand .footer-logo .accent { color: var(--orange); }
.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--duration) var(--ease);
  font-size: 1.2rem;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  padding: 8px 0;
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ---------- Animations (Scroll Reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 1024px) {
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
    --nav-height: 90px;
  }

  .navbar {
    top: 15px;
    left: 4%;
    width: 92%;
    border-radius: 40px;
    background-color: #1a3234;
    padding: 0 15px;
    height: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
  .navbar.scrolled {
    top: 15px;
    left: 4%;
    width: 92%;
    border-radius: 40px;
    background-color: rgba(26, 50, 52, 0.98);
    height: 70px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* Mobile Menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 15px);
    left: 0; right: 0; bottom: auto;
    transform: none;
    background: var(--green-dark);
    padding: 24px;
    border-radius: 20px;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideDown .3s var(--ease);
  }

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

  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .wwd-grid-3 { grid-template-columns: 1fr; }
  .wwd-grid-2 { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-box { padding: 40px 24px; }
  .float-badge { display: none; }
}

/* ---------- Page-specific: Consulting ---------- */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.5) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(180, 100, 20, 0.3) 100%);
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.page-hero > .container {
  position: relative;
  z-index: 3;
}
.page-hero .section-label {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}
.page-hero .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%);
  border-radius: 24px 24px 0 0;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
}
.pricing-period {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  padding: 8px 0;
  color: var(--gray-800);
}
.pricing-features li .check {
  color: var(--green);
  font-weight: 700;
}

/* ---------- Workshop Cards ---------- */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.workshop-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.workshop-card-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.workshop-card-image.bg-1 {
  background: url('../images/ws-leadership.jpg') center center / cover no-repeat;
}
.workshop-card-image.bg-2 {
  background: url('../images/ws-strategy.jpg') center center / cover no-repeat;
}
.workshop-card-image.bg-3 {
  background: url('../images/ws-teambuilding.jpg') center center / cover no-repeat;
}
.workshop-card-image.bg-4 {
  background: url('../images/ws-digital.jpg') center center / cover no-repeat;
}

.workshop-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}
.workshop-card:hover .workshop-card-image::before {
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
}
.workshop-card-image .workshop-icon {
  display: none;
}

.workshop-card-body {
  padding: 30px;
}
.workshop-card-body .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tag.green { background: var(--green-pale); color: var(--green); }
.tag.orange { background: var(--orange-pale); color: var(--orange); }

.workshop-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.workshop-card-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.workshop-meta {
  display: flex;
  gap: 20px;
  font-size: .82rem;
  color: var(--gray-600);
}
.workshop-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: #fafcfc;
}
.contact-info-card:last-child { 
  margin-bottom: 0; 
}

.contact-info-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.contact-info-icon.green { background: #e8f5f6; color: #00738a; box-shadow: none; }
.contact-info-icon.orange { background: #fdf2e9; color: #e67e22; box-shadow: none; }

.contact-info-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
  margin-top: 2px;
}
.contact-info-card p {
  font-size: 0.98rem;
  color: #666666;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--duration) var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 115, 138,.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- What We Do ---------- */
.whatwedo-card {
  background: #ffffff;
  border: 1px solid rgba(209, 158, 97, 0.15);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 36px 28px;
  text-align: center;
}
.whatwedo-card p {
  flex: 1;
}
.whatwedo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(209, 158, 97, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.whatwedo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08);
  border-color: rgba(209, 158, 97, 0.4);
}
.whatwedo-card:hover::before {
  opacity: 1;
}
.whatwedo-card .wwd-icon i {
  transition: all 0.4s ease;
}
.whatwedo-card:hover .wwd-icon i {
  transform: scale(1.1);
  color: var(--orange);
}

.wwd-grid-3, .wwd-grid-2 {
  display: grid;
  gap: 30px;
}
.wwd-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
}
.wwd-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wwd-grid-3 > div, .wwd-grid-2 > div {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .navbar { top: 12px; width: 96%; padding: 0 12px; height: 60px; border-radius: 24px; }
  .nav-cta, .btn.nav-cta { padding: 8px 16px; font-size: 0.85rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .workshop-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .wwd-grid-3 { grid-template-columns: 1fr; }
  .wwd-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   Premium Icon Scroll Animations
   ============================================ */
.reveal i[class*="ph-"],
.reveal .icon-wrapper i,
.reveal .service-box-icon i,
.reveal .about-feature-icon i,
.reveal .credential-icon i,
.reveal .service-icon i,
.reveal .workshop-icon i,
.reveal .contact-info-icon i,
.reveal .testimonial-stars i,
.reveal .footer-social i {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible i[class*="ph-"],
.reveal.visible .icon-wrapper i,
.reveal.visible .service-box-icon i,
.reveal.visible .about-feature-icon i,
.reveal.visible .credential-icon i,
.reveal.visible .service-icon i,
.reveal.visible .workshop-icon i,
.reveal.visible .contact-info-icon i,
.reveal.visible .testimonial-stars i,
.reveal.visible .footer-social i {
  animation: premiumIconPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, premiumZoomPulse 2.5s ease-in-out infinite 0.8s;
}

.reveal.visible li:nth-child(1) i, .reveal.visible .service-box:nth-child(1) i, .reveal.visible .credential-item:nth-child(1) i, .reveal.visible .about-feature:nth-child(1) i { animation-delay: 0.1s, 0.9s; }
.reveal.visible li:nth-child(2) i, .reveal.visible .service-box:nth-child(2) i, .reveal.visible .credential-item:nth-child(2) i, .reveal.visible .about-feature:nth-child(2) i { animation-delay: 0.2s, 1.0s; }
.reveal.visible li:nth-child(3) i, .reveal.visible .service-box:nth-child(3) i, .reveal.visible .credential-item:nth-child(3) i, .reveal.visible .about-feature:nth-child(3) i { animation-delay: 0.3s, 1.1s; }
.reveal.visible li:nth-child(4) i, .reveal.visible .service-box:nth-child(4) i, .reveal.visible .credential-item:nth-child(4) i, .reveal.visible .about-feature:nth-child(4) i { animation-delay: 0.4s, 1.2s; }

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

.wwd-icon, .service-box-icon, .about-feature-icon, .hero-icon, .contact-info-icon, .workshop-icon {
  animation: globalWrapperFloat 3.5s ease-in-out infinite;
}
.wwd-icon {
  display: inline-block;
}

/* ============================================
   Premium Hero Card Icon
   ============================================ */
.hero-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f4c5c, #1a7a5a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 76, 92, 0.35), 0 0 0 4px rgba(255,255,255,0.08);
  animation: heroIconFloat 3s ease-in-out infinite;
  margin-bottom: 8px;
}
.hero-card-icon i {
  color: #fff !important;
  font-size: 2rem !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes heroIconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.05); }
}

/* Hero card check icons animation */
.hero-card-features .check i {
  display: inline-block;
  animation: checkPulse 2.5s ease-in-out infinite;
}
.hero-card-features li:nth-child(1) .check i { animation-delay: 0s; }
.hero-card-features li:nth-child(2) .check i { animation-delay: 0.3s; }
.hero-card-features li:nth-child(3) .check i { animation-delay: 0.6s; }

@keyframes checkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

@keyframes premiumZoomPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes premiumIconPop {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  65% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Flag Icons */
.flag-icon, .current-flag-icon {
  width: 22px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  display: inline-block;
  object-fit: cover;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background-color: var(--bg-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  outline: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.5;
  transition: color var(--duration) var(--ease);
}

.faq-item.active .faq-question h3 {
  color: var(--orange);
}

.faq-question i {
  font-size: 1.4rem;
  color: var(--orange);
  transition: transform 0.3s var(--ease), color var(--duration) var(--ease);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 30px 24px 30px;
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
  .faq-answer p {
    padding: 0 20px 20px 20px;
  }
}

/* ========== WHO WE ARE ========== */
.who-we-are {
  background: var(--white);
}

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

.wwa-image {
  display: flex;
  justify-content: center;
}

.wwa-side-icons {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.wwa-side-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

.wwa-side-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.wwa-side-icon.green {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--white) 100%);
  color: var(--green);
}

.wwa-side-icon.orange {
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--white) 100%);
  color: var(--orange);
}

.wwa-side-icon.teal {
  background: linear-gradient(135deg, rgba(0, 115, 138, 0.1) 0%, var(--white) 100%);
  color: var(--green-dark);
}

.wwa-image-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.wwa-photo {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

.wwa-accent-border {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green) 0%, var(--orange) 100%);
  z-index: 1;
  opacity: 0.3;
}

.wwa-content .section-label {
  margin-bottom: 12px;
}

.wwa-content .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wwa-desc {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.wwa-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wwa-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all var(--duration) var(--ease);
}

.wwa-highlight-item:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.wwa-highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
}

.wwa-highlight-item:nth-child(2) .wwa-highlight-icon {
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--white) 100%);
  color: var(--orange);
}

.wwa-highlight-item:nth-child(3) .wwa-highlight-icon {
  background: linear-gradient(135deg, rgba(0, 115, 138, 0.1) 0%, var(--white) 100%);
  color: var(--green-dark);
}

.wwa-highlight-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.wwa-highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wwa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .wwa-image-frame {
    max-width: 300px;
    margin: 0 auto;
  }
  .wwa-side-icons {
    gap: 10px;
  }
  .wwa-side-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.9rem;
  }
  .wwa-highlights {
    text-align: left;
  }
}

/* ---------- Custom Map Card ---------- */
.custom-map-card {
  margin-top: 32px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 16px;
}

.map-card-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.map-icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
}

.map-address-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #202124;
  margin-bottom: 4px;
}

.map-address-text p {
  font-size: 0.85rem;
  color: #5f6368;
  margin: 0;
  line-height: 1.4;
}

.map-card-actions {
  display: flex;
  gap: 12px;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-directions {
  background: #1a73e8;
  color: #ffffff;
  border: 1px solid #1a73e8;
}

.btn-directions:hover {
  background: #1557b0;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(60,64,67,0.3);
}

.btn-large-map {
  background: #ffffff;
  color: #1a73e8;
  border: 1px solid #dadce0;
}

.btn-large-map:hover {
  background: #f8f9fa;
  color: #1a73e8;
}

.map-card-iframe {
  height: 350px;
  width: 100%;
}
.map-card-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .map-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Premium Form Card ---------- */
.premium-form-section {
  padding: 80px 0;
  background: var(--bg);
}

.premium-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.03);
}

.premium-form-card .form-group label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 10px;
  display: block;
}

.premium-form-card input,
.premium-form-card select,
.premium-form-card textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.3s ease;
  background: #ffffff;
}

.premium-form-card input::placeholder,
.premium-form-card textarea::placeholder {
  color: #9e9e9e;
}

.premium-form-card input:focus,
.premium-form-card select:focus,
.premium-form-card textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 115, 138, 0.1);
}

.premium-form-card .submit-btn-wrapper {
  text-align: center;
  margin-top: 36px;
}

.premium-form-card .btn-submit-premium {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.25);
  width: 100%;
  max-width: 400px;
}

.premium-form-card .btn-submit-premium:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 124, 0, 0.35);
}

@media (max-width: 768px) {
  .premium-form-card {
    padding: 30px 20px;
  }
}

/* Inline Form Validation Styles */
.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
  animation: fadeIn 0.3s ease;
}
.input-error {
  border-color: #e74c3c !important;
  background-color: #fff8f8 !important;
}

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

/* ---------- Promotional Popup ---------- */
.promo-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  overflow: hidden;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.promo-popup.show {
  transform: translateY(0);
  opacity: 1;
}
.promo-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  font-size: 1.1rem;
}
.promo-popup-close:hover {
  background: rgba(0, 0, 0, 0.9);
}
.promo-popup a {
  display: block;
}
.promo-popup img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.promo-popup a:hover img {
  transform: scale(1.02);
}
/* ---------- Promo Toggle Button ---------- */
.promo-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(245, 124, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.promo-toggle.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.promo-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(245, 124, 0, 0.55);
}
.promo-toggle .promo-toggle-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  animation: promoPulse 2s ease-in-out infinite;
}
@keyframes promoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@media (max-width: 768px) {
  .promo-popup {
    width: auto;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .promo-toggle {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* ---------- Promotional Lightbox ---------- */
.promo-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.promo-lightbox.show {
  opacity: 1;
  pointer-events: auto;
}
.promo-lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.promo-lightbox.show img {
  transform: scale(1);
}
.promo-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 100001;
  transition: transform 0.2s;
  padding: 10px;
}
.promo-lightbox-close:hover {
  transform: scale(1.1);
}

/* ---------- Scroll to Top Button ---------- */
.scroll-to-top {
  display: none !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 990;
}
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 115, 138, 0.4);
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 4%;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-content i {
  font-size: 1.8rem;
  color: var(--orange);
}
.cookie-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.cookie-policy-link {
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-accept {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ---------- Mobile Home Hero Fix ---------- */
@media (max-width: 768px) {
  .hero {
    background-size: 100% 100%;
    min-height: 100dvh;
  }
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 115, 138, 0.35);
  border: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 115, 138, 0.45);
  color: #fff;
}
.page-hero .section-title .text-gradient-green {
  background: linear-gradient(135deg, #2a9db0 0%, #1a7a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .section-title .text-gradient-orange {
  background: linear-gradient(135deg, #ffc97a 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
