/* ------------------------------------------------------------
   IMPORTS & ROOT VARIABLES — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Light Pastel Palette */
  --pc-grey-blue: #909BAE;
  --pc-soft-blue: #B3BDD2;
  --pc-light-neutral: #DAD9DE;
  --pc-ultra-light: #F4F4F4;
  --pc-pale-blue: #D5E8EF;

  /* Signature Blues */
  --pc-blue: #4BA3C7;
  --pc-blue-light: #7EC7E6;

  /* Text */
  --text-main: #1E2A32;
  --text-muted: #2F3B45;
  --white: #ffffff;

  /* Glow */
  --glow-soft: rgba(75, 163, 199, 0.35);
  --glow-medium: rgba(75, 163, 199, 0.55);

  /* Shadows */
  --shadow-soft: 0 8px 20px rgba(0,0,0,0.10);

  /* Radius */
  --radius: 20px;
}

/* ------------------------------------------------------------
   RESET & BASE STYLES
------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--pc-ultra-light);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: var(--pc-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
   LAYOUT
------------------------------------------------------------ */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 4rem 0;
}

.section-light {
  background-color: var(--pc-ultra-light);
}

.section-accent {
  background-color: var(--pc-light-neutral);
}

.section-contact {
  background-color: var(--pc-pale-blue);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  color: var(--text-main);
}

/* ------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-main);
}

/* ------------------------------------------------------------
   HEADER / NAVIGATION
------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--pc-ultra-light);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
}

.main-nav a {
  margin-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--pc-blue);
}


/* ------------------------------------------------------------
   HERO SECTION — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--pc-ultra-light);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Light pastel gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(213, 232, 239, 0.75),
    rgba(244, 244, 244, 0.65)
  );
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 600px;
  animation: heroFadeIn 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  text-shadow: 0 4px 12px var(--glow-soft);
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* ------------------------------------------------------------
   ABOUT / TWO-COLUMN / CARDS — LIGHT PASTEL
------------------------------------------------------------ */
.two-column {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 2rem;
  align-items: flex-start;
}

.about-card {
  background: var(--pc-ultra-light);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pc-light-neutral);
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pc-light-neutral);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pc-light-neutral);
}

/* ------------------------------------------------------------
   CORE FOCUS CARD — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
.core-focus-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 1.75rem;
  backdrop-filter: blur(6px);
  border: 2px solid var(--glow-soft);
  background:
    linear-gradient(
      rgba(213, 232, 239, 0.75),
      rgba(244, 244, 244, 0.75)
    ),
    url("media/focus.jpg");
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.core-focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px var(--glow-soft);
}

.core-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(213, 232, 239, 0.75),
      rgba(244, 244, 244, 0.75)
    ),
    url("media/focus.jpg");
  background-size: cover;
  background-position: center;
  clip-path: ellipse(120% 85% at 50% 0%);
  z-index: 1;
}

.core-focus-card::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: radial-gradient(circle, var(--glow-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.core-focus-card:hover::after {
  opacity: 1;
}

.core-focus-card h3,
.core-focus-card p,
.core-focus-card strong {
  position: relative;
  z-index: 3;
  color: var(--text-main);
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.15),
    0 0 12px var(--glow-soft);
}

.core-focus-card h3 {
  font-weight: 800;
  letter-spacing: 0.7px;
}


/* ------------------------------------------------------------
   MVC SECTION (MISSION / VISION / VALUES)
------------------------------------------------------------ */
.mvc-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mvc-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 260px;
  cursor: pointer;

  /* Frosted pastel recolor */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);

  border: 2px solid rgba(144, 155, 174, 0.45);
  box-shadow: 0 8px 22px rgba(144,155,174,0.15);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 0; /* required fix */
}

.mvc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(144,155,174,0.35);
}

.mvc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Pastel tint */
  background-blend-mode: lighten;
  filter: brightness(1.15) saturate(1.2);

  opacity: 0.55;
  z-index: -1; /* required fix */
}

.mission-card::before {
  background-image: url("media/mission.jpg");
}

.vision-card::before {
  background-image: url("media/vision.avif");
}

.values-card::before {
  background-image: url("media/values.jpg");
}

/* ICON + TITLE OVERLAY */
.mvc-overlay {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;

  color: #2F3A4A;
  text-shadow: 0 2px 6px rgba(255,255,255,0.7);
}

.mvc-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;

  color: #6FAEDC;
  text-shadow:
    0 2px 6px rgba(255,255,255,0.8),
    0 0 12px rgba(144,155,174,0.35);
}

.mvc-overlay h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.7px;

  color: #2F3A4A;
  text-shadow:
    0 2px 6px rgba(255,255,255,0.8),
    0 0 10px rgba(144,155,174,0.25);
}

/* PREMIUM SOFT GLOW ANIMATIONS */
.mvc-overlay h3,
.mvc-overlay i {
  animation:
    mvcPulse 3.2s infinite ease-in-out,
    mvcColorShift 6s infinite ease-in-out,
    mvcShimmer 4.5s infinite linear;
}

/* Soft Pulse */
@keyframes mvcPulse {
  0% {
    text-shadow:
      0 2px 6px rgba(255,255,255,0.5),
      0 0 10px rgba(144,155,174,0.25);
  }
  50% {
    text-shadow:
      0 2px 6px rgba(255,255,255,0.8),
      0 0 18px rgba(144,155,174,0.45);
  }
  100% {
    text-shadow:
      0 2px 6px rgba(255,255,255,0.5),
      0 0 10px rgba(144,155,174,0.25);
  }
}

/* Color Shift */
@keyframes mvcColorShift {
  0% { color: #2F3A4A; }
  50% { color: #6FAEDC; }
  100% { color: #2F3A4A; }
}

/* Shimmer */
@keyframes mvcShimmer {
  0% {
    text-shadow:
      0 0 0 rgba(255,255,255,0),
      0 0 0 rgba(144,155,174,0);
  }
  50% {
    text-shadow:
      0 0 12px rgba(255,255,255,0.4),
      0 0 18px rgba(144,155,174,0.35);
  }
  100% {
    text-shadow:
      0 0 0 rgba(255,255,255,0),
      0 0 0 rgba(144,155,174,0);
  }
}

/* Hover Boost */
.mvc-card:hover .mvc-overlay h3,
.mvc-card:hover .mvc-overlay i {
  transform: translateY(-4px);
  transition: transform 0.25s ease, text-shadow 0.25s ease;

  text-shadow:
    0 3px 8px rgba(255,255,255,0.9),
    0 0 20px rgba(144,155,174,0.45);
}


/* ------------------------------------------------------------
   CINEMATIC MVC MODAL — CONTAINER (RECOLORED)
------------------------------------------------------------ */
.mvc-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(144,155,174,0.55);
  backdrop-filter: blur(6px);
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mvc-modal.show {
  display: flex;
  opacity: 1;
}

.mvc-modal.hide {
  opacity: 0;
  pointer-events: none;
}


/* ------------------------------------------------------------
   CINEMATIC MVC MODAL — CONTENT (RECOLORED)
------------------------------------------------------------ */
.mvc-modal-content {
  position: relative;
  padding: 2.5rem;
  border-radius: 22px;
  max-width: 650px;
  width: 100%;
  overflow: hidden;

  background: rgba(212,224,233,0.55); /* #D5E8EF */
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border: 1px solid rgba(144,155,174,0.35);
  color: #2F3A4A;

  animation:
    modalSlideZoom 0.45s ease forwards,
    neonFrame 4s ease-in-out infinite;
}


/* ------------------------------------------------------------
   CINEMATIC MVC MODAL — BACKGROUND LAYERS (RECOLORED)
------------------------------------------------------------ */
.mvc-modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-size: cover;
  background-position: center;

  filter: brightness(0.85) saturate(1.1) blur(4px);

  background-image:
    linear-gradient(
      to bottom,
      rgba(179,189,210,0.65),
      rgba(218,217,222,0.35),
      rgba(244,244,244,0.15)
    );

  clip-path: ellipse(160% 95% at 50% 0%);

  animation:
    curveFloat 6s ease-in-out infinite,
    modalParallax 12s ease-in-out infinite,
    waveMotion 10s ease-in-out infinite;
}

.mvc-modal-content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: linear-gradient(
      to top,
      rgba(144,155,174,0.35),
      rgba(212,224,233,0.15),
      rgba(244,244,244,0)
    );

  clip-path: ellipse(160% 20% at 50% 100%);
}


/* ------------------------------------------------------------
   CINEMATIC MVC MODAL — TEXT LAYER (RECOLORED)
------------------------------------------------------------ */
.mvc-modal-content > * {
  position: relative;
  z-index: 3;
  color: #2F3A4A;
}

.mvc-modal-content h2::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 120px;

  background: radial-gradient(circle, rgba(144,155,174,0.25), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}
/* ------------------------------------------------------------
   MVC MODAL — THICKER TEXT WITHOUT LINE BREAKS
------------------------------------------------------------ */

.mvc-modal-content p,
.mvc-modal-content li {
  font-weight: 500; /* keeps width stable */
  color: #000000;

  /* 2px thickness effect without changing width */
  -webkit-text-stroke: 0.4px rgba(0,0,0,0.4);
  text-shadow:
    0 0 1px rgba(0,0,0,0.4),
    0 0 2px rgba(0,0,0,0.25);
}


/* ------------------------------------------------------------
   CINEMATIC MVC MODAL — CLOSE BUTTON (RECOLORED)
------------------------------------------------------------ */
.mvc-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 10;
  cursor: pointer;
  font-size: 2rem;

  color: #6FAEDC;
  text-shadow: 0 0 10px rgba(144,155,174,0.8);

  transition: transform 0.2s ease;
}

.mvc-close:hover {
  transform: scale(1.15);
}


/* ------------------------------------------------------------
   MVC MODAL — BACKGROUND IMAGES (UNCHANGED)
------------------------------------------------------------ */
#missionModal .mvc-modal-content::before {
  background-image: url("media/mission.jpg");
}

#visionModal .mvc-modal-content::before {
  background-image: url("media/vision.avif");
}

#valuesModal .mvc-modal-content::before {
  background-image: url("media/values.jpg");
}

/* ------------------------------------------------------------
   TEAM SECTION — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
#team {
  position: relative;

  /* Recolored from dark teal → light pastel gradient */
  background: linear-gradient(
    135deg,
    var(--pc-ultra-light),
    var(--pc-pale-blue),
    var(--pc-light-neutral)
  );
  background-size: 300% 300%;
  animation: teamGradient 20s ease infinite;
  overflow: hidden;
}

@keyframes teamGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ------------------------------------------------------------
   TEAM SECTION — PARTICLES (kept, but recolored)
------------------------------------------------------------ */
.team-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle-dot {
  position: absolute;
  width: 6px;
  height: 6px;

  /* Recolored from neon aqua → soft teal */
  background: var(--pc-blue-light);

  border-radius: 50%;
  filter: blur(2px);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0px); opacity: 0.8; }
  50% { opacity: 0.4; }
  100% { transform: translateY(-40px); opacity: 0.8; }
}

/* ------------------------------------------------------------
   TEAM GRID
------------------------------------------------------------ */
.team-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------------------
   CINEMATIC TEAM CARD — WRAPPER
------------------------------------------------------------ */
.flip-wrapper {
  perspective: 1000px;
}

/* ------------------------------------------------------------
   CINEMATIC TEAM CARD — BASE (LIGHT PASTEL)
------------------------------------------------------------ */
.cinematic-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;

  /* Recolored from dark teal → pastel blur */
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(213, 232, 239, 0.55);

  border: 1px solid var(--glow-soft);
  transition: transform 0.8s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

/* Hover tilt */
.flip-wrapper:hover .cinematic-card {
  transform: rotateY(10deg) rotateX(5deg);
}

/* Hover glow */
.cinematic-card:hover {
  box-shadow: 0 0 25px var(--glow-medium);
}

/* ------------------------------------------------------------
   CINEMATIC TEAM CARD — NEON BORDER (kept, recolored)
------------------------------------------------------------ */
.cinematic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;

  /* Recolored gradient */
  background: linear-gradient(
    130deg,
    var(--pc-blue-light),
    rgba(255,255,255,0.2),
    var(--pc-blue-light)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: neonBorder 4s linear infinite;
  pointer-events: none;
}

@keyframes neonBorder {
  0% { filter: hue-rotate(0deg); opacity: 0.7; }
  50% { opacity: 1; }
  100% { filter: hue-rotate(360deg); opacity: 0.7; }
}

/* ------------------------------------------------------------
   CINEMATIC TEAM CARD — SPOTLIGHT (recolored)
------------------------------------------------------------ */
.cinematic-card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 160px;

  /* Recolored from neon aqua → soft teal glow */
  background: radial-gradient(circle, var(--glow-soft), transparent 70%);

  filter: blur(25px);
  z-index: 0;
}

/* ------------------------------------------------------------
   CINEMATIC TEAM CARD — SHIMMER (kept)
------------------------------------------------------------ */
.shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transform: translateX(-150%);
  animation: shimmerSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% { transform: translateX(-150%); }
  50% { transform: translateX(150%); }
  100% { transform: translateX(150%); }
}

/* ------------------------------------------------------------
   TEAM PHOTO
------------------------------------------------------------ */
.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;

  /* Recolored border */
  border: 2px solid var(--pc-blue-light);
  box-shadow: 0 0 15px var(--glow-soft);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Parallax hover */
.cinematic-card:hover .team-photo img {
  transform: scale(1.1) translateY(-6px);
}

/* ------------------------------------------------------------
   TEAM CARD — UNDERLINE
------------------------------------------------------------ */
.name-underline {
  width: 0%;
  height: 3px;
  margin: 0.5rem auto 1rem;

  /* Recolored underline */
  background: linear-gradient(90deg, transparent, var(--pc-blue-light), transparent);

  transition: width 0.5s ease;
}

.cinematic-card:hover .name-underline {
  width: 80%;
}

/* ------------------------------------------------------------
   TEAM CARD — HOLOGRAM FLICKER (kept)
------------------------------------------------------------ */
.cinematic-card:hover {
  animation: holoFlicker 0.25s linear 1;
}

@keyframes holoFlicker {
  0% { opacity: 1; }
  20% { opacity: 0.85; }
  40% { opacity: 1; }
  60% { opacity: 0.9; }
  80% { opacity: 1; }
  100% { opacity: 1; }
}

/* Scroll reveal */
.cinematic-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   NEWS SECTION — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
#news {
  text-align: center;

  /* Recolored from dark teal → light pastel gradient */
  background: linear-gradient(
    135deg,
    var(--pc-ultra-light),
    var(--pc-light-neutral),
    var(--pc-pale-blue)
  );
  background-size: 300% 300%;
  animation: newsGradient 20s ease infinite;
}

@keyframes newsGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ------------------------------------------------------------
   NEWS TITLE
------------------------------------------------------------ */
.news-title {
  color: var(--pc-blue);
  text-shadow: 0 0 12px var(--glow-soft);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------
   SLIDER WRAPPER
------------------------------------------------------------ */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------
   SLIDER TRACK
------------------------------------------------------------ */
.slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* ------------------------------------------------------------
   SLIDE CARD — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
.slide-card {
  min-width: 350px;
  scroll-snap-align: center;

  /* Recolored from dark teal → pastel blur */
  background: rgba(213, 232, 239, 0.55);
  border-radius: 18px;
  padding: 0.5rem;

  border: 1px solid var(--glow-soft);
  box-shadow: 0 0 20px var(--glow-soft);
  backdrop-filter: blur(10px);

  transition: transform 0.4s ease;
}

.slide-card:hover {
  transform: translateY(-6px);
}

/* ------------------------------------------------------------
   SLIDER ARROWS — LIGHT PASTEL
------------------------------------------------------------ */
.slider-arrow {
  background: rgba(213, 232, 239, 0.75);
  border: 1px solid var(--pc-blue);
  color: var(--pc-blue);
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 12px var(--glow-soft);
}

.slider-arrow:hover {
  background: var(--pc-blue);
  color: var(--pc-ultra-light);
  box-shadow: 0 0 18px var(--glow-medium);
}

.left-arrow { margin-right: 1rem; }
.right-arrow { margin-left: 1rem; }

/* ------------------------------------------------------------
   VIEW MORE BUTTON — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
.view-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;

  background: rgba(213, 232, 239, 0.75);
  border: 1px solid var(--pc-blue);
  color: var(--pc-blue);

  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;

  box-shadow: 0 0 12px var(--glow-soft);

  /* Floating + glow animations preserved */
  animation:
    fbGlowPulse 4s ease-in-out infinite,
    fbFloat 6s ease-in-out infinite;

  position: sticky;
  bottom: 2rem;
  z-index: 10;
}

.view-more-btn:hover {
  background: var(--pc-blue);
  color: var(--pc-ultra-light);
  box-shadow: 0 0 20px var(--glow-medium);
}

/* Glow pulse */
@keyframes fbGlowPulse {
  0% { box-shadow: 0 0 12px var(--glow-soft); }
  50% { box-shadow: 0 0 22px var(--glow-medium); }
  100% { box-shadow: 0 0 12px var(--glow-soft); }
}

/* Floating animation */
@keyframes fbFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
/* ------------------------------------------------------------
   CONTACT SECTION — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
.section-contact {
  background-color: var(--pc-pale-blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

/* Contact card */
.contact-card {
  background: var(--pc-ultra-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pc-light-neutral);
}

/* Input wrapper */
.input-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--pc-grey-blue);
  background: var(--pc-ultra-light);
  color: var(--text-main);
  font-size: 1rem;
}

/* Icons inside inputs */
.icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pc-blue);
  font-size: 1rem;
}

/* Textarea alignment */
.textarea-wrap .icon {
  top: 1.2rem;
  transform: none;
}

/* Submit button */
.btn-primary {
  background: var(--pc-blue);
  color: var(--white);
  box-shadow: 0 8px 18px var(--glow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px var(--glow-medium);
}

/* Contact info panel */
.contact-info-panel {
  margin-top: 1.5rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.contact-info-panel div {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Map placeholder */
.contact-map {
  background: var(--pc-light-neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pc-grey-blue);
}

/* Empty map fallback */
.empty-map {
  height: 100%;
  min-height: 300px;
}

/* ------------------------------------------------------------
   FOOTER — LIGHT PASTEL CINEMATIC
------------------------------------------------------------ */
.site-footer {
  background-color: var(--pc-light-neutral);
  color: var(--text-main);
  padding: 1.5rem 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--pc-grey-blue);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer a {
  color: var(--pc-blue);
  font-weight: 600;
}

/* ------------------------------------------------------------
   FLOATING BUTTONS — LIGHT PASTEL
------------------------------------------------------------ */
.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--pc-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px var(--glow-soft);
  z-index: 120;
  font-size: 1.4rem;
}

.sticky-contact-btn {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background-color: var(--pc-blue);
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 8px 18px var(--glow-soft);
  z-index: 119;
}

/* ------------------------------------------------------------
   SCROLL TO TOP BUTTON — LIGHT PASTEL
------------------------------------------------------------ */
.scroll-top-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;

  background-color: var(--pc-blue);
  color: var(--white);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 14px var(--glow-soft);
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.15s ease;
  z-index: 118;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------------
   GLOBAL ANIMATIONS (kept)
------------------------------------------------------------ */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------
   RESPONSIVE RULES — LIGHT PASTEL SAFE
------------------------------------------------------------ */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-shadow: 0 2px 6px var(--glow-soft);
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-content {
    padding: 3rem 0;
  }
}
