/*
Theme Name: Lifecare Brands Solutions
Theme URI: https://www.lifecarebrands.care
Author: Lifecare Brands Solutions
Author URI: https://www.lifecarebrands.care
Description: Custom WordPress theme for Lifecare Brands Solutions — Caribbean-based FMCG distribution and wholesale. Designed to match the brand's deep blue gradient palette and three-bubble logo identity. WPML compatible with full e-commerce support via the LCB Commerce plugin.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lifecare
Domain Path: /languages
Tags: e-commerce, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, rtl-language-support
*/

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES — Ocean defaults (fallback)
   Overridden dynamically by the active style preset
   via inc/style-presets.php → Customizer → Theme Style.
   ───────────────────────────────────────────── */
:root {
  --lcb-deep-blue: #1a3a6b;
  --lcb-brand-blue: #2563a8;
  --lcb-mid-blue: #3080c8;
  --lcb-light-blue: #0099d6;
  --lcb-sky-blue: #4db8e8;
  --lcb-pale-blue: #e8f4fb;
  --lcb-ice: #f0f7fc;
  --lcb-white: #ffffff;
  --lcb-dark: #0f1e3d;
  --lcb-text: #2c3e5a;
  --lcb-text-light: #6b7d99;
  --lcb-accent-teal: #00b8a9;
  --lcb-accent-coral: #ff6b6b;
  --lcb-success: #34d399;
  --lcb-gold: #f5a623;
  --lcb-radius: 16px;
  --lcb-radius-sm: 10px;
  --lcb-shadow: 0 4px 24px rgba(26,58,107,0.10);
  --lcb-shadow-lg: 0 12px 48px rgba(26,58,107,0.15);
  --lcb-shadow-xl: 0 20px 60px rgba(26,58,107,0.20);
  --lcb-font-heading: 'Outfit', sans-serif;
  --lcb-font-body: 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--lcb-font-body);
  color: var(--lcb-text);
  background: var(--lcb-white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--lcb-font-heading); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
.lcb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0 40px;
}
.lcb-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(26,58,107,0.08);
}
.lcb-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.lcb-logo { display: flex; align-items: center; gap: 10px; }
.lcb-logo-dots { display: flex; gap: 3px; align-items: flex-end; }
.lcb-logo-dot { border-radius: 50%; transition: transform 0.3s; }
.lcb-logo:hover .lcb-logo-dot { transform: translateY(-3px); }
.lcb-logo-dot:nth-child(1) { width:10px; height:10px; background: #a0d4ef; }
.lcb-logo-dot:nth-child(2) { width:12px; height:12px; background: #5ec4e8; }
.lcb-logo-dot:nth-child(3) { width:16px; height:16px; background: #0099d6; }
.lcb-logo-text {
  font-family: var(--lcb-font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
}
.lcb-logo-text span { display: block; }
.lcb-logo-text .t1 { color: var(--lcb-deep-blue); }
.lcb-logo-text .t2 { color: var(--lcb-brand-blue); }
.lcb-logo-text .t3 { font-weight: 400; font-size: 13px; color: var(--lcb-mid-blue); letter-spacing: 1px; }
.lcb-nav:not(.scrolled) .lcb-logo-text .t1,
.lcb-nav:not(.scrolled) .lcb-logo-text .t2 { color: var(--lcb-white); }
.lcb-nav:not(.scrolled) .lcb-logo-text .t3 { color: rgba(255,255,255,0.8); }

/* Nav menu */
.lcb-menu { display: flex; align-items: center; gap: 8px; list-style: none; }
.lcb-menu > li { position: relative; }
.lcb-menu a {
  font-family: var(--lcb-font-heading);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: var(--lcb-radius-sm);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lcb-nav:not(.scrolled) .lcb-menu a { color: rgba(255,255,255,0.9); }
.lcb-nav:not(.scrolled) .lcb-menu a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.lcb-nav.scrolled .lcb-menu a { color: var(--lcb-text); }
.lcb-nav.scrolled .lcb-menu a:hover { color: var(--lcb-brand-blue); background: var(--lcb-pale-blue); }

/* Dropdown */
.lcb-dropdown { position: relative; }
.lcb-dropdown-arrow { font-size: 10px; transition: transform 0.3s; }
.lcb-dropdown:hover .lcb-dropdown-arrow { transform: rotate(180deg); }
.lcb-sub-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: var(--lcb-white);
  border-radius: var(--lcb-radius);
  box-shadow: var(--lcb-shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  list-style: none;
}
.lcb-dropdown:hover .lcb-sub-menu { opacity:1; visibility:visible; transform:translateY(4px); }
.lcb-sub-menu a {
  color: var(--lcb-text) !important;
  padding: 12px 16px;
  border-radius: var(--lcb-radius-sm);
  font-size: 14px;
}
.lcb-sub-menu a:hover { background: var(--lcb-pale-blue) !important; color: var(--lcb-brand-blue) !important; }

/* Order button */
.lcb-btn-order {
  background: linear-gradient(135deg, var(--lcb-light-blue), var(--lcb-accent-teal));
  color: var(--lcb-white) !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0,153,214,0.3);
  animation: lcb-pulse-glow 3s ease-in-out infinite;
}
.lcb-btn-order:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(0,153,214,0.4) !important;
}
.lcb-nav.scrolled .lcb-btn-order { color: var(--lcb-white) !important; }
.lcb-cart-count {
  background: var(--lcb-accent-coral);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.lcb-cart-count.show { transform: scale(1); }

@keyframes lcb-pulse-glow {
  0%,100% { box-shadow: 0 4px 16px rgba(0,153,214,0.3); }
  50% { box-shadow: 0 4px 24px rgba(0,153,214,0.5); }
}

/* Mobile hamburger */
.lcb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.lcb-hamburger span {
  width: 26px; height: 2px;
  background: var(--lcb-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.lcb-nav.scrolled .lcb-hamburger span { background: var(--lcb-deep-blue); }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.lcb-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--lcb-deep-blue) 0%, var(--lcb-brand-blue) 50%, var(--lcb-light-blue) 100%);
  display: flex;
  align-items: center;
  padding: 120px 40px 160px;
  position: relative;
  overflow: hidden;
}
.lcb-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 5;
}
.lcb-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: var(--lcb-white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.lcb-hero h1 em { font-style: normal; color: var(--lcb-sky-blue); }
.lcb-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Buttons */
.lcb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--lcb-font-heading);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.lcb-btn-primary {
  background: var(--lcb-white);
  color: var(--lcb-deep-blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.lcb-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.lcb-btn-outline {
  background: transparent;
  color: var(--lcb-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.lcb-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Stat cards */
.lcb-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lcb-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--lcb-radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.lcb-stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.lcb-stat-num {
  font-family: var(--lcb-font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--lcb-white);
  line-height: 1;
}
.lcb-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 500; }

/* Wave lines (business card style) */
.lcb-wave-lines {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  height: 200px;
  opacity: 0.15;
  z-index: 1;
  overflow: hidden;
}
.lcb-wave-lines svg { width: 100%; height: 100%; }
.lcb-wave-lines path {
  fill: none;
  stroke: white;
  stroke-width: 1;
  animation: lcb-wave-flow 8s ease-in-out infinite;
}
.lcb-wave-lines path:nth-child(2) { animation-delay: -2s; opacity: 0.7; }
.lcb-wave-lines path:nth-child(3) { animation-delay: -4s; opacity: 0.5; }

@keyframes lcb-wave-flow {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(-30px); }
}

/* Bubbles */
.lcb-bubbles { position: absolute; top:0; left:0; right:0; bottom:0; pointer-events:none; z-index:1; }
.lcb-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: lcb-float 20s ease-in-out infinite;
}
.lcb-bubble:nth-child(1) { width:300px; height:300px; background:var(--lcb-sky-blue); top:-50px; right:-80px; }
.lcb-bubble:nth-child(2) { width:200px; height:200px; background:var(--lcb-light-blue); bottom:100px; left:-60px; animation-delay:-5s; }
.lcb-bubble:nth-child(3) { width:150px; height:150px; background:#fff; top:40%; right:10%; animation-delay:-10s; }

@keyframes lcb-float {
  0%,100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-20px) scale(1.05); }
  66% { transform: translateY(10px) scale(0.95); }
}

/* Wave bottom */
.lcb-wave-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}
.lcb-wave-bottom svg { width:100%; height:100%; display:block; }

/* ─────────────────────────────────────────────
   HERO VIDEO SLIDER
   ───────────────────────────────────────────── */
.lcb-hero--slider {
  padding: 0;
  display: block;
}

/* Slide track — stacks all slides absolutely */
.lcb-slider-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lcb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  /* Fallback gradient for slides with no media */
  background: linear-gradient(145deg, var(--lcb-deep-blue) 0%, var(--lcb-brand-blue) 50%, var(--lcb-light-blue) 100%);
}
.lcb-slide.active { opacity: 1; }
.lcb-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--lcb-deep-blue), rgba(15,30,61,0.8));
  z-index: 1;
  pointer-events: none;
}
.lcb-slide-video,
.lcb-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content wrap — centered, on top of video */
.lcb-slider-content-wrap {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 200px;
  text-align: center;
}
.lcb-slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 860px;
  padding: 0 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
  transform: translate(-50%, -45%);
}
.lcb-slider-content.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.lcb-slider-headline {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--lcb-white);
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.lcb-slider-headline em {
  font-style: normal;
  color: var(--lcb-sky-blue);
}
.lcb-slider-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* CTA Button — prominent, on-brand */
.lcb-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  border-radius: 50px;
  background: var(--lcb-white);
  color: var(--lcb-deep-blue);
  font-family: var(--lcb-font-heading);
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}
.lcb-btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lcb-light-blue), var(--lcb-accent-teal));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}
.lcb-btn-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 44px rgba(0,0,0,0.3);
  color: var(--lcb-white);
}
.lcb-btn-cta:hover::before { opacity: 1; }
.lcb-btn-cta span,
.lcb-btn-cta { position: relative; z-index: 1; }

/* Stats bar at bottom of slider */
.lcb-slider-stats {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  padding: 0 40px;
}
.lcb-slider-stats .lcb-stat-card {
  flex: 1;
  padding: 20px 16px;
}

/* Navigation dots with circular progress */
.lcb-slider-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 14px;
}
.lcb-slider-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lcb-slider-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.lcb-slider-dot.active::after {
  background: var(--lcb-white);
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}
.lcb-slider-dot:hover::after { background: rgba(255,255,255,0.8); }

/* Circular progress ring around active dot */
.lcb-dot-progress {
  position: absolute;
  inset: 0;
  width: 36px;
  height: 36px;
  transform: rotate(-90deg);
  opacity: 0;
  transition: opacity 0.3s;
}
.lcb-slider-dot.active .lcb-dot-progress { opacity: 1; }
.lcb-dot-progress circle {
  fill: none;
  stroke: var(--lcb-white);
  stroke-width: 2;
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
  stroke-linecap: round;
}
.lcb-slider-dot.active .lcb-dot-progress circle {
  animation: lcb-dot-fill var(--lcb-slider-duration, 8s) linear forwards;
}
@keyframes lcb-dot-fill {
  to { stroke-dashoffset: 0; }
}

/* ─── Slider Responsive ─── */
@media(max-width:1024px) {
  .lcb-slider-stats { flex-wrap: wrap; gap: 12px; bottom: 160px; }
  .lcb-slider-stats .lcb-stat-card { flex: 1 1 40%; }
}
@media(max-width:768px) {
  .lcb-slider-content-wrap { padding: 120px 20px 220px; }
  .lcb-slider-content { padding: 0 20px; }
  .lcb-slider-stats { bottom: 180px; padding: 0 20px; }
  .lcb-slider-stats .lcb-stat-card { padding: 14px 10px; }
  .lcb-slider-stats .lcb-stat-card .lcb-stat-num { font-size: 28px; }
  .lcb-slider-dots { bottom: 40px; }
  .lcb-btn-cta { padding: 14px 32px; font-size: 15px; }
}

/* ─────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────── */
.lcb-section { padding: 100px 40px; }
.lcb-section-inner { max-width: 1280px; margin: 0 auto; }
.lcb-section-label {
  font-family: var(--lcb-font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--lcb-light-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.lcb-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--lcb-deep-blue);
  line-height: 1.15;
  margin-bottom: 20px;
}
.lcb-section-desc {
  font-size: 17px;
  color: var(--lcb-text-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ─────────────────────────────────────────────
   BRANDS MARQUEE
   ───────────────────────────────────────────── */
.lcb-brands { padding: 60px 0; background: var(--lcb-ice); overflow: hidden; }
.lcb-brands-label {
  text-align: center;
  font-family: var(--lcb-font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--lcb-text-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
}
.lcb-marquee { display: flex; overflow: hidden; white-space: nowrap; }
.lcb-marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: lcb-marquee 40s linear infinite;
}
.lcb-marquee-track span {
  font-family: var(--lcb-font-heading);
  font-size: 22px; font-weight: 700;
  color: var(--lcb-brand-blue);
  opacity: 0.35;
  flex-shrink: 0;
}
.lcb-marquee-track .dot {
  width:6px; height:6px; border-radius:50%;
  background: var(--lcb-light-blue); opacity:0.4; flex-shrink:0;
}
@keyframes lcb-marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─────────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────────── */
.lcb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.lcb-about-card {
  background: linear-gradient(135deg, var(--lcb-deep-blue), var(--lcb-brand-blue));
  border-radius: 24px;
  padding: 48px;
  color: var(--lcb-white);
  position: relative;
  overflow: hidden;
}
.lcb-about-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.lcb-about-card p { font-size: 15px; opacity: 0.8; line-height: 1.6; }
.lcb-about-counters { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.lcb-about-counter {
  background: rgba(255,255,255,0.1);
  border-radius: var(--lcb-radius-sm);
  padding: 16px;
  text-align: center;
}
.lcb-about-counter strong { display: block; font-size: 28px; font-weight: 800; }
.lcb-about-counter small { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* Mission / Vision cards */
.lcb-mv-cards { display: flex; flex-direction: column; gap: 20px; }
.lcb-mv-card {
  background: var(--lcb-white);
  border-radius: var(--lcb-radius);
  padding: 32px;
  box-shadow: var(--lcb-shadow);
  border-left: 4px solid var(--lcb-light-blue);
  transition: all 0.3s;
}
.lcb-mv-card:hover { transform: translateX(8px); box-shadow: var(--lcb-shadow-lg); }
.lcb-mv-card h4 {
  font-size: 18px; font-weight: 700;
  color: var(--lcb-deep-blue);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.lcb-mv-card p { font-size: 15px; color: var(--lcb-text-light); line-height: 1.6; }

/* ─────────────────────────────────────────────
   GALLERY
   ───────────────────────────────────────────── */
.lcb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(2,240px);
  gap: 16px;
  margin-top: 48px;
}
.lcb-gallery-item {
  border-radius: var(--lcb-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.lcb-gallery-item:hover { transform: scale(1.02); }
.lcb-gallery-item:nth-child(1) { grid-column: span 2; }
.lcb-gallery-item:nth-child(5) { grid-column: span 2; }
.lcb-gallery-text { color: white; text-align: center; padding: 24px; z-index: 2; position: relative; }
.lcb-gallery-text h4 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.lcb-gallery-text p { font-size: 13px; opacity: 0.8; }

/* ─────────────────────────────────────────────
   TEAM
   ───────────────────────────────────────────── */
.lcb-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.lcb-team-card {
  background: var(--lcb-white);
  border-radius: var(--lcb-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--lcb-shadow);
  transition: all 0.3s;
}
.lcb-team-card:hover { transform: translateY(-6px); box-shadow: var(--lcb-shadow-lg); }
.lcb-team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lcb-brand-blue), var(--lcb-light-blue));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  font-family: var(--lcb-font-heading);
  font-weight: 800;
  overflow: hidden;
}
.lcb-team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lcb-team-name { font-family: var(--lcb-font-heading); font-weight: 700; font-size: 18px; color: var(--lcb-deep-blue); }
.lcb-team-role { font-size: 14px; color: var(--lcb-light-blue); font-weight: 600; margin-top: 4px; }
.lcb-team-bio { font-size: 13px; color: var(--lcb-text-light); margin-top: 12px; line-height: 1.5; }

/* ─────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────── */
.lcb-contact {
  background: linear-gradient(145deg, var(--lcb-deep-blue), var(--lcb-brand-blue));
  color: var(--lcb-white);
  position: relative;
  overflow: hidden;
}
.lcb-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.lcb-contact-info { display: flex; flex-direction: column; gap: 24px; }
.lcb-contact-item { display: flex; gap: 16px; align-items: flex-start; }
.lcb-contact-icon {
  width: 52px; height: 52px;
  border-radius: var(--lcb-radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.lcb-contact-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.lcb-contact-text p { font-size: 14px; opacity: 0.8; line-height: 1.5; }
.lcb-contact-form { display: flex; flex-direction: column; gap: 16px; }
.lcb-contact-form input,
.lcb-contact-form textarea {
  padding: 16px 20px;
  border-radius: var(--lcb-radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--lcb-white);
  font-family: var(--lcb-font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}
.lcb-contact-form input::placeholder,
.lcb-contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.lcb-contact-form input:focus,
.lcb-contact-form textarea:focus { border-color: var(--lcb-sky-blue); background: rgba(255,255,255,0.12); }
.lcb-contact-form textarea { height: 120px; resize: vertical; }
.lcb-btn-send {
  background: var(--lcb-white);
  color: var(--lcb-deep-blue);
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-family: var(--lcb-font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}
.lcb-btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.lcb-footer {
  background: var(--lcb-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 30px;
}
.lcb-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.lcb-footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.lcb-footer-col h5 {
  font-family: var(--lcb-font-heading);
  font-weight: 700;
  color: var(--lcb-white);
  margin-bottom: 16px;
  font-size: 15px;
}
.lcb-footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 4px 0;
}
.lcb-footer-col a:hover { color: var(--lcb-sky-blue); }
.lcb-footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
   ───────────────────────────────────────────── */
.lcb-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lcb-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   TOAST
   ───────────────────────────────────────────── */
.lcb-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--lcb-deep-blue);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--lcb-font-heading);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--lcb-shadow-xl);
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.lcb-toast.show { transform: translateX(-50%) translateY(0); }

/* ─────────────────────────────────────────────
   WPML LANGUAGE SWITCHER (style override)
   ───────────────────────────────────────────── */
.wpml-ls-statics-shortcode_actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wpml-ls-statics-shortcode_actions a {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.wpml-ls-statics-shortcode_actions a:hover,
.wpml-ls-statics-shortcode_actions .wpml-ls-current-language a {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.lcb-nav.scrolled .wpml-ls-statics-shortcode_actions a {
  background: var(--lcb-pale-blue);
  color: var(--lcb-brand-blue);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media(max-width:1024px) {
  .lcb-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lcb-hero-stats { grid-template-columns: repeat(4,1fr); }
  .lcb-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .lcb-contact-grid { grid-template-columns: 1fr; }
  .lcb-footer-inner { grid-template-columns: 1fr 1fr; }
  .lcb-gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .lcb-gallery-item:nth-child(1), .lcb-gallery-item:nth-child(5) { grid-column: span 1; }
}
@media(max-width:768px) {
  .lcb-section { padding: 60px 20px; }
  .lcb-nav { padding: 0 20px; }
  .lcb-hero { padding: 100px 20px 120px; }
  .lcb-menu { display: none; }
  .lcb-hamburger { display: flex; }
  .lcb-hero-stats { grid-template-columns: repeat(2,1fr); }
  .lcb-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lcb-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .lcb-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--lcb-white);
    padding: 20px;
    box-shadow: var(--lcb-shadow-lg);
    border-radius: 0 0 var(--lcb-radius) var(--lcb-radius);
  }
  .lcb-menu.open a { color: var(--lcb-text) !important; }
  .lcb-menu.open .lcb-btn-order { color: var(--lcb-white) !important; }
  .lcb-sub-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
}

/* ─────────────────────────────────────────────
   PAGE HERO (for inner page templates)
   ───────────────────────────────────────────── */
.lcb-page-hero {
  padding: 160px 40px 120px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.lcb-page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.lcb-page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--lcb-white);
  margin-bottom: 16px;
}
.lcb-page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   GOOGLE MAPS
   ───────────────────────────────────────────── */
.lcb-map-section {
  position: relative;
  z-index: 1;
}
.lcb-map {
  width: 100%;
  height: 450px;
  background: var(--lcb-pale-blue);
}
.lcb-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact page layout override (light bg instead of dark) */
.lcb-section.lcb-contact {
  background: var(--lcb-white);
  color: var(--lcb-text);
}
.lcb-section.lcb-contact .lcb-contact-form input,
.lcb-section.lcb-contact .lcb-contact-form textarea {
  background: var(--lcb-ice);
  border: 2px solid var(--lcb-pale-blue);
  color: var(--lcb-text);
}
.lcb-section.lcb-contact .lcb-contact-form input::placeholder,
.lcb-section.lcb-contact .lcb-contact-form textarea::placeholder {
  color: var(--lcb-text-light);
}
.lcb-section.lcb-contact .lcb-contact-form input:focus,
.lcb-section.lcb-contact .lcb-contact-form textarea:focus {
  border-color: var(--lcb-light-blue);
  background: var(--lcb-white);
}
.lcb-section.lcb-contact .lcb-btn-send {
  background: linear-gradient(135deg, var(--lcb-brand-blue), var(--lcb-light-blue));
  color: var(--lcb-white);
}
.lcb-section.lcb-contact .lcb-contact-icon {
  background: var(--lcb-pale-blue);
  color: var(--lcb-brand-blue);
}
.lcb-section.lcb-contact .lcb-contact-text h4 { color: var(--lcb-deep-blue); }
.lcb-section.lcb-contact .lcb-contact-text p { color: var(--lcb-text-light); opacity: 1; }

/* ─────────────────────────────────────────────
   GALLERY MASONRY GRID
   ───────────────────────────────────────────── */
.lcb-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.lcb-gallery-card {
  position: relative;
  border-radius: var(--lcb-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--lcb-pale-blue);
  transition: all 0.4s;
}
.lcb-gallery-card:hover { transform: translateY(-6px); box-shadow: var(--lcb-shadow-xl); }
.lcb-gallery-card img,
.lcb-gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lcb-gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,61,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.lcb-gallery-card:hover .lcb-gallery-card-overlay { opacity: 1; }
.lcb-gallery-card-overlay h4 {
  font-family: var(--lcb-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--lcb-white);
  margin-bottom: 4px;
}
.lcb-gallery-card-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* Gallery every 5th item spans 2 columns */
.lcb-gallery-card:nth-child(5n+1) { grid-column: span 2; }

@media(max-width:768px) {
  .lcb-gallery-masonry { grid-template-columns: 1fr 1fr; }
  .lcb-gallery-card:nth-child(5n+1) { grid-column: span 1; }
  .lcb-page-hero { padding: 120px 20px 80px; }
  .lcb-map { height: 300px; }
}
@media(max-width:500px) {
  .lcb-gallery-masonry { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   ABOUT PAGE CONTENT
   ───────────────────────────────────────────── */
.lcb-about-content {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--lcb-text);
}
.lcb-about-content h2, .lcb-about-content h3 {
  color: var(--lcb-deep-blue);
  margin-top: 32px;
  margin-bottom: 12px;
}

/* ─────────────────────────────────────────────
   MISSION / VISION PAGE
   ───────────────────────────────────────────── */
.lcb-mv-page-content {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   EDITOR CONTENT IN CONTACT
   ───────────────────────────────────────────── */
.lcb-contact-editor-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lcb-text);
}
.lcb-contact-editor-content h2, .lcb-contact-editor-content h3 {
  color: var(--lcb-deep-blue);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════
   LAYOUT PRESETS
   4 layout styles that change dividers, decorations,
   card shapes, and visual rhythm.
   Active layout is set as body class: lcb-layout-{name}
   ═══════════════════════════════════════════════ */

/* ─── DIVIDERS (shared base) ─── */
.lcb-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.lcb-divider svg {
  width: 100%;
  display: block;
}

/* Wave divider */
.lcb-divider--wave svg { height: 120px; }

/* Angular divider */
.lcb-divider--angular svg { height: 100px; }

/* Curved divider */
.lcb-divider--curved svg { height: 100px; }

/* Minimal divider — thin line */
.lcb-divider--minimal {
  height: auto;
  bottom: 0;
}
.lcb-divider-line {
  width: 120px;
  height: 3px;
  background: var(--lcb-light-blue);
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0.6;
}

/* ─── HERO DECORATIONS ─── */
.lcb-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.lcb-hero-deco svg {
  width: 100%;
  height: 100%;
}

/* ─── ANGULAR DECORATIONS — geometric triangles ─── */
.lcb-decor--angular {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.lcb-geo {
  position: absolute;
  opacity: 0.06;
  animation: lcb-geo-drift 25s ease-in-out infinite;
}
.lcb-geo-1 {
  width: 200px; height: 200px;
  top: -40px; right: -40px;
  background: var(--lcb-sky-blue);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.lcb-geo-2 {
  width: 120px; height: 120px;
  bottom: 80px; left: 5%;
  background: var(--lcb-light-blue);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: -8s;
}
.lcb-geo-3 {
  width: 80px; height: 80px;
  top: 30%; right: 15%;
  background: var(--lcb-white);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  animation-delay: -16s;
}
@keyframes lcb-geo-drift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

/* ─── CURVED DECORATIONS — soft blobs ─── */
.lcb-decor--curved {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.lcb-blob {
  position: absolute;
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  opacity: 0.06;
  animation: lcb-blob-morph 20s ease-in-out infinite;
}
.lcb-blob-1 {
  width: 400px; height: 400px;
  top: -100px; right: -100px;
  background: var(--lcb-sky-blue);
}
.lcb-blob-2 {
  width: 300px; height: 300px;
  bottom: 50px; left: -80px;
  background: var(--lcb-light-blue);
  animation-delay: -10s;
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
}
@keyframes lcb-blob-morph {
  0%,100% { border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%; transform: scale(1); }
  25% { border-radius: 60% 50% 40% 50% / 40% 50% 60% 50%; transform: scale(1.05); }
  50% { border-radius: 40% 60% 50% 40% / 60% 40% 50% 60%; transform: scale(0.95); }
  75% { border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%; transform: scale(1.03); }
}

/* ═══════════════════════════════════════════════
   LAYOUT-SPECIFIC OVERRIDES via body class
   ═══════════════════════════════════════════════ */

/* ─── ANGULAR: sharp corners, diagonal accents ─── */
.lcb-layout-angular .lcb-stat-card,
.lcb-layout-angular .lcb-mv-card,
.lcb-layout-angular .lcb-team-card,
.lcb-layout-angular .lcb-gallery-card {
  border-radius: 4px;
}
.lcb-layout-angular .lcb-btn,
.lcb-layout-angular .lcb-btn-cta,
.lcb-layout-angular .lcb-btn-order,
.lcb-layout-angular .lcb-btn-send,
.lcb-layout-angular .lcb-filter-btn {
  border-radius: 4px !important;
}
.lcb-layout-angular .lcb-mv-card {
  border-left: 4px solid var(--lcb-light-blue);
  border-top: none;
}
.lcb-layout-angular .lcb-mv-card:hover {
  transform: translateX(0) translateY(-4px);
}
.lcb-layout-angular .lcb-stat-card {
  border-top: 3px solid rgba(255,255,255,0.2);
}
.lcb-layout-angular .lcb-page-hero {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 160px;
}
.lcb-layout-angular .lcb-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--lcb-light-blue);
  margin-top: 16px;
}

/* ─── CURVED: extra round, organic feel ─── */
.lcb-layout-curved .lcb-stat-card,
.lcb-layout-curved .lcb-team-card {
  border-radius: 24px;
}
.lcb-layout-curved .lcb-mv-card {
  border-radius: 20px;
  border-left: none;
  border-top: 4px solid var(--lcb-light-blue);
}
.lcb-layout-curved .lcb-mv-card:hover {
  transform: translateX(0) translateY(-6px);
}
.lcb-layout-curved .lcb-btn,
.lcb-layout-curved .lcb-btn-cta,
.lcb-layout-curved .lcb-btn-send {
  border-radius: 50px !important;
}
.lcb-layout-curved .lcb-gallery-card {
  border-radius: 24px;
}
.lcb-layout-curved .lcb-about-card {
  border-radius: 32px;
}
.lcb-layout-curved .lcb-page-hero {
  border-radius: 0 0 50% 50% / 0 0 8% 8%;
  padding-bottom: 140px;
}

/* ─── MINIMAL: flat, no shadows, clean lines ─── */
.lcb-layout-minimal .lcb-stat-card,
.lcb-layout-minimal .lcb-mv-card,
.lcb-layout-minimal .lcb-team-card,
.lcb-layout-minimal .lcb-gallery-card {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--lcb-pale-blue);
}
.lcb-layout-minimal .lcb-mv-card {
  border-left: 3px solid var(--lcb-light-blue);
}
.lcb-layout-minimal .lcb-btn,
.lcb-layout-minimal .lcb-btn-cta,
.lcb-layout-minimal .lcb-btn-order,
.lcb-layout-minimal .lcb-btn-send,
.lcb-layout-minimal .lcb-filter-btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.lcb-layout-minimal .lcb-btn-order {
  animation: none !important;
}
.lcb-layout-minimal .lcb-stat-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: none;
}
.lcb-layout-minimal .lcb-stat-card:hover {
  background: rgba(255,255,255,0.05);
  transform: none;
}
.lcb-layout-minimal .lcb-team-card:hover,
.lcb-layout-minimal .lcb-mv-card:hover,
.lcb-layout-minimal .lcb-gallery-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--lcb-light-blue);
}
.lcb-layout-minimal .lcb-about-card {
  border-radius: 0;
}
.lcb-layout-minimal .lcb-team-avatar {
  border-radius: 8px;
}
.lcb-layout-minimal .lcb-section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lcb-layout-minimal .lcb-page-hero {
  padding-bottom: 80px;
}
/* Minimal: divider is just a centered thin line */
.lcb-layout-minimal .lcb-wave-bottom,
.lcb-layout-minimal .lcb-wave-lines,
.lcb-layout-minimal .lcb-bubbles {
  display: none;
}

/* ─── WAVE: original styles are the default, no overrides needed ─── */

/* ═══════════════════════════════════════════════
   RESPONSIVE for layout-specific shapes
   ═══════════════════════════════════════════════ */
@media(max-width:768px) {
  .lcb-layout-angular .lcb-page-hero { clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); padding-bottom: 120px; }
  .lcb-layout-curved .lcb-page-hero { border-radius: 0 0 50% 50% / 0 0 5% 5%; padding-bottom: 100px; }
  .lcb-divider--wave svg { height: 60px; }
  .lcb-divider--angular svg { height: 50px; }
  .lcb-divider--curved svg { height: 50px; }
}

/* ═══════════════════════════════════════════════
   PARALLAX BANNER
   ═══════════════════════════════════════════════ */
.lcb-parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.lcb-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--lcb-deep-blue), var(--lcb-dark));
  pointer-events: none;
}
.lcb-parallax-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 40px;
}
.lcb-parallax-heading {
  font-family: var(--lcb-font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--lcb-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.lcb-parallax-heading em {
  font-style: normal;
  color: var(--lcb-sky-blue);
}
.lcb-parallax-text {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
/* Mobile: disable fixed attachment (doesn't work on iOS) */
@media(max-width:768px) {
  .lcb-parallax { background-attachment: scroll; }
  .lcb-parallax-inner { padding: 40px 20px; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP CHAT BUTTON
   ═══════════════════════════════════════════════ */
.lcb-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: lcb-chat-pulse 3s ease-in-out infinite;
}
.lcb-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}
.lcb-whatsapp-right { right: 28px; }
.lcb-whatsapp-left { left: 28px; }
.lcb-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
@keyframes lcb-chat-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}
/* Tooltip */
.lcb-whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  background: var(--lcb-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--lcb-font-heading);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.lcb-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--lcb-dark);
}
.lcb-whatsapp-btn:hover .lcb-whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}
@media(max-width:768px) {
  .lcb-whatsapp-btn { width: 52px; height: 52px; bottom: 20px; }
  .lcb-whatsapp-right { right: 20px; }
  .lcb-whatsapp-left { left: 20px; }
  .lcb-whatsapp-btn svg { width: 28px; height: 28px; }
  .lcb-whatsapp-tooltip { display: none; }
}
