/* ===== KaeRae Kreative — Shared Styles ===== */
/* Canonical source for header, footer, buttons, animations, reveal system */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  background: #f3f3f3;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
  --orange: #F7931E;
  --orange-hover: #e0850f;
  --orange-glow: rgba(247,147,30,0.25);
  --orange-subtle: rgba(247,147,30,0.08);
  --teal: #3AA8C1;
  --dark-teal: #014958;
  --dark-teal-deep: #003340;
  --light-bg: #f3f3f3;
  --white: #fff;
  --black: #000;
  --gray: #8A8A8A;
  --border: #E3E3E3;
  --mid-gray: #C7C7C7;
  --max-width: 1140px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--orange-glow); }
  50% { box-shadow: 0 0 0 12px rgba(247,147,30,0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(20px) rotateX(-10deg); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes meshShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-25px) rotate(2deg); }
}
@keyframes floatShape2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(-4deg); }
  66% { transform: translateY(-8px) rotate(6deg); }
}
@keyframes floatShape3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -18px) rotate(8deg); }
}
@keyframes ctaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 20px) scale(0.9); }
  66% { transform: translate(20px, -10px) scale(1.05); }
}
@keyframes lineGrow {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes gradientPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}
@keyframes slideAccent {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes stepLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== REVEAL SYSTEM ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-rotate {
  opacity: 0;
  transform: rotate(-5deg) scale(0.92);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}
.reveal-rotate.visible { opacity: 1; transform: rotate(0) scale(1); }

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ===== SECTION SHARED ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 1px;
}
.section-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  max-width: 540px;
}

/* ===== HEADER ===== */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-spring);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 30px rgba(0,0,0,0.07);
  border-bottom-color: var(--border);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-area img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.logo-area:hover img {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.logo-text h1, .logo-text .logo-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.logo-text p {
  font-size: 9px;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-spring);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transition: left 0.4s var(--ease-spring), right 0.4s var(--ease-spring);
  border-radius: 1px;
}
.nav-links a:hover::after { left: 0; right: 0; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { left: 0; right: 0; }
.nav-cta {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  padding: 10px 26px !important;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.4s var(--ease-spring) !important;
  box-shadow: 0 4px 16px var(--orange-glow);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 28px var(--orange-glow) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.4s var(--ease-spring);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  box-shadow: 0 4px 20px var(--orange-glow);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px var(--orange-glow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-teal);
  font-size: 12px;
  font-weight: 700;
  padding: 15px 28px;
  border: 2px solid var(--dark-teal);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  font-family: inherit;
}
.btn-ghost:hover {
  background: var(--dark-teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(1,73,88,0.2);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark-teal);
  font-size: 12px;
  font-weight: 700;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, var(--orange-subtle), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-white:hover::before { transform: translateX(100%); }
.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(0,0,0,0.15), 0 0 30px var(--orange-glow);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 13px 32px;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  font-family: inherit;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  box-shadow: 0 4px 20px var(--orange-glow);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px var(--orange-glow);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-teal-deep) 0%, var(--dark-teal) 50%, #026d7e 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-orb:nth-child(1) {
  top: -15%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(247,147,30,0.1) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}
.cta-orb:nth-child(2) {
  bottom: -25%; left: -8%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,168,193,0.12) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.cta-orb:nth-child(3) {
  top: 20%; left: 40%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(247,147,30,0.06) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite 2s;
}
.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 36px;
}
.cta-banner p strong { color: var(--orange); }
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(165deg, var(--dark-teal-deep) 0%, #001a24 50%, var(--dark-teal-deep) 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--orange));
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.4;
}
.footer-glow--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  top: -20%; right: -5%;
}
.footer-glow--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,168,193,0.12) 0%, transparent 70%);
  bottom: -15%; left: -5%;
}
.footer-cta-strip {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 28px;
  position: relative;
  z-index: 1;
}
.footer-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.footer-cta-buttons .btn-primary {
  font-size: 12px;
  padding: 14px 32px;
}
.footer-cta-buttons .btn-ghost {
  font-size: 12px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s var(--ease-spring);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-cta-buttons .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 56px 28px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand {
  position: relative;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.4s var(--ease-spring);
}
.footer-brand-logo:hover img {
  transform: scale(1.08) rotate(3deg);
}
.footer-brand-logo h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand-logo h3 span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 3px;
}
.footer-brand > p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.social-bar a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  opacity: 0;
  transition: opacity 0.4s var(--ease-spring);
  border-radius: inherit;
}
.social-bar a:hover::before { opacity: 1; }
.social-bar a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px var(--orange-glow);
  border-color: transparent;
}
.social-bar img {
  width: 15px; height: 15px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.social-bar a:hover img { opacity: 1; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: all 0.3s var(--ease-spring);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s var(--ease-spring);
  margin-right: 0;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-col a:hover::before {
  width: 12px;
  margin-right: 8px;
}
.footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 1px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s var(--ease-spring);
}
.footer-contact-item:hover .footer-contact-icon {
  background: var(--orange-subtle);
  transform: scale(1.08);
}
.footer-contact-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s var(--ease-spring);
  font-weight: 500;
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s var(--ease-spring);
  font-weight: 500;
}
.footer-bottom a:hover { color: var(--orange); }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  position: relative;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: 0; left: -5%;
  width: 110%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 0%, var(--orange-subtle) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 100%, rgba(58,168,193,0.06) 0%, transparent 50%);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open { display: block; opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-buttons { justify-content: center; }
}

@media (max-width: 768px) {
  .header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .header.scrolled {
    background: #ffffff !important;
  }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    flex-direction: column;
    padding: 84px 28px 28px;
    gap: 4px;
    box-shadow: -16px 0 56px rgba(0,0,0,0.12);
    z-index: 1001;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-spring);
  }
  .nav-links.open {
    display: flex;
    transform: translateX(0);
    animation: slideInRight 0.4s var(--ease-spring);
  }
  .nav-links a {
    font-size: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 12px;
    border-bottom: none !important;
    min-height: 44px;
  }
  .section-title { font-size: 26px; }
  .cta-banner h2 { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons a { min-height: 44px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .btn-primary, .btn-ghost, .btn-white, .btn-outline-white, .btn-glow { min-height: 44px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 22px; }
  .cta-banner { padding: 60px 20px; }
  .cta-banner h2 { font-size: 22px; }
  .footer { padding: 48px 20px 24px; }
}

/* ===== NEWSLETTER POPUP ===== */
.newsletter-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.newsletter-popup-overlay.show {
  display: flex;
}
.newsletter-popup {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.newsletter-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
.newsletter-popup-close:hover {
  color: #333;
}
.newsletter-popup h3 {
  font-size: 24px;
  color: #014958;
  margin: 0 0 8px;
}
.newsletter-popup p {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px;
  line-height: 1.5;
}
.newsletter-popup input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.newsletter-popup input:focus {
  outline: none;
  border-color: #3AA8C1;
}
.newsletter-popup button.btn-subscribe {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #F7931E, #ff6b00);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-popup button.btn-subscribe:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(247,147,30,0.4);
}
.newsletter-popup .nl-success {
  color: #27ae60;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}
.newsletter-popup .nl-fine-print {
  font-size: 11px;
  color: #999;
  margin-top: 12px;
}

/* ===== CHAT WIDGET ===== */
.chat-bubble-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: #3AA8C1; color: #fff; cursor: pointer;
  box-shadow: 0 4px 16px rgba(58,168,193,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-bubble-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(58,168,193,0.5); }
.chat-bubble-btn svg { width: 26px; height: 26px; }
.chat-bubble-btn .chat-unread {
  position: absolute; top: -2px; right: -2px; width: 18px; height: 18px;
  background: #F7931E; border-radius: 50%; font-size: 10px; font-weight: 700;
  display: none; align-items: center; justify-content: center; color: #fff;
}

.chat-widget {
  position: fixed; bottom: 92px; right: 24px; z-index: 9998;
  width: 360px; max-height: 480px; background: #fff;
  border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  display: none; flex-direction: column; overflow: hidden;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
.chat-widget.open { display: flex; }

.chat-widget-header {
  background: #014958; color: #fff; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.chat-widget-header h4 { margin: 0; font-size: 14px; font-weight: 600; }
.chat-widget-close {
  background: none; border: none; color: #fff; font-size: 22px;
  cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s;
}
.chat-widget-close:hover { opacity: 1; }

.chat-widget-body {
  flex: 1; overflow-y: auto; padding: 16px; min-height: 280px;
  display: flex; flex-direction: column; gap: 8px;
}

.chat-msg {
  max-width: 80%; padding: 8px 12px; border-radius: 12px;
  font-size: 13px; line-height: 1.5; word-wrap: break-word;
}
.chat-msg.visitor {
  align-self: flex-end; background: #3AA8C1; color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg.admin {
  align-self: flex-start; background: #f0f2f5; color: #333;
  border-bottom-left-radius: 4px;
}

.chat-widget-intro {
  text-align: center; color: #999; font-size: 12px;
  padding: 20px 10px; line-height: 1.6;
}

.chat-widget-form {
  padding: 10px 12px; text-align: center;
}
.chat-widget-form input {
  width: 100%; padding: 8px 12px; border: 1px solid #ddd;
  border-radius: 8px; font-size: 13px; font-family: inherit;
  margin-bottom: 8px;
}
.chat-widget-form button {
  width: 100%; padding: 8px; border: none; border-radius: 8px;
  background: #3AA8C1; color: #fff; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: background 0.2s;
}
.chat-widget-form button:hover { background: #014958; }

.chat-widget-footer {
  display: flex; gap: 8px; padding: 10px 12px;
  border-top: 1px solid #eee; flex-shrink: 0;
}
.chat-widget-footer input {
  flex: 1; padding: 8px 12px; border: 1px solid #ddd;
  border-radius: 20px; font-size: 13px; font-family: inherit; outline: none;
}
.chat-widget-footer input:focus { border-color: #3AA8C1; }
.chat-widget-footer button {
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: #3AA8C1; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.chat-widget-footer button:hover { background: #014958; }
.chat-widget-footer button svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
  .chat-widget { right: 8px; left: 8px; width: auto; bottom: 80px; max-height: 70vh; }
  .chat-bubble-btn { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}
