/* ==========================================================================
   YOSSI NETGROUP — Premium website styles
   Palette: Orange / Navy / Black / White (matched to brand posters)
   ========================================================================== */

:root {
  --navy-900: #0a0e27;
  --navy-800: #10163a;
  --navy-700: #161f4f;
  --navy-600: #1b2a6b;
  --navy-500: #24378f;

  --orange: #f2600d;
  --orange-light: #ff8a3d;
  --orange-dark: #c9490a;

  --black: #0d0d10;
  --black-soft: #16161b;

  --white: #ffffff;
  --off-white: #f7f7f9;
  --gray-100: #eff0f4;
  --gray-300: #cfd2dd;
  --gray-500: #8b8f9e;
  --gray-700: #4b4f5c;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 8px 24px rgba(10, 12, 25, 0.07);
  --shadow-mid: 0 16px 40px rgba(10, 12, 25, 0.12);
  --shadow-deep: 0 24px 60px rgba(5, 6, 14, 0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section { scroll-margin-top: 80px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 96, 13, 0.08);
  border: 1px solid rgba(242, 96, 13, 0.3);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--gray-700); font-size: 1.02rem; }
.section-head.light p { color: rgba(255,255,255,0.68); }
.section-head.light h2 { color: var(--white); }

section.pad { padding: 100px 0; }
@media (max-width: 768px) { section.pad { padding: 70px 0; } .section-head { margin-bottom: 36px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.36); }

.btn-gold { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242, 96, 13, 0.28); }
.btn-gold:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 14px 30px rgba(242, 96, 13, 0.34); }

.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; border: 1.5px solid rgba(13,13,16,0.18); color: var(--black); }
.btn-outline-dark:hover { background: rgba(13,13,16,0.04); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.06s; }
.reveal-delay-2.visible { transition-delay: 0.12s; }
.reveal-delay-3.visible { transition-delay: 0.18s; }
.reveal-delay-4.visible { transition-delay: 0.24s; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all 0.3s var(--ease); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar.scrolled { padding: 12px 0; background: var(--black); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 800; font-size: 1.22rem; color: var(--white); }
.brand .dot { width: 10px; height: 10px; border-radius: 3px; background: var(--orange); transform: rotate(45deg); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-family: var(--font-head); font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--orange); transition: width 0.25s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.86rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100; }
.burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed; inset: 0; background: var(--black); z-index: 1050;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-100%); transition: transform 0.45s var(--ease);
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--white); }
.mobile-panel .btn { margin-top: 8px; }

@media (max-width: 940px) { .nav-links, .nav-cta { display: none; } .burger { display: flex; } }

/* ==========================================================================
   Hero — flat, bold, poster-inspired
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  background: var(--black);
  overflow: hidden;
  color: var(--white);
}

.hero-shape {
  position: absolute;
  top: -20%; right: -12%;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.9;
  clip-path: circle(50% at 50% 50%);
  mask-image: linear-gradient(135deg, black 30%, transparent 72%);
}

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 800; color: var(--white); margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange-light); }

.hero p.lead { font-size: 1.12rem; color: rgba(255,255,255,0.72); max-width: 540px; margin-bottom: 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero-stats .stat span { font-size: 0.84rem; color: rgba(255,255,255,0.52); }

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

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-deep);
  padding: 32px;
}

.hero-card .glow-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.hero-card .glow-icon svg { width: 28px; height: 28px; stroke: var(--white); }

.hero-card h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 24px; }

.hero-card .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-card .badge-row span { font-size: 0.72rem; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.72); }

.hero-card-stat { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.hero-card-stat b { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange-light); }
.hero-card-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 26px; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }

.about-visual {
  border-radius: var(--radius-lg);
  background: var(--black);
  aspect-ratio: 1/1;
  padding: 34px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.about-visual .av-top { display: flex; justify-content: space-between; align-items: flex-start; }
.about-visual .av-top .tag { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-light); border: 1px solid rgba(242,96,13,0.4); padding: 6px 13px; border-radius: 999px; }
.about-visual .av-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.about-visual .av-grid .cell { background: var(--black-soft); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 18px; color: var(--white); }
.about-visual .av-grid .cell svg { width: 24px; height: 24px; stroke: var(--orange-light); margin-bottom: 12px; }
.about-visual .av-grid .cell b { display:block; font-family: var(--font-head); font-size: 1.45rem; }
.about-visual .av-grid .cell span { font-size: 0.76rem; color: rgba(255,255,255,0.55); }

.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 20px; }
.about-text p { color: var(--gray-700); margin-bottom: 16px; font-size: 1rem; }
.about-list { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 18px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.92rem; color: var(--navy-700); }
.about-list li svg { width: 17px; height: 17px; stroke: var(--orange); flex-shrink: 0; }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--off-white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-mid); border-color: rgba(242,96,13,0.3); }

.service-card .icon-box {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon-box svg { width: 24px; height: 24px; stroke: var(--orange-light); }

.service-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--gray-700); }

@media (max-width: 1080px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Formations
   ========================================================================== */
.formations { background: var(--black); color: var(--white); }

.formation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.formation-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 38px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.formation-card:hover { transform: translateY(-6px); border-color: rgba(242,96,13,0.4); }

.formation-card .f-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.formation-card .f-icon svg { width: 26px; height: 26px; stroke: var(--white); }

.formation-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 8px; }
.formation-card .price { font-family: var(--font-head); font-weight: 700; color: var(--orange-light); font-size: 1.05rem; margin-bottom: 20px; }

.formation-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.formation-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.formation-card ul li svg { width: 17px; height: 17px; stroke: var(--orange-light); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 860px) { .formation-grid { grid-template-columns: 1fr; } .formation-card { padding: 28px; } }

/* 4-card catalogue variant (2x2 on desktop) */
.formation-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 22px; }
.formation-grid-4 .formation-card { padding: 28px; }
.formation-grid-4 .formation-card h3 { font-size: 1.12rem; min-height: 2.7em; }
.formation-grid-4 .formation-card .price { font-size: 0.92rem; margin-bottom: 16px; }
.formation-grid-4 .formation-card ul { gap: 10px; margin-bottom: 22px; }
.formation-grid-4 .formation-card ul li { font-size: 0.86rem; }
@media (max-width: 860px) { .formation-grid-4 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why us
   ========================================================================== */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { text-align: center; padding: 32px 18px; border-radius: var(--radius-md); border: 1px solid var(--gray-100); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-mid); }
.why-card .w-icon { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items:center; justify-content:center; background: rgba(242,96,13,0.08); border: 1px solid rgba(242,96,13,0.28); }
.why-card .w-icon svg { width: 24px; height: 24px; stroke: var(--orange); }
.why-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.why-card p { font-size: 0.84rem; color: var(--gray-700); }

@media (max-width: 1080px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--off-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 18px; }
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item:nth-child(4) { grid-row: span 2; }

.g-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; isolation: isolate; }
.g-item .g-bg { position: absolute; inset: 0; transition: transform 0.5s var(--ease); }
.g-item:hover .g-bg { transform: scale(1.06); }

.g-item.g-carousel .g-bg,
.g-item.g-video-carousel .g-bg { background: var(--black); }
.g-item.g-carousel .g-slide,
.g-item.g-video-carousel .g-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 1s ease-in-out;
}
.g-item.g-carousel .g-slide.active,
.g-item.g-video-carousel .g-slide.active { opacity: 1; }

.g-item.g-logo-carousel .g-bg { background: #f4f4f4; }
.g-item.g-logo-carousel .g-slide { object-fit: contain; padding: 26px; box-sizing: border-box; background: #f4f4f4; }

.g-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.g-item .g-overlay .g-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.14); display: flex; align-items:center; justify-content:center; margin-bottom: 12px; }
.g-item .g-overlay .g-icon svg { width: 19px; height: 19px; stroke: var(--white); }
.g-item .g-overlay h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 3px; }
.g-item .g-overlay span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.g-item.g-ia-illustration .g-bg { display: flex; align-items: flex-start; justify-content: center; padding: 18px 18px 0; }
.ia-mock {
  width: 100%; max-width: 240px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 11px;
}
.ia-mock-head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.ia-avatar { width: 22px; height: 22px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.ia-mock-head b { display: block; color: #fff; font-size: 0.68rem; font-family: var(--font-head); }
.ia-mock-head small { color: rgba(255,255,255,0.5); font-size: 0.58rem; }
.ia-chat { display: flex; flex-direction: column; gap: 6px; min-height: 76px; }
.ia-bubble {
  font-size: 0.66rem; line-height: 1.35; padding: 6px 10px; border-radius: 11px;
  max-width: 88%; opacity: 0; transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.ia-bubble.in { background: rgba(255,255,255,0.13); color: #fff; align-self: flex-start; border-bottom-left-radius: 3px; }
.ia-bubble.out { background: #25d366; color: #063a1e; align-self: flex-end; border-bottom-right-radius: 3px; font-weight: 500; }
.ia-bubble.show { opacity: 1; transform: translateY(0); }
.ia-typing { display: flex; gap: 4px; align-self: flex-start; background: rgba(255,255,255,0.13); padding: 8px 12px; border-radius: 11px; border-bottom-left-radius: 3px; opacity: 0; transition: opacity 0.4s ease; }
.ia-typing.show { opacity: 1; }
.ia-typing span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.7); animation: iaTypingDot 1.1s ease-in-out infinite; }
.ia-typing span:nth-child(2) { animation-delay: 0.15s; }
.ia-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes iaTypingDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-3px); opacity: 1; } }

.bg-1 { background: var(--black); }
.bg-2 { background: var(--orange); }
.bg-3 { background: var(--navy-600); }
.bg-4 { background: var(--black-soft); }
.bg-5 { background: var(--orange-dark); }
.bg-6 { background: var(--navy-700); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g-item:nth-child(4) { grid-row: span 1; }
}
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-grid .g-item:nth-child(1) { grid-column: span 1; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--off-white); border-radius: var(--radius-md); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-mid); }
.testi-card .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--orange); font-size: 1rem; letter-spacing: 2px; }
.testi-card p.quote { color: var(--navy-800); font-size: 0.94rem; margin-bottom: 22px; font-style: italic; }
.testi-card .author { display: flex; align-items: center; gap: 12px; }
.testi-card .author .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-700); display:flex; align-items:center; justify-content:center; color: var(--orange-light); font-family: var(--font-head); font-weight: 700; }
.testi-card .author b { display:block; font-size: 0.88rem; color: var(--black); }
.testi-card .author span { font-size: 0.76rem; color: var(--gray-700); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-100); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--black); }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); display:flex; align-items:center; justify-content:center; flex-shrink: 0; position: relative; transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--navy-800); transition: transform 0.3s var(--ease); }
.faq-q .plus::before { width: 11px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 11px; }
.faq-item.open .faq-q .plus { background: var(--orange); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--white); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--gray-700); font-size: 0.92rem; max-width: 620px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--black); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card { display: flex; gap: 15px; align-items: flex-start; background: var(--black-soft); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 20px; }
.info-card .i-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--orange); display:flex; align-items:center; justify-content:center; flex-shrink: 0; }
.info-card .i-icon svg { width: 21px; height: 21px; stroke: var(--white); }
.info-card h4 { color: var(--white); font-size: 0.96rem; margin-bottom: 6px; }
.info-card p, .info-card a { display:block; color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.info-card a:hover { color: var(--orange-light); }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); height: 210px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form { background: var(--black-soft); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.76rem; color: rgba(255,255,255,0.42); margin-top: 10px; text-align: center; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--black); color: rgba(255,255,255,0.62); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .brand { margin-bottom: 14px; }
.footer-col p { font-size: 0.86rem; line-height: 1.7; max-width: 300px; }
.footer-col h5 { color: var(--white); font-family: var(--font-head); font-size: 0.88rem; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 0.88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--orange-light); }

.socials { display: flex; gap: 11px; margin-top: 16px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display:flex; align-items:center; justify-content:center; transition: all 0.25s var(--ease); }
.socials a svg { width: 15px; height: 15px; stroke: var(--white); }
.socials a:hover { background: var(--orange); border-color: var(--orange); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--orange-light); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.wa-menu { display: flex; flex-direction: column; gap: 9px; opacity: 0; visibility: hidden; transform: translateY(14px); transition: all 0.3s var(--ease); }
.wa-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }

.wa-menu a { display: flex; align-items: center; gap: 9px; background: var(--white); padding: 11px 16px; border-radius: 999px; box-shadow: var(--shadow-mid); font-family: var(--font-head); font-weight: 600; font-size: 0.84rem; color: var(--black); white-space: nowrap; }
.wa-menu a .wa-ico { width: 20px; height: 20px; border-radius: 50%; background: #25d366; display:flex; align-items:center; justify-content:center; }
.wa-menu a .wa-ico svg { width: 11px; height: 11px; stroke: #fff; }

.wa-btn { width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items:center; justify-content:center; box-shadow: 0 12px 28px rgba(37,211,102,0.4); cursor: pointer; border: none; position: relative; }
.wa-btn svg { width: 28px; height: 28px; stroke: #fff; fill: none; }
.wa-btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37,211,102,0.5); animation: waPulse 2.2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--black); color: var(--white); padding: 15px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow-deep); font-size: 0.88rem; z-index: 1200; transition: transform 0.4s var(--ease); display: flex; align-items: center; gap: 9px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 17px; height: 17px; stroke: #25d366; }
