/* ===========================================
   Lauben Uniformes – lauben.net
   Created by ElissaMedia.com
   =========================================== */


html {
  overflow-x: hidden;
  max-width: 100vw;
}

    /* ── ESTILOS BASE LAUBEN ───────────────────────────────────── */
    :root {
      --navy:   #0D1B3E;
      --pink:   #D41E6C;
      --pink-lt:#F0356E;
      --white:  #FFFFFF;
      --gray:   #F5F6FA;
      --text:   #1A1A2E;
      --muted:  #6B7280;
      --radius-lg: 1.25rem;
      --radius-xl: 2rem;
    }

    *, *::before, *::after { box-sizing: border-box; }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .display-font {
      font-family: 'Montserrat', sans-serif;
    }

    /* ── NAVBAR ────────────────────────────────────────── */

    .navbar-wrap {
      position: fixed;
      top: 0; left: 0; width: 100%;
      z-index: 1050;
      background: var(--navy);
    }

    /* The nav row itself: navy bg, items laid out in a flex row */
    .navbar-emedia {
      background: transparent;
      
      border: none; box-shadow: none; margin-bottom: 0;
    }

    .nav-pill-wrap {
      flex: 1;
      display: flex;
      justify-content: center;
      /* Overflow visible so the pill can extend below the navbar row */
      position: relative;
    }

    .nav-pill {
      background: #fff;
      border-radius: 0 0 999px 999px;   /* rounded ONLY at bottom */
      padding: 0.55rem 1.8rem 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.1rem;
      position: relative;
      z-index: 2;
      /* Extend slightly above so it's flush with bar top */
      margin-top: -1.6rem;
    }

    /* Nav links inside pill — dark navy text */
    .nav-pill .nav-link {
      color: var(--navy) !important;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600; font-size: 0.84rem;
      padding: 0.3rem 0.75rem !important;
      white-space: nowrap; position: relative;
      transition: color .15s;
    }
    .nav-pill .nav-link:hover { color: var(--pink) !important; }
    .nav-pill .nav-link.active { color: var(--navy) !important; }

    /* Sliding underline indicator */
    .nav-indicator {
      position: absolute;
      bottom: 6px;
      height: 3px;
      background: var(--pink);
      border-radius: 99px;
      transition: left .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1);
      pointer-events: none;
      z-index: 3;
    }

    /* Brand — white text on navy */
    .navbar-brand-emedia {
      display: flex; align-items: center; gap: 0.65rem;
      text-decoration: none; flex-shrink: 0;
      
    }
    .brand-logo-box {
      width: 48px; height: 48px; background: transparent;
      flex-shrink: 0; position: relative;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; font-size: 0.95rem; color: var(--navy);
    }

    .brand-name {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1rem; color: #fff; line-height: 1.1; letter-spacing: 0.08em;
    }
    .brand-sub {
      font-size: 0.52rem; letter-spacing: 0.18em;
      color: rgba(255,255,255,.45); display: block; font-weight: 600;
    }

    /* Toggler */
    .navbar-toggler {
      border: 1.5px solid rgba(255,255,255,.3);
      border-radius: 8px; padding: 0.3rem 0.55rem; box-shadow: none;
    }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Mobile collapse */
    .navbar-mobile-menu {
      background: #fff; border-radius: 1rem;
      margin: 0.5rem 1rem 0.75rem; padding: 0.75rem 1rem;
    }
    .navbar-mobile-menu .nav-link {
      color: var(--navy) !important;
      font-family: 'Montserrat', sans-serif; font-weight: 600;
      font-size: 0.9rem; padding: 0.45rem 0.5rem !important;
    }
    .navbar-mobile-menu .nav-link:hover { color: var(--pink) !important; }

    /* Bottom arch: navy shape, bottom edge arches upward in centre */
    .navbar-curve {
      width: 100%; height: 28px; line-height: 0; display: block;
    }
    .navbar-curve svg { display: block; width: 100%; height: 100%; }

        /* ── HERO ──────────────────────────────────────────── */
    .hero-section {
      /*background: linear-gradient(160deg, #1e3166 0%, #152550 40%, #0D1B3E 100%);*/
      background-image: url('/img/fondo_lauben.svg');
      background-size: cover;
      min-height: calc(100vh - 80px);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 6rem 0 3rem;
    }

    @media (max-width: 991.98px) {
      .hero-section {
        min-height: auto;
        padding: 5rem 0 2.5rem;
      }
    }

    @media (max-width: 575.98px) {
      .hero-section {
        padding: 4rem 0 2rem;
      }
    }
    .hero-section::before {
      content: '';
      position: absolute;
      left: -60px;
      top: 0;
      width: 220px;
      height: 100%;
      background-image: radial-gradient(circle, rgba(212,30,108,.45) 1.5px, transparent 1.5px);
      background-size: 18px 18px;
      pointer-events: none;
      z-index: 0;
    }

    /* Dot pattern – pure CSS, no image file needed */
    .hero-section::after {
      content: '';
      position: absolute;
      right: 0;
      bottom: -120px;
      width: 560px;
      height: 560px;
      background: rgba(212,30,108,.09);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .hero-content { position: relative; z-index: 2; }

    .hero-eyebrow {
      display: inline-block;
      background: rgba(212,30,108,.18);
      color: var(--pink-lt);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.3rem 0.9rem;
      border-radius: 50px;
      border: 1px solid rgba(212,30,108,.35);
      margin-bottom: 1rem;
    }

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      color: #fff;
      line-height: 1.1;
      margin-bottom: 0.3rem;
    }

    .hero-title-pink {
      color: var(--pink);
      font-size: clamp(1.8rem, 4.5vw, 3rem);
      font-weight: 800;
      display: block;
      margin-bottom: 0.2rem;
    }

    .hero-subtitle-text {
      color: rgba(255,255,255,1);
      font-size: 1rem;
      margin-bottom: 2.2rem;
      max-width: 440px;
      line-height: 1.65;
      background-color: rgba(0,0,0,0.3);
      padding: 10px;
      border-radius: 5px;
    }

    .btn-primary-emedia {
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.72rem 1.8rem;
      letter-spacing: 0.03em;
      transition: background .25s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-primary-emedia:hover {
      background: var(--pink-lt);
      color: #fff;
    }

    .btn-outline-emedia {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,.4);
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.68rem 1.8rem;
      letter-spacing: 0.03em;
      transition: border-color .25s, background .25s, transform .2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-outline-emedia:hover {
      border-color: #fff;
      background: rgba(255,255,255,.08);
      color: #fff;
    }

    /* ── HERO IMAGE MOSAIC – tilted frames ─────────────── */
    .hero-mosaic {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      grid-template-rows: 1fr 1fr;
      gap: 1rem;
      height: 400px;
      padding-bottom: 18px; /* room for rotated bottom-right card */
    }

    /* Each card is a tilted white "frame" — the card rotates, image counter-rotates */
    .mosaic-card {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      padding: 6px;           /* white frame border */
    }

    /* The tall left card spans both rows and tilts slightly clockwise */
    .mosaic-card.tall {
      grid-row: span 2;
      transform: rotate(2deg);
    }

    /* Top-right card tilts counter-clockwise */
    .mosaic-card.top-right {
      transform: rotate(-3deg);
      align-self: end;
    }

    /* Bottom-right card tilts slightly clockwise */
    .mosaic-card.bot-right {
      transform: rotate(2.5deg);
      align-self: start;
    }

    /* Inner image wrapper — clips the image after the frame padding */
    .mosaic-card-inner {
      width: 100%;
      height: 100%;
      min-height: 150px;
      border-radius: 13px;
      overflow: hidden;
      position: relative;
    }

    /* Image counter-rotates inside to stay visually upright */
    .mosaic-card-inner .img-placeholder {
      width: 110%;
      height: 110%;
      margin: -5%;
      border-radius: 0;
    }

    @media (max-width: 991.98px) {
      .hero-mosaic { height: 300px; gap: 0.6rem; }
    }

    @media (max-width: 575.98px) {
      .hero-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        height: auto;
      }
      .mosaic-card.tall { grid-row: span 2; }
    }

    /* Calidad badge */
    .calidad-badge {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--pink);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.82rem;
      text-align: center;
      padding: 0.55rem 1.1rem;
      border-radius: 12px;
      line-height: 1.3;
      white-space: nowrap;
    }

    .calidad-badge em { font-style: italic; font-weight: 400; display: block; font-size: 0.7rem; }

    /* ── FEATURE BADGES ────────────────────────────────── */
    .feature-strip {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 1.4rem 0 1.2rem;
      width: 100%;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      color: rgba(255,255,255,.82);
      font-size: 0.85rem;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
    }

    .feature-item-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(212,30,108,.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink-lt);
      font-size: 1rem;
      flex-shrink: 0;
      border: 1px solid rgba(212,30,108,.3);
    }

    /* ── QUIÉNES SOMOS ─────────────────────────────────── */
    .about-section {
      background: var(--white);
      padding: 5rem 0 4rem;
      position: relative;
    }

    .section-label {
      display: inline-block;
      color: var(--pink);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 0.7rem;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 1.2rem;
    }

    .section-title span { color: var(--pink); }

    .pillar-card {
      background: var(--gray);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: border-color .25s;
      height: 100%;
      border: 2px solid transparent;
    }

    .pillar-card:hover {
      border-color: rgba(212,30,108,.25);
    }

    .pillar-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--pink) 0%, var(--pink-lt) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.1rem;
      font-size: 1.7rem;
      color: #fff;
    }

    .pillar-card h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .pillar-card p {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
    }

    /* ── SERVICIOS ─────────────────────────────────────── */
    .servicios-section {
      background: var(--gray);
      padding: 5rem 0;
    }

    .servicio-card {
      background: #fff;
      border-radius: var(--radius-xl);
      padding: 2.2rem 1.8rem 2rem;
      height: 100%;
      border: 2px solid transparent;
      transition: border-color .25s;
      display: flex;
      flex-direction: column;
    }

    .servicio-card:hover {
      border-color: rgba(212,30,108,.2);
    }

    .servicio-card--featured {
      background: var(--navy);
      border-color: transparent;
    }

    .servicio-card--featured h4 { color: #fff; }

    .servicio-card--featured p {
      color: rgba(255,255,255,.75) !important;
    }

    .servicio-card--featured .servicio-list li {
      color: rgba(255,255,255,.85);
    }

    .servicio-card--featured .servicio-list i {
      color: var(--pink-lt);
    }

    .servicio-icon {
      width: 60px; height: 60px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--pink) 0%, var(--pink-lt) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: #fff;
      margin-bottom: 1.4rem;
      flex-shrink: 0;
    }

    .servicio-card--featured .servicio-icon {
      background: rgba(255,255,255,.15);
    }

    .servicio-card h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 0.8rem;
    }

    .servicio-card p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.2rem;
      flex: 1;
    }

    .servicio-list {
      list-style: none;
      padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 0.5rem;
    }

    .servicio-list li {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.84rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      color: var(--navy);
    }

    .servicio-list i {
      color: var(--pink);
      font-size: 1rem;
      flex-shrink: 0;
    }

    /* ── SLOGAN RIBBON ─────────────────────────────────── */
    .slogan-ribbon {
      background: linear-gradient(90deg, var(--navy) 0%, #1a2d5a 100%);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .slogan-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      color: #fff;
      letter-spacing: 0.06em;
      white-space: normal;
    }

    .slogan-text .dot { color: var(--pink); margin: 0 1rem; }

    /* ── GALLERY ───────────────────────────────────────── */
    .gallery-section {
      background: var(--gray);
      padding: 5rem 0;
    }

    /* ── GALLERY – category tabs + mini sliders ─────────── */
    .gallery-section {
      background: var(--gray);
      padding: 5rem 0;
    }

    /* Category tabs */
    .cat-tabs { border-bottom: 2px solid rgba(13,27,62,.1); padding-bottom: 0; }

    .cat-tab {
      background: transparent;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.88rem;
      color: var(--muted);
      padding: 0.6rem 1.4rem;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      cursor: pointer;
      border-radius: 8px 8px 0 0;
      transition: color .2s, border-color .2s, background .2s;
      white-space: nowrap;
    }

    .cat-tab:hover { color: var(--navy); }

    .cat-tab.active {
      color: var(--navy);
      border-bottom-color: var(--pink);
      background: #fff;
    }

    /* ── GALLERY FILTER TABS ───────────────────────────── */
    .cat-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      padding-bottom: 15px;
    }

    .cat-tab {
      background: #fff;
      border: 2px solid rgba(13,27,62,.12);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.82rem;
      color: var(--muted);
      padding: 0.42rem 1.1rem;
      border-radius: 50px;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
    }

    .cat-tab:hover { color: var(--navy); border-color: var(--navy); }
    .cat-tab.active { background: var(--pink); border-color: var(--pink); color: #fff; }

    /* ── PRODUCT CARD ──────────────────────────────────── */
    .pcard {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(13,27,62,.07);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    /* The image carousel area inside the card */
    .pcard-slider {
      position: relative;
      overflow: hidden;
      height: 242px;
      flex-shrink: 0;
    }

    /* Strip of slides side by side */
    .pcard-slides {
      display: flex;
      height: 100%;
      transition: transform .38s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }

    .pcard-slide {
      flex: 0 0 100%;
      height: 100%;
      overflow: hidden;
    }

    .pcard-slide img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    /* Category badge top-left */
    .pcard-badge {
      position: absolute;
      top: 10px; left: 10px;
      background: var(--pink);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.68rem;
      padding: 0.2rem 0.65rem;
      border-radius: 50px;
      letter-spacing: 0.04em;
      z-index: 2;
    }

    /* Left / right arrows overlaid on the image */
    .pcard-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,.2);
      border: 1.5px solid rgba(255,255,255,.5);
      color: #fff;
      font-size: 0.8rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      z-index: 2;
      transition: background .2s, border-color .2s;
      backdrop-filter: blur(4px);
    }

    .pcard-btn:hover { background: var(--pink); border-color: var(--pink); }
    .pcard-btn.prev { left: 8px; }
    .pcard-btn.next { right: 8px; }
    .pcard-btn:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

    /* Dot indicators inside the image, bottom-center */
    .pcard-dots {
      position: absolute;
      bottom: 8px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 5px;
      z-index: 2;
    }

    .pcard-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,.5);
      border: none; padding: 0; cursor: pointer;
      transition: background .2s, transform .2s;
    }

    .pcard-dot.active { background: #fff; transform: scale(1.3); }

    /* Card body below the image */
    .pcard-body {
      padding: 1.1rem 1.2rem 1.3rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .pcard-body h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.95rem;
      color: var(--navy); margin-bottom: 0.3rem;
    }

    .pcard-body p {
      font-size: 0.82rem; color: var(--muted);
      line-height: 1.55; margin: 0; flex: 1;
    }

    /* Hidden filter state */
    .pcard-wrap { transition: opacity .2s; }
    .pcard-wrap.hidden { display: none; }


    /* ── CTA / CONTACT ─────────────────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
      padding: 5.5rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      right: -100px;
      top: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(212,30,108,.12);
      pointer-events: none;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      left: -80px;
      bottom: -120px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: rgba(212,30,108,.07);
      pointer-events: none;
    }

    .cta-section .content { position: relative; z-index: 2; }

    .cta-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .cta-title span { color: var(--pink); }

    .cta-subtitle {
      color: rgba(255,255,255,.65);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .contact-info-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .contact-chip {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: rgba(255,255,255,.75);
      font-size: 0.9rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    .contact-chip i {
      color: var(--pink-lt);
      font-size: 1.1rem;
    }

    /* ── FOOTER ────────────────────────────────────────── */
    footer {
      background: #080f22;
      color: rgba(255,255,255,.45);
      font-size: 0.82rem;
      padding: 1.6rem 0;
      text-align: center;
      font-family: 'Montserrat', sans-serif;
    }

    footer a { color: var(--pink-lt); text-decoration: none; }
    footer a:hover { color: #fff; }

    .btn-solicitar {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 0.9rem;
      background: var(--pink);
      color: #fff !important;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      padding: 0.5rem 1.4rem;
      border-radius: 50px;
      text-decoration: none;
      transition: background .2s;
      align-self: flex-start;
    }
    .btn-solicitar:hover { background: var(--pink-lt); color: #fff !important; }

    /* ── UTILS ─────────────────────────────────────────── */
    .divider-pink {
      width: 52px;
      height: 4px;
      background: var(--pink);
      border-radius: 4px;
      margin-bottom: 1.4rem;
    }

    /* placeholder images via gradient */
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      color: rgba(255,255,255,.6);
      letter-spacing: 0.04em;
    }

    .ph-1 { background: linear-gradient(145deg, #2c3e6b 0%, #1a2d5a 100%); }
    .ph-2 { background: linear-gradient(145deg, #3a2060 0%, #5c3d9e 100%); }
    .ph-3 { background: linear-gradient(145deg, #1a4a3a 0%, #2d6a50 100%); }
    .ph-4 { background: linear-gradient(145deg, #4a1a1a 0%, #7a2d2d 100%); }
    .ph-5 { background: linear-gradient(145deg, #1a3a4a 0%, #2d5a6a 100%); }
    .ph-6 { background: linear-gradient(145deg, #3a3a1a 0%, #5a5a2d 100%); }
    .ph-sport { background: linear-gradient(145deg, #0d1b3e 0%, #1a3070 100%); }
    .ph-corp  { background: linear-gradient(145deg, #1a1a3e 0%, #2a2a5a 100%); }
    .ph-school{ background: linear-gradient(145deg, #0d2e1a 0%, #1a5a2e 100%); }

    /* ── RESPONSIVE TWEAKS ─────────────────────────────── */
    @media (max-width: 991.98px) {
      .hero-section { padding: 4rem 0 3rem; min-height: auto; }
      .hero-mosaic { margin-top: 2.5rem; }
      .mosaic-img.large { height: 280px; }
      .mosaic-img.small { height: 130px; }
      .feature-strip .col-6, .feature-strip .col-md-3 { margin-bottom: 0.5rem; }
    }

    @media (max-width: 575.98px) {
      .hero-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .mosaic-img.large { grid-row: span 1; height: 220px; }
      .mosaic-img.small { height: 180px; }
      .contact-info-row { flex-direction: column; gap: 0.8rem; }
    }
    /* ── PRELOADER ─────────────────────────────────────── */
    #preloader {
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      transition: opacity .5s ease, visibility .5s ease;
    }

    #preloader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .preloader-logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      animation: preloaderPulse 1.4s ease-in-out infinite;
    }

    

    .preloader-logo-box {
      width: 56px; height: 56px;
      background: #fff;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; font-size: 1.3rem; color: var(--navy);
      position: relative;
    }

    .preloader-logo-box::after {
      content: '';
      position: absolute; bottom: -4px; right: -4px;
      width: 14px; height: 14px;
      background: var(--pink); border-radius: 4px;
    }

    .preloader-brand {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 1.4rem;
      color: #fff; letter-spacing: 0.1em;
      line-height: 1.1;
    }

    .preloader-brand span {
      display: block;
      font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.25em; color: rgba(255,255,255,.45);
    }

    /* Pink progress bar */
    .preloader-bar {
      width: 160px; height: 3px;
      background: rgba(255,255,255,.12);
      border-radius: 3px;
      overflow: hidden;
    }

    .preloader-bar-fill {
      height: 100%;
      background: var(--pink);
      border-radius: 3px;
      animation: preloaderBar .9s ease-out forwards;
    }

    @keyframes preloaderBar {
      from { width: 0%; }
      to   { width: 100%; }
    }

    @media (max-width: 575.98px) {
      .mosaic-card {
        transform: none !important;
      }
    }
