/* ===== BRAND VARIABLES ===== */
:root {
  --bg: #F7F5FA;
  --bg2: #EDE9F4;
  --bg3: #E4DFF0;
  --bg4: #D9D3E9;
  --surface: #FFFFFF;
  --border: rgba(79,74,115,0.1);
  --border-strong: rgba(79,74,115,0.2);
  --text: #1A1730;
  --text2: #4A4565;
  --text3: #9490B0;
  --card-bg: #FFFFFF;
  --nav-bg: rgba(247,245,250,0.95);
  --section-alt: #EDE9F4;
  --impact-bg: #1A1730;
  --crimson: #D62C55;
  --slate: #64608B;
  --navy: #4F4A73;
  --lavender: #DCCBE6;
  --lavender-light: #E8DDED;
  --crimson-dim: rgba(214,44,85,0.12);
  --slate-dim: rgba(100,96,139,0.12);
  --transition: 0.32s cubic-bezier(.4,0,.2,1);
  --accent: var(--crimson);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
section { position: relative; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 4px; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo .logo-mark {
  height: 64px;
  width: auto; 
  max-width: 250px; 
  object-fit: contain; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active, .mobile-menu a.active { 
  color: var(--crimson); 
}
.nav-links a.active, .mobile-menu a.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-actions { display: flex; align-items: center; gap: 24px; }

.nav-actions .nav-cta, .mobile-nav-cta {
  background: linear-gradient(135deg, var(--crimson) 0%, #64608B 100%);
  color: #ffffff;
  padding: 10px 24px; 
  border-radius: 6px; 
  font-size: 12px; 
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(214, 44, 85, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-actions .nav-cta:hover, .mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 44, 85, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--crimson); }
.mobile-nav-cta {
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 16px 0;
  margin-top: 16px;
  width: 100%;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* DROPDOWN & ACCORDION */
.dropdown-item { position: relative; }
.dropdown-toggle { gap: 3px; }
.dropdown-item .dropdown-arrow { transition: transform 0.3s ease-in-out; }
.dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--surface);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 200px;
  list-style: none;
  padding: 12px 0; margin: 0; 
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); 
}
.dropdown-menu li a { display: block; padding: 10px 24px; font-size: 12px; }
.dropdown-menu li a:hover { color: var(--crimson); }
.dropdown-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item:hover .dropdown-arrow { transform: rotate(180deg); }

.mobile-accordion { border-bottom: 1px solid var(--border); }
.mobile-accordion-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; padding: 12px 0;
  font-family: inherit; font-size: 15px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text2); cursor: pointer; text-align: left;
  transition: color 0.3s ease;
}
.mobile-accordion-toggle:hover { color: var(--crimson); }
.mobile-accordion-arrow { transition: transform 0.3s ease; }
.mobile-accordion-content {
  display: flex; flex-direction: column; gap: 8px;
  padding-left: 16px; padding-top: 8px; 
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.mobile-accordion-content a {
  width: 100%; padding: 8px 0; font-size: 14px;
  border-bottom: none; opacity: 0; 
  transform: translateY(-10px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-accordion.is-open .mobile-accordion-arrow { transform: rotate(180deg); }
.mobile-accordion.is-open .mobile-accordion-toggle { color: var(--crimson); }
.mobile-accordion.is-open .mobile-accordion-content a { opacity: 1; transform: translateY(0); }


/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #1A1730;
}
.hero-slider { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slider .slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transform: scale(1); z-index: 1;
  transition: opacity 1.5s ease-in-out; 
  will-change: transform, opacity;
}
.hero-slider .slide.active {
  opacity: 1; transform: scale(1); z-index: 2;
  transition: opacity 1.5s ease-in-out, transform 8s linear; 
}
.hero-slider.is-loaded .slide.active { transform: scale(1.1); }
.hero-slider .slide.fading {
  opacity: 0; transform: scale(1.08); z-index: 2;
  transition: opacity 1.5s ease-in-out, transform 1.5s linear; 
}
.slider-overlay { position: absolute; inset: 0; background: rgba(26, 23, 48, 0.6); z-index: 3; }
.hero-texture, .hero-ink-left, .hero-ink-right { z-index: 1; }
.hero-texture {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(220,203,230,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(220,203,230,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-ink-left {
  position: absolute; left: -180px; top: 10%; width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,74,115,0.22) 0%, transparent 65%); border-radius: 50%; filter: blur(2px);
}
.hero-ink-right {
  position: absolute; right: -80px; top: 30%; width: 480px; height: 480px;
  background: radial-gradient(ellipse, rgba(214,44,85,0.1) 0%, transparent 65%); border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 2; max-width: 1320px;
  margin: 0 auto; padding: 130px 32px 90px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-text { width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--crimson);
  margin-bottom: 26px; animation: fadeInUp 0.5s ease both;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--crimson); }
.hero-title {
  font-size: clamp(52px, 7vw, 92px); color: #ffffff;
  margin-bottom: 16px; text-transform: uppercase;
}
.hero-title .hl, .hero-subtitle .hl { color: var(--crimson); }
.hero-title .dim, .hero-subtitle .dim { 
  color: var(--crimson); font-weight: 400; font-style: italic; 
  font-family: 'DM Serif Display', serif; text-transform: none; 
}
.hero-title .dim { font-size: 0.85em; }
.hero-subtitle { font-size: clamp(24px, 3.5vw, 42px); color: #e0e0e0; margin-bottom: 28px; text-transform: uppercase; }
.hero-subtitle .dim { font-size: 0.9em; }

/* Typing Animation */
.type-line { display: inline-block; clip-path: inset(0 100% 0 0); margin-right: 8px; }
.line-1 { animation: typeClip 0.7s steps(12, end) 0.5s forwards; }
.line-2 { animation: typeClip 0.7s steps(14, end) 1.2s forwards; }
.line-3 { animation: typeClip 0.7s steps(13, end) 1.9s forwards; }
@keyframes typeClip { 0% { clip-path: inset(0 100% 0 0); } 100% { clip-path: inset(0 0% 0 0); } }

/* SHARED BUTTONS */
.btn-primary, .btn-secondary, .btn-white, .btn-outline-white {
  padding: 14px 30px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; line-height: 1; border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-primary { background: linear-gradient(135deg, #D62C55 0%, #64608B 100%); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(214,44,85,0.28); opacity: 0.9; }
.btn-secondary { background: transparent; color: var(--surface); border: 1px solid rgba(220,203,230,0.2); }
.btn-secondary:hover { border-color: rgba(220,203,230,0.45); color: #ffffffc6; background: rgba(220,203,230,0.05); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.6s 2.6s ease both; margin-top: 60px; }
.btn-icon { display: block; transition: transform 0.3s ease; }
.btn-primary:hover .btn-icon { transform: translateX(4px); }
.btn-primary { animation: scalePulseBtn 1.5s infinite ease-in-out; animation-delay: 3.2s; }
.btn-secondary { animation: scalePulseSecondary 1.5s infinite ease-in-out; animation-delay: 3.95s; }
.btn-primary:hover, .btn-secondary:hover { animation-play-state: paused; }

@keyframes scalePulseBtn { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(214, 44, 85, 0); } 50% { transform: scale(1.12); box-shadow: 0 10px 25px rgba(214, 44, 85, 0.5); } }
@keyframes scalePulseSecondary { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 255, 255, 0); } 50% { transform: scale(1.12); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3); } }
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }

/* ===== REUSABLE SECTIONS ===== */
.page-hero { position: relative; width: 100%; min-height: 60vh; display: flex; align-items: flex-end; justify-content: center; text-align: center; padding: 80px 20px 0px; overflow: hidden; }
.hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: bottom; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.95) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; }
.section-container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--crimson); }
.section-title { font-size: clamp(30px, 4.5vw, 54px); text-transform: uppercase; margin-bottom: 16px; }
.section-subtitle { font-size: 15.5px; color: var(--text2); max-width: 540px; line-height: 1.75; margin-bottom: 56px; }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== PROCESS ===== */
#process { padding: 110px 32px; background: var(--bg); }
.process-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 88px; align-items: center; }
.process-steps-list { display: flex; flex-direction: column; gap: 0; }
.process-item { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--border); transition: background-color 0.3s; }
.process-item:last-child { border-bottom: none; }
.process-item:hover .proc-icon { background: var(--crimson); color: #fff; border-color: var(--crimson); transform: translateY(-3px); }
.process-item:hover .proc-icon svg { transform: scale(1.1); }
.proc-num { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: var(--crimson); letter-spacing: 0.1em; min-width: 26px; padding-top: 6px; }
.proc-icon { width: 52px; height: 52px; border: 1px solid var(--border-strong); border-radius: 10px; display: grid; place-items: center; color: var(--crimson); flex-shrink: 0; transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease; background: var(--bg2); }
.proc-icon svg { width: 24px; height: 24px; transition: transform 0.4s ease; }
.proc-content h4 { font-size: 20px; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.proc-content p { font-size: 14px; color: var(--text2); line-height: 1.65; margin: 0; }
.process-image-wrapper, .about-image-wrapper { position: relative; border-radius: 16px; z-index: 1; }
.process-image-wrapper::before, .about-image-wrapper::before { content: ''; position: absolute; inset: -15px 15px 15px -15px; border: 2px solid var(--crimson); border-radius: 16px; z-index: -1; transition: transform 0.4s ease; }
.process-image-wrapper:hover::before, .about-image-wrapper:hover::before { transform: translate(5px, -5px); }
.process-image, .about-main-image { width: 100%; height: auto; min-height: 500px; display: block; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

/* ===== PRODUCTS & SERVICES (SHARED CARD LOGIC) ===== */
#products, #services, #why { padding: 110px 32px; background: var(--section-alt); }
#services { background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.product-card, .service-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; cursor: pointer; text-decoration: none; color: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.product-card:hover, .service-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.product-img-wrap { height: 160px; background: linear-gradient(135deg, var(--bg3) 0%, var(--bg4) 100%); position: relative; overflow: hidden; }
.product-image { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.4s ease; }
.product-card:hover .product-image { transform: scale(1.05); }
.product-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, var(--card-bg), transparent); }
.product-tag { position: absolute; top: 14px; left: 14px; background: linear-gradient(135deg, #D62C55 0%, #64608B 100%); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 11px; border-radius: 3px; z-index: 2; }
.product-body { padding: 28px 28px 32px; flex: 1; }
.product-name, .service-title { font-size: 22px; text-transform: uppercase; margin-bottom: 10px; }
.service-title { font-size: 20px; }
.product-desc, .service-desc { font-size: 13.5px; color: var(--text2); line-height: 1.65; margin-bottom: 18px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.spec-chip { font-size: 10.5px; font-weight: 700; background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 3px 10px; color: var(--text3); text-transform: uppercase; }
.product-benefits { display: flex; flex-direction: column; gap: 6px; }
.benefit-item { font-size: 13px; color: var(--text2); display: flex; align-items: flex-start; gap: 9px; }
.benefit-item::before { content: '—'; color: var(--crimson); font-weight: 700; flex-shrink: 0; }

.section-header-wrapper { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; }
.section-header-left { max-width: 650px; }
.section-header-left .section-subtitle { margin-bottom: 0; }

.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #D62C55, #64608B); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; z-index: 2; }
.service-card:hover::after { transform: scaleX(1); }
.service-image-banner { width: 100%; height: 220px; overflow: hidden; }
.service-image-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.service-card:hover .service-image-banner img { transform: scale(1.08); }
.service-content { padding: 30px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.service-icon { width: 48px; height: 48px; margin-bottom: 20px; display: flex; align-items: center; justify-content: flex-start; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.service-card:hover .service-icon img { transform: scale(1.08); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section { padding: 80px 20px; background-color: #fcfcfc; }
.product-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.product-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-content: start; }
.product-gallery .gallery-img:first-child { grid-column: span 4; height: 400px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.gallery-img { width: 100%; height: 90px; object-fit: cover; border-radius: 6px; border: 1px solid #eaeaea; transition: transform 0.3s ease, border-color 0.3s ease; }
.gallery-img:hover { transform: translateY(-2px); border-color: #D62C55; }
.detail-title { font-size: 42px; text-transform: uppercase; color: #222; margin-bottom: 16px; line-height: 1.1; }
.detail-lead { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 32px; }
.detail-heading { font-size: 24px; text-transform: uppercase; color: #333; margin-bottom: 16px; border-bottom: 2px solid #eaeaea; padding-bottom: 8px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin-bottom: 20px; }
.specs-table th, .specs-table td { padding: 14px 16px; border-bottom: 1px solid #eaeaea; text-align: left; }
.specs-table th { width: 40%; background-color: #f9f9f9; color: #444; }
.specs-table td { color: #666; }
.specs-table tr:hover td, .specs-table tr:hover th { background-color: #f1f1f1; }
.product-bottom-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.detail-card { background: #fff; border: 1px solid #eaeaea; border-radius: 8px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.detail-card p, .rich-text-content { font-size: 15px; color: #555; line-height: 1.7; }
.rich-text-content ul { padding-left: 20px; margin-top: 10px; }
.rich-text-content li { margin-bottom: 8px; }

/* --- Breadcrumbs --- */
.breadcrumb-nav { 
  font-size: 14px; 
  color: #666; 
  margin-bottom: 30px; 
  display: flex; 
  align-items: center; 
}
.breadcrumb-nav a { 
  color: var(--crimson); 
  text-decoration: none; 
  font-weight: 500; 
  transition: color 0.3s; 
}
.breadcrumb-nav a:hover { 
  color: #64608B; 
}
.breadcrumb-nav .separator { 
  margin: 0 10px; 
  color: #bbb; 
  font-size: 12px; 
}
.breadcrumb-nav .current { 
  color: #999; 
  font-weight: 400; 
}

.interactive-gallery { display: flex; flex-direction: column; gap: 16px; }
.main-image-container { width: 100%; height: 450px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.main-img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.15s ease-in-out; }
.thumbnail-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.thumb-img { width: 100%; height: 90px; object-fit: cover; border-radius: 6px; border: 2px solid transparent; cursor: pointer; transition: all 0.3s ease; }
.thumb-img:hover { transform: translateY(-2px); border-color: #D62C55; opacity: 0.8; }
.detail-category-tag { display: inline-block; background: linear-gradient(135deg, #D62C55 0%, #64608B 100%); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.quick-benefits { background-color: #fcfcfc; border-left: 4px solid #D62C55; padding: 16px 20px; margin-bottom: 24px; border-radius: 0 6px 6px 0; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.benefits-list li { font-size: 14.5px; color: #444; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.benefits-list li svg { flex-shrink: 0; }

/* ===== ABOUT PAGE (GLASSMORPHISM) ===== */
.about-story-section { padding: 100px 32px; background: #ffffff; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.about-text p { font-size: 15.5px; color: var(--text2); line-height: 1.8; margin-bottom: 20px; }

.mission-vision-section { padding: 110px 32px; position: relative; overflow: hidden; background-color: #111118; background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px); background-size: 32px 32px; }
.mv-glow-accent { position: absolute; top: -20%; left: 20%; width: 60%; height: 140%; background: radial-gradient(circle, rgba(214, 44, 85, 0.18) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.mv-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; position: relative; z-index: 1; }
.mv-card {
  padding: 50px 45px; border-radius: 16px; position: relative; overflow: hidden;
  background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05); border-top: 1px solid rgba(255, 255, 255, 0.15); border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform, box-shadow;
}
.mv-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(214, 44, 85, 0.15); border-top-color: rgba(214, 44, 85, 0.5); }
.mv-icon { width: 54px; height: 54px; color: var(--crimson); margin-bottom: 24px; background: rgba(214, 44, 85, 0.08); padding: 12px; border-radius: 12px; }
.mv-card h3 { font-size: 30px; text-transform: uppercase; margin-bottom: 16px; color: #ffffff; }
.mv-card p { color: rgba(255, 255, 255, 0.75); line-height: 1.75; font-size: 16px; }
.mission-points-list { display: flex; flex-direction: column; gap: 25px; }
.mission-point-item { position: relative; padding-left: 55px; }
.mission-point-item h4 { font-size: 20px; text-transform: uppercase; margin-bottom: 6px; color: var(--card-bg); }
.mission-point-item p { font-size: 15.5px; color: rgba(255, 255, 255, 0.7); }
.point-number { position: absolute; top: 0; left: 0; width: 40px; height: 40px; background-color: var(--crimson); color: #ffffff; font-size: 22px; display: flex; align-items: center; justify-content: center; border-radius: 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

.core-values-section { padding: 100px 32px; background-color: var(--bg); background-image: radial-gradient(at 0% 0%, rgba(214, 44, 85, 0.05) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(100, 96, 139, 0.08) 0px, transparent 50%); position: relative; overflow: hidden; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.value-glass-card {
  padding: 40px 35px; border-radius: 16px; background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8); border-top: 1px solid rgba(255, 255, 255, 1); border-left: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}
.value-glass-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.85); box-shadow: 0 20px 40px rgba(214, 44, 85, 0.08); border-color: rgba(214, 44, 85, 0.2); }
.value-header { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.value-number { width: 42px; height: 42px; background-color: var(--crimson); color: var(--card-bg); font-size: 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; box-shadow: 0 4px 10px rgba(168, 240, 234, 0.4); }
.value-glass-card h4 { font-size: 26px; color: var(--impact-bg); margin: 0; }
.value-glass-card p { color: #555555; font-size: 16px; line-height: 1.6; margin: 0; }

/* ===== WHY US & METRICS ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 2px; }
.why-item { display: flex; gap: 20px; padding: 22px 20px; border-radius: 8px; border: 1px solid transparent; transition: border-color 0.3s ease, background-color 0.3s ease; }
.why-item:hover { border-color: var(--border-strong); background: var(--card-bg); }
.why-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 36px; height: 36px; transition: transform 0.3s ease; }
.why-item:hover .why-icon svg { transform: scale(1.1); }
.why-item:nth-child(1) .why-icon { color: #f59e0b; } .why-item:nth-child(2) .why-icon { color: #3b82f6; } .why-item:nth-child(3) .why-icon { color: #10b981; } .why-item:nth-child(4) .why-icon { color: var(--crimson); }
.why-content h4 { font-size: 18px; text-transform: uppercase; margin-bottom: 5px; }
.why-content p { font-size: 13.5px; color: var(--text2); line-height: 1.65; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-metric-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 28px 22px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.why-metric-card:first-child { grid-column: span 2; background: linear-gradient(135deg, #D62C55 0%, #4F4A73 100%); color: #fff; border-color: transparent; }
.why-metric-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.metric-num { font-size: 52px; color: var(--crimson); line-height: 1; margin-bottom: 6px; }
.why-metric-card:first-child .metric-num { color: #fff; }
.metric-label { font-size: 12px; color: var(--text2); font-weight: 500; }
.why-metric-card:first-child .metric-label { color: rgba(255,255,255,0.75); }

/* ===== INDUSTRIES & IMPACT ===== */
#industries { padding: 110px 32px; background: var(--bg); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.industry-card { padding: 36px 20px; background: var(--card-bg); text-align: center; transition: background 0.3s ease; }
.industry-card:hover { background: var(--bg2); }
.industry-icon { justify-content: center; margin-bottom: 14px; align-items: center; display: flex; }
.industry-icon svg { width: 42px; height: 42px; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.industry-card:hover .industry-icon svg { transform: scale(1.15) translateY(-4px); }
.industry-card:nth-child(1) .industry-icon { color: #10b981; } .industry-card:nth-child(2) .industry-icon { color: #3b82f6; } .industry-card:nth-child(3) .industry-icon { color: #f59e0b; } .industry-card:nth-child(4) .industry-icon { color: #8b5cf6; } .industry-card:nth-child(5) .industry-icon { color: #14b8a6; } .industry-card:nth-child(6) .industry-icon { color: var(--crimson); }
.industry-name { font-size: 15px; text-transform: uppercase; }
.industry-desc { font-size: 11.5px; color: var(--text2); margin-top: 5px; line-height: 1.4; }

#impact { padding: 110px 32px; background: var(--impact-bg); position: relative; overflow: hidden; }
.impact-bg-texture { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(79,74,115,0.2) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 80% 50%, rgba(214,44,85,0.08) 0%, transparent 60%); }
.impact-inner { position: relative; z-index: 2; }
.impact-header { text-align: center; margin-bottom: 64px; }
.impact-header .section-label { justify-content: center; } .impact-header .section-label::before { display: none; }
.impact-header .section-title { color: #fff; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(220,203,230,0.06); border: 1px solid rgba(220,203,230,0.06); border-radius: 10px; overflow: hidden; margin-bottom: 56px; }
.impact-item { background: rgba(255,255,255,0.02); padding: 52px 28px; text-align: center; transition: background 0.3s ease; }
.impact-item:hover { background: rgba(255,255,255,0.04); }
.impact-num { font-size: 60px; color: var(--crimson); line-height: 1; margin-bottom: 10px; }
.impact-label { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }
.impact-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

#cta { padding: 110px 32px; background: var(--section-alt); }
.cta-card { background: linear-gradient(135deg, #D62C55 0%, #4F4A73 50%, #64608B 100%); border-radius: 12px; padding: 80px 72px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 48px 48px; }
.cta-content { position: relative; z-index: 2; }
.cta-title { font-size: clamp(32px, 4.5vw, 56px); color: #fff; margin-bottom: 18px; text-transform: uppercase; }
.cta-subtitle { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 44px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== BEAM 2 BEAM SECTION ===== */
.bbf-section { padding: 100px 32px; background: var(--bg); }
.bbf-section.alt { background: var(--bg2); }
.bbf-container { max-width: 1200px; margin: 0 auto; }
.bbf-header { font-size: 42px; text-transform: uppercase; color: var(--text); margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.bbf-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--crimson); }
.bbf-header.center { text-align: center; }
.bbf-header.center::after { left: 50%; transform: translateX(-50%); }
.bbf-text { font-size: 16px; line-height: 1.8; color: var(--text2); margin-bottom: 20px; }
.bbf-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.highlight-box { background: var(--surface); border-left: 4px solid var(--crimson); padding: 30px; border-radius: 0 8px 8px 0; box-shadow: 0 10px 30px rgba(79,74,115,0.05); }
.tech-images-wrapper { display: flex; flex-direction: column; gap: 40px; margin-top: 60px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.tech-image { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.advantage-card { background: var(--card-bg); padding: 30px 24px; border-radius: 10px; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.advantage-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(79,74,115,0.08); border-color: var(--border-strong); }
.adv-icon { width: 48px; height: 48px; background: var(--crimson-dim); color: var(--crimson); display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 20px; }
.adv-icon svg { width: 24px; height: 24px; }
.adv-title { font-size: 22px; color: var(--text); text-transform: uppercase; margin-bottom: 12px; }
.adv-desc { font-size: 14.5px; color: var(--text2); line-height: 1.6; margin: 0; }
.closing-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--impact-bg) 100%); color: var(--surface); padding: 80px 32px; text-align: center; border-top: 4px solid var(--crimson); }
.closing-banner .bbf-header { color: var(--surface); }
.closing-banner .bbf-text { color: rgba(255, 255, 255, 0.85); max-width: 800px; margin: 0 auto 20px; }

/* ===== GALLERY SECTION ===== */
.gallery-section { position: relative; overflow: hidden; padding: 60px 0; }
.gallery-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(98, 98, 98, 0.65); z-index: 1; }
.gallery-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 20px; width: 100%; align-items: center; }
.gallery-container img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; }

/* ===== TESTIMONIALS (GPU ACCELERATED) ===== */
.testimonials-section { background: var(--section-alt); padding: 80px 0; overflow-x: hidden; }
.testimonial-carousel { position: relative; width: 100%; min-height: 350px; margin-top: 40px; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.carousel-track { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
.testimonial-card {
  position: absolute; width: 450px; max-width: 60%; padding: 40px; border-radius: 20px;
  background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); opacity: 0; z-index: 1; cursor: pointer;
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out, z-index 1.5s ease-in-out, filter 1.5s ease-in-out;
  will-change: transform, opacity, filter;
}
.stars { color: var(--crimson); font-size: 1.3rem; margin-bottom: 20px; }
.quote { font-style: italic; font-size: 1.1rem; color: var(--text); margin-bottom: 25px; }
.separator { height: 1px; background: var(--border-strong); margin-bottom: 25px; }
.client-info { display: flex; align-items: center; gap: 15px; }
.avatar.initial-avatar { width: 60px; height: 60px; border-radius: 50%; background-color: var(--crimson); color: #ffffff; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2rem; }
.details .name { font-weight: 600; font-size: 1rem; color: var(--text); }
.details .title, .details .location { font-size: 0.9rem; color: var(--text); }
.testimonial-card.active { opacity: 1; transform: translateZ(100px) scale(1); z-index: 10; filter: none; }
.testimonial-card.prev { opacity: 0.5; transform: translateX(-65%) translateZ(0) scale(0.85); z-index: 5; filter: blur(2px); }
.testimonial-card.next { opacity: 0.5; transform: translateX(65%) translateZ(0) scale(0.85); z-index: 5; filter: blur(2px); }

/* ===== FAQ ===== */
#faq { padding: 100px 32px; position: relative; overflow: hidden; }
.faq-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.faq-bg-overlay { position: absolute; inset: 0; background: rgba(17, 17, 24, 0.85); z-index: 1; }
#faq .section-container { position: relative; z-index: 2; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; margin-bottom: 12px; overflow: hidden; transition: background-color 0.3s ease, border-color 0.3s ease; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.faq-item:hover { background: rgba(255, 255, 255, 0.08); }
.faq-item.open { border-color: rgba(214, 44, 85, 0.4); background: rgba(255, 255, 255, 0.1); }
.faq-question { padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 18px; text-transform: uppercase; color: var(--card-bg); }
.faq-toggle { width: 28px; height: 28px; border: 1px solid var(--border-strong); border-radius: 50%; display: grid; place-items: center; transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease; flex-shrink: 0; color: var(--crimson); }
.faq-toggle svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--crimson); border-color: var(--crimson); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; font-size: 14.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 24px; }

/* ===== COMPLETED PROJECTS ===== */
#completed-projects { padding: 60px 20px; background-color: #ffffff; }
.completed-projects-container { max-width: 1200px; margin: 0 auto; }
.completed-projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr)); gap: 40px; }
.completed-project-card { background-color: #f8f8f8; border-radius: 4px; overflow: hidden; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease; }
.completed-project-card:hover { transform: translateY(-5px); }
.completed-project-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--bg2, #EDE9F4);
}
.completed-project-img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  object-position: center;
  display: block; 
  border-bottom: 2px solid #eaeaea; 
}
.completed-project-caption { padding: 25px 20px; text-align: center; background-color: #f2f2f2; }
.completed-project-caption h3 { font-family: 'Georgia', 'Times New Roman', serif; font-style: italic; font-size: 1.3rem; color: #1a1a1a; margin: 0; line-height: 1.4; letter-spacing: 0.5px; }
.empty-completed-projects { grid-column: 1 / -1; text-align: center; padding: 50px; color: var(--text2); font-size: 1.2rem; }

/* ===== CONTACT & FORMS ===== */
#contact { padding: 110px 32px; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 88px; align-items: start; }
.contact-info h2 { font-size: 40px; margin-bottom: 14px; text-transform: uppercase; }
.contact-info p { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 15px; }
.cd-icon { width: 42px; height: 42px; background: rgba(214,44,85,0.08); border: 1px solid rgba(214,44,85,0.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--crimson); }
.cd-icon svg { width: 20px; height: 20px; }
.cd-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text3); margin-bottom: 3px; }
.cd-value { font-size: 15px; font-weight: 600; }

.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 44px; }
.contact-form h3, .quote-panel h3 { font-size: 24px; text-transform: uppercase; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text2); }
.form-field input, .form-field select, .form-field textarea { background: var(--bg); border: 1px solid var(--border-strong); border-radius: 6px; padding: 12px 14px; font-size: 14px; color: var(--text); font-family: inherit; transition: border-color 0.3s ease, box-shadow 0.3s ease; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(214,44,85,0.08); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: linear-gradient(135deg, #D62C55 0%, #64608B 100%); color: #fff; padding: 14px; border-radius: 6px; font-size: 15px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s; margin-top: 6px; font-family: 'Barlow Condensed', sans-serif; }
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(214,44,85,0.22); }
.error-text { color: #EF4444; font-size: 11px; margin-top: 4px; display: none; }
.error-text.active { display: block; }
.form-field input.invalid, .form-field textarea.invalid, .form-field select.invalid { border-color: #EF4444 !important; }

/* Quote Panel */
.quote-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(3px); z-index: 9998; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.quote-overlay.active { opacity: 1; visibility: visible; }
.quote-panel { position: fixed; top: 0; right: 0; width: 100%; max-width: 480px; height: 100dvh; background: var(--card-bg); z-index: 9999; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); overflow-y: auto; padding: 40px 30px 80px; border-left: 1px solid var(--border); will-change: transform; }
.quote-panel.active { transform: translateX(0); }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.panel-header h3 { margin-bottom: 0; }
.close-btn { background: none; border: none; font-size: 28px; color: var(--text); cursor: pointer; transition: color 0.2s; }
.close-btn:hover { color: var(--crimson); }
.file-input-hidden { display: none; }
.custom-file-input { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border-strong); border-radius: 6px; padding: 4px 8px; min-height: 44px; cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s; }
.custom-file-input:hover, .custom-file-input:focus-within { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(214,44,85,0.08); }
.file-btn { background: transparent; color: var(--text); border: 1px solid var(--border-strong); padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; transition: background 0.3s, border-color 0.3s, color 0.3s; white-space: nowrap; }
.custom-file-input:hover .file-btn { background: rgba(214,44,85,0.05); border-color: var(--crimson); color: var(--crimson); }
.file-name { font-size: 13px; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }

/* --- TOAST NOTIFICATIONS --- */
.toast-container { 
  position: fixed; 
  top: 20px; 
  right: 20px; 
  z-index: 10000; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}
.toast { 
  min-width: 300px; 
  padding: 16px 20px; 
  border-radius: 6px; 
  color: white; 
  font-family: 'Barlow', sans-serif; 
  font-size: 14px; 
  position: relative; 
  overflow: hidden; 
  transform: translateX(120%); 
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}
.toast.show { 
  transform: translateX(0); 
}
.toast.success { 
  background: #10B981; 
}
.toast.error { 
  background: #EF4444; 
}
.toast.info { 
  background: #3B82F6; 
}
.toast-progress { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  height: 3px; 
  background: rgba(255,255,255,0.7); 
  width: 100%; 
}

/* ===== BLOG ===== */
.blog-grid-section, .blog-detail-wrapper { padding: 80px 32px; background-color: var(--nav-bg); }
.blog-container { max-width: 1320px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.blog-card { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; position: relative; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); }
.blog-card-image { position: relative; height: 240px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-date { position: absolute; top: 16px; left: 16px; background: var(--crimson); color: #ffffff; padding: 8px 16px; border-radius: 6px; text-align: center; display: flex; flex-direction: column; box-shadow: 0 4px 12px rgba(214, 44, 85, 0.3); }
.date-day { font-size: 20px; font-weight: 700; line-height: 1; }
.date-month { font-size: 12px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; margin-top: 4px; }
.blog-card-content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; color: var(--text); }
.blog-excerpt { font-size: 15px; color: var(--text2); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; line-height: 1; font-weight: 600; color: var(--crimson); transition: gap 0.3s ease; align-self: flex-end; }
.blog-read-more svg { display: block; }
.blog-read-more::after { content: ""; position: absolute; inset: 0; z-index: 10; }
.blog-card:hover .blog-read-more { gap: 12px; }
.no-blogs-message { grid-column: 1 / -1; text-align: center; padding: 64px 0; color: var(--text2); }

/* ===== BLOG DETAIL LAYOUT ===== */
.blog-main-content { max-width: 800px; margin: 0 auto; }
.blog-inline-image { width: 100%; margin-bottom: 40px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
.blog-inline-image img { width: 100%; height: auto; max-height: 450px; object-fit: cover; display: block; }
.blog-hero .section-title { color: var(--text, #111111) !important; }
.blog-hero .section-subtitle { color: var(--text2, #555555) !important; }
.blog-meta-top { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 16px; font-weight: 600; }
.meta-divider { color: var(--crimson); font-size: 18px; }
.blog-text { font-size: 18px; line-height: 1.8; color: var(--text); margin-bottom: 64px; }
.blog-text p { margin-bottom: 24px; }
.blog-gallery-section { margin: 64px 0; border-top: 1px solid var(--border); padding-top: 48px; }
.gallery-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: var(--text); }
.blog-detail-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-figure { margin: 0; display: flex; flex-direction: column; }
.gallery-figure img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.gallery-figure figcaption { margin-top: 12px; font-size: 14px; color: var(--text2); text-align: center; font-style: italic; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 24px; }
.share-actions { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text); font-weight: 600; }
.share-btn { display: inline-flex; align-items: center; gap: 4px; background-color: transparent; color: var(--surface); border: 1.5px solid var(--surface); padding: 9px 15px; border-radius: 6px; cursor: pointer; font-family: inherit; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease; }
.share-btn:hover { background-color: var(--crimson); border-color: var(--crimson); color: #ffffff; box-shadow: 0 6px 14px rgba(214, 44, 85, 0.3); }
.share-label { color: var(--surface) !important; font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; color: var(--crimson); transition: transform 0.3s ease; }
.back-link svg { transition: transform 0.3s ease; }
.back-link:hover svg { transform: translateX(-4px); }

/* ===== FOOTER ===== */
footer { background: #1A1730; border-top: 1px solid rgba(220,203,230,0.06); padding: 64px 32px 36px; }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr auto auto; gap: 80px; margin-bottom: 48px; }
.footer-brand .logo-row { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand .footer-logo-img { height: 64px; width: auto; max-width: 250px; object-fit: contain; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--surface); transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--crimson); }
.footer-bottom { border-top: 1px solid rgba(220,203,230,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: var(--surface); }
.footer-credit { font-size: 14px; color: #888; }
.credit-link { color: var(--crimson); font-weight: 600; transition: color 0.3s ease, text-decoration 0.3s; }
.credit-link:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 4px; }
.footer-socials { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.footer-socials a { color: var(--surface); transition: transform 0.3s ease, color 0.3s ease; display: flex; }
.footer-socials a:hover { color: var(--crimson); transform: translateY(-3px); }

/* FLOATING WHATSAPP */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25D366; color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15); z-index: 9999; animation: wa-breathe 3s ease-in-out infinite; transition: transform 0.3s ease, background-color 0.3s ease; }
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.1); background-color: #20BA56; }
@keyframes wa-breathe { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 50% { transform: scale(1.08); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } }

/* --- MAP SECTION --- */
.map-section { margin-top: 10px; margin-bottom: 60px; }
.map-wrapper { width: 100%; height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #1A1730; border-top: 1px solid rgba(220, 203, 230, 0.1); color: #fff; padding: 20px 0; z-index: 9999; box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3); transform: translateY(100%); animation: slideUpBanner 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 1s; }
@keyframes slideUpBanner { to { transform: translateY(0); } }
.cookie-content { max-width: 1320px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); flex: 1; min-width: 300px; }
.cookie-link { color: var(--crimson); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s ease; }
.cookie-link:hover { color: #fff; }
.cookie-buttons { display: flex; gap: 12px; }
.btn-cookie-solid { background: var(--crimson); color: #fff; border: none; padding: 10px 24px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.btn-cookie-solid:hover { background: #b00321; }
.btn-cookie-outline { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); padding: 10px 24px; border-radius: 4px; font-size: 13px; cursor: pointer; transition: border-color 0.3s, background 0.3s; }
.btn-cookie-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }

/* ===== CONSOLIDATED RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .process-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .nav-links, .nav-actions .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid, .mv-grid, .product-top-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image-wrapper, .process-visual { order: -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-card { padding: 40px 30px; }
  .detail-title { font-size: 32px; }
  .bbf-split-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .industries-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .footer-top, .form-grid, .why-visual, .products-grid, .blog-grid, .values-grid { grid-template-columns: 1fr; }
  .why-metric-card:first-child { grid-column: span 1; }
  .section-header-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom, .cookie-content { flex-direction: column; text-align: center; align-items: center; gap: 16px; }
  .cookie-buttons { width: 100%; justify-content: flex-end; }
  .cta-card { padding: 48px 28px; }
  .contact-form { padding: 28px 24px; }
  .value-glass-card { padding: 30px 25px; }
  #process, #products, #services, #why, #industries, #impact, #cta, #contact, #faq { padding-left: 20px; padding-right: 20px; }
  .section-container { padding: 0 20px; }
  
  .testimonial-card { width: 95%; max-width: 500px; padding: 30px 20px; }
  .testimonial-card.prev { opacity: 0; pointer-events: none; transform: translateX(-100%) translateZ(0) scale(0.85); }
  .testimonial-card.next { opacity: 0; pointer-events: none; transform: translateX(100%) translateZ(0) scale(0.85); }
  .testimonial-card.active { opacity: 1; transform: translateZ(100px) scale(1); }

  .gallery-container { grid-template-columns: 1fr; width: 90%; margin: 0 auto; }
  .blog-detail-gallery { grid-template-columns: 1fr; }
  .blog-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .toast-container { left: 0; right: 0; padding: 0 20px; align-items: center; }
  .toast { min-width: unset; width: 100%; transform: translateY(-120%); }
  .toast.show { transform: translateY(0); }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 52px; }
}