  :root {
    --blue: #1b6fae;
    --blue-dark: #0e4a7a;
    --blue-light: #4da6e0;
    --orange: #f5a623;
    --orange-light: #ffc55a;
    --cream: #fff8f0;
    --white: #ffffff;
    --gray: #6b7280;
  }
  html { scroll-behavior: smooth; }
  * { margin:0; padding:0; box-sizing:border-box; }
  body { font-family:'Nunito',sans-serif; background:var(--cream); color:#1a1a2e; overflow-x:hidden; }

  /* ── CUSTOM SCROLLBAR ── */
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: #ffffff; }
  ::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 999px;
    border: 2px solid #ffffff;
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }
  * { scrollbar-width: thin; scrollbar-color: var(--blue) #ffffff; }

  /* ── PRELOADER ── */
  #preloader {
    position:fixed; inset:0; z-index:9999;
    background:linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    display:flex; flex-direction:column;
    align-items:center; justify-content:center;
    gap:20px; overflow:hidden;
  }
  .pre-logo {
    width:180px; height:auto;
    animation:pre-float 2.2s ease-in-out infinite;
    filter:drop-shadow(0 10px 28px rgba(0,0,0,0.25));
    position:relative; z-index:2;
  }
  @keyframes pre-float {
    0%,100% { transform:translateY(0); }
    50%      { transform:translateY(-14px); }
  }
  .pre-title {
    font-family:'Pacifico',cursive; color:white;
    font-size:2rem; letter-spacing:.5px;
    text-shadow:0 2px 14px rgba(0,0,0,0.2);
    position:relative; z-index:2;
  }
  .pre-sub {
    color:rgba(255,255,255,0.6); font-size:0.78rem;
    letter-spacing:3px; font-weight:700; text-transform:uppercase;
    position:relative; z-index:2;
  }
  .pre-dots { display:flex; gap:12px; position:relative; z-index:2; }
  .pre-dot {
    width:11px; height:11px; border-radius:50%;
    animation:pre-bounce 1.3s ease-in-out infinite;
  }
  .pre-dot:nth-child(1) { background:var(--orange);       animation-delay:0s; }
  .pre-dot:nth-child(2) { background:var(--orange-light);  animation-delay:.2s; }
  .pre-dot:nth-child(3) { background:rgba(255,255,255,.8); animation-delay:.4s; }
  @keyframes pre-bounce {
    0%,80%,100% { transform:translateY(0);     opacity:.45; }
    40%          { transform:translateY(-20px); opacity:1; }
  }
  /* burbujas decorativas del preloader */
  .pre-bubble {
    position:absolute; border-radius:50%; pointer-events:none;
    background:radial-gradient(circle at 33% 28%,
      rgba(255,255,255,0.32) 0%,
      rgba(255,255,255,0.06) 45%,
      transparent 100%);
    border:1px solid rgba(255,255,255,0.2);
    animation:pre-rise linear infinite;
  }
  .pre-bubble::after {
    content:''; position:absolute; border-radius:50%;
    width:28%; height:17%; top:15%; left:17%;
    background:rgba(255,255,255,0.4); filter:blur(2px);
  }
  @keyframes pre-rise {
    0%   { transform:translateY(0) translateX(0);              opacity:0; }
    8%   { opacity:.9; }
    88%  { opacity:.35; }
    100% { transform:translateY(-105vh) translateX(var(--drift,0px)); opacity:0; }
  }

  /* ── SITE HEADER (wrapper sticky) ── */
  .site-header {
    position:sticky; top:0; z-index:200;
    overflow:visible;
  }

  /* ── TOPBAR ── */
  .topbar {
    background:var(--blue-dark);
    padding:11px 48px;
    display:flex; align-items:center; justify-content:space-between;
    font-size:0.86rem; font-weight:700; letter-spacing:.4px;
  }
  .topbar-social { display:flex; align-items:center; gap:22px; }
  .topbar-social a {
    display:flex; align-items:center; gap:8px;
    color:rgba(255,255,255,0.85); text-decoration:none; transition:color .2s;
  }
  .topbar-social a svg { width:17px; height:17px; flex-shrink:0; }
  .topbar-social a:hover { color:var(--orange-light); }
  .topbar-social a span { font-size:0.84rem; }
  .topbar-address { display:flex; align-items:center; gap:8px; color:rgba(255,255,255,0.82); font-size:0.84rem; }
  .topbar-address svg { width:16px; height:16px; color:var(--orange-light); flex-shrink:0; }
  .topbar-divider { width:1px; height:16px; background:rgba(255,255,255,0.22); margin:0 2px; }

  /* ── LOGO BADGE (absoluto al site-header completo) ── */
  .header-logo {
    position:absolute;
    left:50%; top:0;
    transform:translateX(-50%);
    z-index:300;
    display:flex; align-items:center; justify-content:center;
    background:white;
    border-radius:50%;
    width:135px; height:135px;
    transition:transform .3s ease;
  }
  .header-logo:hover { transform:translateX(-50%) scale(1.04); }
  .header-logo img { width:172px; height:auto; display:block; }

  /* ── NAVBAR ── */
  nav {
    background:var(--white);
    box-shadow:0 2px 20px rgba(27,111,174,0.12);
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 48px;
    overflow:visible;
    transition:box-shadow .4s, background .4s;
  }
  nav.scrolled {
    background:rgba(255,255,255,0.97);
    box-shadow:0 4px 32px rgba(27,111,174,0.22);
    backdrop-filter:blur(8px);
  }
  .nav-left { display:flex; align-items:center; }
  .nav-links { display:flex; gap:24px; list-style:none; }
  .nav-links a {
    display:flex; align-items:center; gap:6px;
    text-decoration:none; color:var(--blue-dark);
    font-weight:700; font-size:0.92rem; letter-spacing:.3px; transition:color .2s;
  }
  .nav-links a svg { width:14px; height:14px; flex-shrink:0; }
  .nav-links a:hover { color:var(--orange); }
  .nav-right { display:flex; align-items:center; justify-content:flex-end; gap:16px; }
  .nav-cta {
    background:var(--orange); color:var(--white); font-weight:800;
    border:none; border-radius:30px; padding:11px 26px; font-size:0.92rem;
    cursor:pointer; box-shadow:0 4px 14px rgba(245,166,35,0.35);
    transition:transform .2s, box-shadow .2s; font-family:'Nunito',sans-serif;
    white-space:nowrap;
  }
  .nav-cta:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(245,166,35,0.5); }
  /* language switch */
  .lang-switch {
    display:flex; align-items:center; gap:0;
    background:#f0f4f8; border-radius:20px; padding:3px;
    border:1.5px solid #dde4ec;
  }
  .lang-btn {
    border:none; background:transparent; cursor:pointer; text-decoration:none;
    font-family:'Nunito',sans-serif; font-weight:700; font-size:0.78rem;
    padding:5px 12px; border-radius:16px; letter-spacing:.5px;
    color:var(--gray); transition:all .22s;
  }
  .lang-btn.active {
    background:var(--blue-dark); color:white;
    box-shadow:0 2px 8px rgba(14,74,122,0.25);
  }
  .lang-btn:not(.active):hover { color:var(--blue-dark); }

  /* ── HERO ── */
  .hero {
    background: url('./hero.jpg') center/cover no-repeat;
    min-height: calc(100dvh - var(--header-h, 110px));
    display:flex; align-items:center;
    padding:80px 60px;
    position:relative; overflow:hidden;
  }
  /* dark overlay */
  .hero::before {
    content:''; position:absolute; inset:0; z-index:0;
    background:linear-gradient(to right, rgba(10,30,60,0.85) 40%, rgba(10,30,60,0.35) 100%);
  }
  .hero-text {
    flex:1; z-index:2; max-width:600px; position:relative;
  }
  .hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(255,255,255,0.15); border:1.5px solid rgba(255,255,255,0.3);
    border-radius:20px; padding:6px 16px; font-size:0.82rem;
    font-weight:700; color:rgba(255,255,255,0.92); margin-bottom:22px; letter-spacing:.5px;
    backdrop-filter:blur(4px);
  }
  .hero h1 {
    font-family:'Pacifico',cursive; font-size:3.6rem; line-height:1.12;
    color:var(--white); margin-bottom:20px;
    text-shadow:0 2px 20px rgba(0,0,0,0.3);
  }
  .hero h1 span { color:var(--orange); }
  .hero p {
    font-size:1.1rem; color:rgba(255,255,255,0.88); line-height:1.75;
    margin-bottom:36px; max-width:500px;
  }
  .hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
  .btn-primary {
    background:var(--orange); color:white; font-weight:800;
    border:none; border-radius:30px; padding:15px 34px; font-size:1rem;
    cursor:pointer; box-shadow:0 6px 24px rgba(245,166,35,0.45);
    transition:all .25s; font-family:'Nunito',sans-serif;
  }
  .btn-primary:hover { background:#e09400; transform:translateY(-2px); box-shadow:0 8px 28px rgba(245,166,35,0.55); }
  .btn-secondary {
    background:transparent; color:white; font-weight:800;
    border:2.5px solid rgba(255,255,255,0.7); border-radius:30px;
    padding:15px 34px; font-size:1rem;
    cursor:pointer; transition:all .25s; font-family:'Nunito',sans-serif;
  }
  .btn-secondary:hover { background:rgba(255,255,255,0.15); border-color:white; }

  /* ── SOAP BUBBLES ── */
  .hero-bubble {
    position:absolute; border-radius:50%;
    pointer-events:none; z-index:1;
    background:
      radial-gradient(circle at 32% 30%,
        rgba(255,255,255,0.55) 0%,
        rgba(255,255,255,0.12) 22%,
        rgba(164,210,240,0.07) 55%,
        transparent 100%);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow:
      inset 3px 3px 8px rgba(255,255,255,0.18),
      inset -2px -2px 6px rgba(77,166,224,0.08),
      0 2px 12px rgba(77,166,224,0.08);
  }
  /* reflejo secundario pequeño */
  .hero-bubble::after {
    content:'';
    position:absolute; border-radius:50%;
    width:28%; height:18%;
    top:16%; left:18%;
    background:rgba(255,255,255,0.45);
    filter:blur(2px);
  }

  /* ── STATS ── */
  .stats-bar {
    background:linear-gradient(135deg, #071e30 0%, var(--blue-dark) 50%, #0d3d6e 100%);
    display:flex; justify-content:center;
    padding:0 40px;
    position:relative; overflow:hidden;
  }
  .stats-bar::before {
    content:''; position:absolute; inset:0; pointer-events:none;
    background:radial-gradient(ellipse at 50% 50%, rgba(77,166,224,0.08) 0%, transparent 70%);
  }
  .stat-item {
    flex:1; max-width:280px; text-align:center;
    padding:38px 24px;
    display:flex; flex-direction:column; align-items:center; gap:10px;
    border-right:1px solid rgba(255,255,255,0.07);
    position:relative; transition:background .3s;
  }
  .stat-item:last-child { border-right:none; }
  .stat-item:hover { background:rgba(255,255,255,0.03); }
  .stat-icon {
    width:54px; height:54px; border-radius:16px;
    background:rgba(245,166,35,0.12);
    border:1px solid rgba(245,166,35,0.22);
    display:flex; align-items:center; justify-content:center;
    transition:transform .3s, background .3s;
  }
  .stat-item:hover .stat-icon { transform:translateY(-3px); background:rgba(245,166,35,0.2); }
  .stat-icon svg { width:26px; height:26px; color:var(--orange); }
  .stat-num {
    font-size:2.4rem; font-weight:900; color:var(--orange-light);
    line-height:1; letter-spacing:-1px;
  }
  .stat-label {
    font-size:0.72rem; color:rgba(255,255,255,0.55);
    font-weight:700; letter-spacing:1.2px; text-transform:uppercase; line-height:1.4;
  }
  .stat-stars { display:flex; gap:4px; }
  .stat-stars svg { width:22px; height:22px; color:var(--orange); fill:var(--orange); }

  /* ── SECTIONS ── */
  .section { padding:80px 60px; }

  /* ── WAVE DIVIDERS ── */
  .wave-sep { display:block; overflow:hidden; line-height:0; margin:-2px 0; pointer-events:none; }
  .wave-sep svg { display:block; width:100%; height:auto; }

  .section-title { text-align:center; margin-bottom:60px; }

  .section-tag {
    display:inline-block;
    font-family:'Nunito',sans-serif; font-weight:800;
    font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--blue); background:rgba(27,111,174,0.1);
    border:1.5px solid rgba(27,111,174,0.22);
    padding:5px 16px; border-radius:999px;
    margin-bottom:14px;
  }

  .section-title h2 {
    font-family:'Pacifico',cursive;
    font-size:2.6rem; line-height:1.2;
    background:linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    background-clip:text;
    filter:drop-shadow(0 2px 8px rgba(14,74,122,0.12));
  }

  .section-title p {
    color:var(--gray); margin-top:12px; font-size:1.05rem;
    max-width:480px; margin-inline:auto; line-height:1.7;
  }

  .section-title .st-divider {
    display:flex; align-items:center; justify-content:center;
    gap:10px; margin:18px auto 0;
  }
  .section-title .st-divider::before,
  .section-title .st-divider::after {
    content:''; display:block;
    width:48px; height:3px; border-radius:999px;
    background:linear-gradient(90deg, var(--orange), var(--orange-light));
  }
  .section-title .st-divider span { font-size:1rem; line-height:1; }

  /* legacy underline kept for compat */
  .section-title .underline { display:none; }

  /* ── SERVICE CARD WITH IMAGE ── */
  .services-grid-wrap { max-width:100%; margin:0 auto; }
  .services-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
  }
  .services-cta { text-align:center; margin-top:44px; }
  .services-cta a {
    display:inline-flex; align-items:center; gap:10px;
    background:var(--blue); color:white; font-weight:800;
    border-radius:30px; padding:14px 32px; font-size:0.97rem;
    text-decoration:none; transition:all .25s;
    box-shadow:0 6px 20px rgba(27,111,174,0.3);
  }
  .services-cta a:hover { background:var(--blue-dark); transform:translateY(-2px); box-shadow:0 10px 28px rgba(27,111,174,0.4); }
  .services-cta a svg { width:18px; height:18px; }
  .service-card {
    background:white; border-radius:24px; padding:0;
    box-shadow:0 4px 24px rgba(27,111,174,0.08);
    border:2px solid transparent; transition:all .35s;
    text-align:center; overflow:hidden;
  }
  .service-card:hover {
    border-color:var(--blue-light); transform:translateY(-7px);
    box-shadow:0 16px 48px rgba(27,111,174,0.18);
  }
  .service-card-img {
    height:200px; overflow:hidden;
    border-radius:22px 22px 0 0; position:relative;
  }
  .service-card-img img {
    width:100%; height:100%; object-fit:cover; display:block;
    transition:transform .45s ease;
  }
  .service-card:hover .service-card-img img { transform:scale(1.06); }
  .service-card-placeholder {
    height:200px; border-radius:22px 22px 0 0;
    background:linear-gradient(135deg, var(--blue-light), var(--blue));
    display:flex; align-items:center; justify-content:center;
    overflow:hidden; position:relative;
  }
  .service-card-placeholder::after {
    content:''; position:absolute; inset:0;
    background:radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
  }
  .service-card-placeholder svg { width:64px; height:64px; color:rgba(255,255,255,0.5); }
  .service-card-body { padding:26px 26px 30px; }
  .service-icon-wrap {
    display:flex; align-items:center; justify-content:center;
    width:60px; height:60px; border-radius:18px;
    background:linear-gradient(135deg,rgba(27,111,174,0.1),rgba(77,166,224,0.12));
    margin:0 auto 14px;
  }
  .service-icon-wrap svg { width:30px; height:30px; color:var(--blue); }
  .service-card h3 { font-size:1.1rem; font-weight:800; color:var(--blue-dark); margin-bottom:9px; }
  .service-card p { font-size:0.88rem; color:var(--gray); line-height:1.6; }
  .svc-note {
    display:flex; align-items:flex-start; gap:6px;
    margin-top:10px; padding:8px 12px;
    background:rgba(245,166,35,0.10); border-left:3px solid var(--orange);
    border-radius:0 6px 6px 0;
    font-size:0.82rem !important; color:var(--blue-dark) !important;
    font-style:italic; line-height:1.5;
  }
  .service-price {
    display:inline-block; margin-top:14px;
    background:var(--orange); color:white; font-weight:800;
    border-radius:20px; padding:6px 18px; font-size:0.88rem;
  }

  /* ── SWIPER SERVICES (mobile) ── */
  .swiper-services { display:none; padding-bottom:48px !important; }
  .swiper-services .swiper-slide { padding:8px 4px 16px; }
  .swiper-services .service-card { margin:0; }
  .swiper-services .service-card-img { height:180px; }
  .swiper-services .service-card-placeholder { height:180px; }
  .swiper-services .swiper-pagination-bullet-active { background:var(--blue); }

  /* ── WHY US — two-column layout ── */
  .why-section {
    background:linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding:0; overflow:hidden;
  }
  .why-inner {
    display:flex; align-items:stretch; min-height:580px;
  }
  .why-img-col {
    flex:0 0 55%; overflow:hidden; position:relative;
  }
  .why-img-col img {
    width:100%; height:100%; object-fit:cover; display:block;
    transition:transform .6s ease;
  }
  .why-img-col img:hover { transform:scale(1.03); }
  .why-cards-col {
    flex:0 0 45%; padding:60px 48px;
    display:flex; flex-direction:column; justify-content:center;
  }
  .why-section-title { margin-bottom:32px; }
  .why-section-title .section-tag {
    color:var(--orange-light); background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.2);
  }
  .why-section-title h2 {
    font-family:'Pacifico',cursive; font-size:2.1rem; color:white;
    background:none; -webkit-text-fill-color:white; filter:none;
    text-shadow:0 2px 16px rgba(0,0,0,0.25);
  }
  .why-section-title p { color:rgba(255,255,255,0.72); margin-top:10px; font-size:0.97rem; max-width:100%; }
  .why-section-title p:first-of-type { color:rgba(255,255,255,0.95); font-size:1.08rem; font-weight:700; font-style:italic; }
  .why-section-title .st-divider::before,
  .why-section-title .st-divider::after { background:linear-gradient(90deg,var(--orange),var(--orange-light)); }
  .why-section-title .underline { display:none; }
  .why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
  .why-card {
    text-align:center;
    background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.18);
    border-radius:18px; padding:24px 20px; text-align:center; transition:background .3s;
  }
  .why-card:hover { background:rgba(255,255,255,0.18); }
  .why-icon {
    display:flex; justify-content:center; align-items:center;
    width:52px; height:52px; border-radius:14px;
    background:rgba(255,255,255,0.15); margin:0 auto 12px;
  }
  .why-icon svg { width:26px; height:26px; color:var(--orange-light); }
  .why-card h3 { color:white; font-size:0.95rem; font-weight:800; margin-bottom:7px; }
  .why-card p { color:rgba(255,255,255,0.7); font-size:0.82rem; line-height:1.6; }

  /* ── AWARDS ── */
  .awards-strip {
    display:flex; gap:14px; margin-top:18px;
    justify-content:center;
  }
  .awards-strip .award-card { max-width:260px; }
  .award-card {
    flex:1; display:flex; align-items:center; gap:12px;
    background:rgba(255,255,255,0.07);
    border:1.5px solid rgba(245,166,35,0.35);
    border-radius:18px; padding:14px 16px;
    position:relative; overflow:hidden;
    transition:transform 0.25s, box-shadow 0.25s;
  }
  .award-card:hover {
    transform:translateY(-3px);
    box-shadow:0 8px 28px rgba(0,0,0,0.2);
  }
  .award-card::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(135deg,rgba(245,166,35,0.08) 0%,transparent 60%);
  }
  .award-badge {
    width:46px; height:46px; border-radius:14px; flex-shrink:0;
    background:linear-gradient(135deg,#f5a623,#ffc55a);
    display:flex; align-items:center; justify-content:center;
    font-size:1.4rem;
    box-shadow:0 4px 14px rgba(245,166,35,0.4);
    position:relative; z-index:1;
  }
  .award-info { position:relative; z-index:1; }
  .award-info strong {
    display:block; color:var(--orange-light);
    font-family:'Pacifico',cursive; font-size:0.82rem; line-height:1.3;
  }
  .award-info span {
    color:rgba(255,255,255,0.55); font-size:0.7rem; line-height:1.4;
    display:block; margin-top:2px;
  }
  .award-rank {
    position:absolute; top:8px; right:10px;
    font-size:0.6rem; font-weight:900; letter-spacing:.06em; text-transform:uppercase;
    color:var(--orange); opacity:0.7;
  }

  /* ── MISSION / VISION ── */
  .mv-section {
    padding:100px 60px;
    background:linear-gradient(160deg,#e8f4fd 0%,#ffffff 45%,#fff8f0 100%);
    position:relative; overflow:hidden;
  }
  .mv-section::before {
    content:''; position:absolute;
    width:560px; height:560px; border-radius:50%;
    background:radial-gradient(circle, rgba(27,111,174,0.08) 0%, transparent 70%);
    top:-180px; left:-180px; pointer-events:none;
  }
  .mv-section::after {
    content:''; position:absolute;
    width:480px; height:480px; border-radius:50%;
    background:radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
    bottom:-140px; right:-140px; pointer-events:none;
  }
  .mv-section > * { position:relative; z-index:1; }

  .mv-grid { display:grid; grid-template-columns:1fr 1fr; gap:36px; }

  .mv-card {
    border-radius:32px; overflow:hidden;
    box-shadow:0 24px 64px rgba(14,74,122,0.13), 0 4px 16px rgba(0,0,0,0.05);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
  }
  .mv-card:hover {
    transform:translateY(-6px);
    box-shadow:0 32px 80px rgba(14,74,122,0.18), 0 6px 20px rgba(0,0,0,0.07);
  }

  .mv-card-header {
    padding:44px 36px 64px; text-align:center; position:relative;
  }
  .mv-card.mission .mv-card-header {
    background:linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  }
  .mv-card.vision .mv-card-header {
    background:linear-gradient(135deg, #c96b00 0%, var(--orange) 60%, var(--orange-light) 100%);
  }
  .mv-card-header::after {
    content:''; position:absolute;
    bottom:-1px; left:0; right:0; height:44px;
    background:white;
    border-radius:50% 50% 0 0 / 100% 100% 0 0;
  }
  .mv-card-header::before {
    content:''; position:absolute; inset:0;
    background-image:radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size:22px 22px;
    pointer-events:none;
  }

  .mv-icon-ring {
    width:86px; height:86px; border-radius:50%;
    background:rgba(255,255,255,0.18);
    border:2.5px solid rgba(255,255,255,0.35);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 18px; font-size:2.6rem;
    box-shadow:0 4px 20px rgba(0,0,0,0.12);
    position:relative; z-index:1;
  }
  .mv-card-header h3 {
    font-family:'Pacifico',cursive; font-size:1.9rem;
    color:white; position:relative; z-index:1;
    text-shadow:0 2px 12px rgba(0,0,0,0.18);
  }

  .mv-card-body { background:white; padding:20px 36px 40px; }
  .mv-card-body p {
    font-size:0.97rem; line-height:1.82; color:#555;
    border-left:3px solid; padding-left:16px; margin-bottom:24px;
  }
  .mv-card.mission .mv-card-body p { border-color:var(--blue-light); }
  .mv-card.vision  .mv-card-body p { border-color:var(--orange-light); }

  .mv-values { display:flex; flex-wrap:wrap; gap:8px; }
  .mv-value-pill {
    padding:6px 14px; border-radius:999px;
    font-size:0.8rem; font-weight:700; line-height:1;
  }
  .mv-card.mission .mv-value-pill { background:rgba(27,111,174,0.1); color:var(--blue-dark); }
  .mv-card.vision  .mv-value-pill { background:rgba(245,166,35,0.15); color:#7a5000; }

  /* ── GALLERY ── */
  .gallery-section {
    padding:80px 0 30px;
    background:linear-gradient(160deg,#fdf8f3 0%,#f7f3ee 60%,#fdf6f0 100%);
    overflow:hidden; position:relative;
  }
  .gallery-section::before,
  .gallery-section::after {
    content:''; position:absolute; top:0; bottom:0; width:160px; z-index:5; pointer-events:none;
  }
  .gallery-section::before { left:0;  background:linear-gradient(90deg,  #f7f3ee 40%, transparent); }
  .gallery-section::after  { right:0; background:linear-gradient(-90deg, #f7f3ee 40%, transparent); }
  .gallery-section .section-title p { margin-top:20px; }
  .gallery-section .section-title { margin-bottom:20px; }
  /* Marquee container */
  .gallery-marquee { overflow:hidden; padding:16px 0 40px; cursor:grab; }
  .gallery-marquee.dragging { cursor:grabbing; }
  .gallery-track {
    display:flex; gap:24px; width:max-content;
    animation: gallery-scroll 50s linear infinite;
  }
  .gallery-track:hover { animation-play-state:paused; }
  @keyframes gallery-scroll {
    from { transform:translateX(0); }
    to   { transform:translateX(-50%); }
  }

  .gallery-slide {
    width:300px;
    display:flex; justify-content:center;
    flex-shrink:0;
  }

  /* Polaroid card */
  .gallery-card {
    width:100%;
    background:white;
    padding:10px 10px 50px;
    border-radius:4px;
    position:relative;
    box-shadow:0 14px 40px rgba(14,74,122,0.16), 0 3px 10px rgba(0,0,0,0.07);
    transition:box-shadow 0.3s;
    cursor:pointer;
    transform:rotate(var(--rot, 0deg));
  }

  .gallery-card:hover { box-shadow:0 20px 52px rgba(14,74,122,0.28); }

  /* Photo inside the polaroid */
  .gallery-card img {
    width:100%; aspect-ratio:4/5;
    object-fit:cover; display:block;
    border-radius:2px;
    transition:transform 0.5s ease;
  }
  .gallery-card:hover img { transform:scale(1.04); }

  /* Caption below photo (polaroid label) */
  .gallery-card-caption {
    position:absolute; bottom:0; left:0; right:0;
    height:50px; display:flex; align-items:center; justify-content:center;
    font-family:'Pacifico',cursive; font-size:0.82rem;
    color:var(--blue-dark); opacity:0.75;
    padding:0 10px; text-align:center;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }

  /* Paw print decoration */
  .gallery-card::after {
    content:'🐾';
    position:absolute; bottom:10px; left:50%; transform:translateX(-50%);
    font-size:1.1rem; opacity:0.18; pointer-events:none;
  }
  .gallery-card .gallery-card-caption ~ * { display:none; }

  @media(max-width:900px){ .gallery-slide { width:260px; } }
  @media(max-width:600px){ .gallery-card { padding:8px 8px 44px; } }
  @media(max-width:768px){
    .gallery-section { overflow:visible; }
    .gallery-card { box-shadow:none; }
    .gallery-section::before,
    .gallery-section::after { display:none; }
    .gallery-marquee {
      overflow-x: scroll;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-x;
      scrollbar-width: none;
      cursor: default;
      padding: 0 7.5vw;
    }
    .gallery-marquee::-webkit-scrollbar { display:none; }
    .gallery-track { animation:none; }
    .gallery-slide {
      width: 85vw;
      scroll-snap-align: center;
    }
  }

  /* ── CONTACT ── */
  .contact-section { background:var(--cream); padding:80px 60px; }
  .contact-layout {
    display:grid; grid-template-columns:1.2fr 1fr;
    gap:24px; align-items:stretch;
  }
  .contact-inner {
    background:white; border-radius:32px;
    box-shadow:0 20px 60px rgba(14,74,122,0.18), 0 4px 16px rgba(14,74,122,0.10);
    overflow:hidden; display:grid; grid-template-columns:1fr 1fr;
  }
  .contact-map {
    border-radius:24px; overflow:hidden;
    box-shadow:0 20px 60px rgba(14,74,122,0.18), 0 4px 16px rgba(14,74,122,0.10);
    min-height:440px;
  }
  .contact-map iframe { width:100%; height:100%; border:0; display:block; }
  .contact-info {
    background:var(--blue-dark); padding:48px 40px;
    display:flex; flex-direction:column; gap:28px;
  }
  .contact-info h3 { font-family:'Pacifico',cursive; font-size:1.8rem; color:white; margin-bottom:8px; }
  .contact-detail { display:flex; align-items:flex-start; gap:14px; }
  .ci-icon {
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; border-radius:12px;
    background:rgba(255,255,255,0.12); flex-shrink:0; margin-top:2px;
  }
  .ci-icon svg { width:20px; height:20px; color:var(--orange-light); }
  .contact-detail strong { color:var(--orange-light); font-size:0.82rem; display:block; letter-spacing:.5px; }
  .contact-detail span { color:rgba(255,255,255,0.85); font-size:0.9rem; line-height:1.5; }
  .contact-detail a { color:rgba(255,255,255,0.85); text-decoration:none; font-size:0.9rem; }
  .contact-detail a:hover { color:var(--orange-light); }
  .social-links { display:flex; gap:12px; margin-top:10px; }
  .social-btn {
    background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.25);
    border-radius:12px; padding:10px 16px; color:white; font-size:0.85rem;
    font-weight:700; text-decoration:none; transition:background .2s;
    display:flex; align-items:center; gap:7px;
  }
  .social-btn svg { width:16px; height:16px; }
  .social-btn:hover { background:rgba(255,255,255,0.28); }
  .contact-form { padding:48px 40px; }
  .contact-form h3 { font-family:'Pacifico',cursive; font-size:1.5rem; color:var(--blue-dark); margin-bottom:24px; }
  .form-group { margin-bottom:18px; }
  .form-group label { display:block; font-size:0.82rem; font-weight:700; color:var(--blue-dark); margin-bottom:6px; letter-spacing:.4px; }
  .form-group input, .form-group select, .form-group textarea {
    width:100%; padding:12px 16px; border:2px solid #e5e7eb;
    border-radius:12px; font-size:0.9rem; font-family:'Nunito',sans-serif;
    transition:border-color .25s, box-shadow .25s; outline:none; background:var(--cream);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color:var(--blue-light);
    box-shadow:0 0 0 4px rgba(77,166,224,0.18);
  }
  .form-group textarea { resize:vertical; min-height:90px; }
  .btn-submit {
    width:100%; background:var(--orange); color:white; font-weight:800;
    border:none; border-radius:30px; padding:14px; font-size:1rem;
    cursor:pointer; font-family:'Nunito',sans-serif;
    box-shadow:0 6px 20px rgba(245,166,35,0.3); transition:all .25s;
  }
  .btn-submit:hover { background:#e09400; transform:translateY(-2px); }

  /* ── MARQUEE ── */
  .marquee-strip {
    background: var(--orange);
    overflow: hidden;
    padding: 16px 0;
    border-top: 3px solid var(--orange-light);
    border-bottom: 3px solid var(--orange-light);
  }
  .marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee-scroll 32s linear infinite;
    will-change: transform;
  }
  .marquee-track span {
    font-family: 'Pacifico', cursive;
    font-size: 1.15rem;
    color: var(--blue-dark);
    padding: 0 8px;
  }
  .marquee-sep {
    font-size: 1.1rem;
    padding: 0 6px;
    opacity: 0.75;
  }
  .marquee-strip:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── FOOTER ── */
  footer { background:#071e30; }

  .footer-main {
    display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:48px; padding:70px 60px 52px;
    border-top:3px solid var(--orange);
  }

  .footer-brand { display:flex; flex-direction:column; gap:18px; }
  .footer-logo-wrap {
    display:inline-flex; align-items:center; justify-content:center;
    background:white; border-radius:50%;
    width:110px; height:110px; flex-shrink:0;
  }
  .footer-logo { width:140px; height:auto; }
  .footer-tagline {
    font-size:0.9rem; color:rgba(255,255,255,0.6); line-height:1.7; max-width:260px;
  }
  .footer-social { display:flex; gap:10px; margin-top:4px; }
  .footer-social a {
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; border-radius:12px;
    background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
    color:rgba(255,255,255,0.7); text-decoration:none;
    transition:all .25s;
  }
  .footer-social a svg { width:18px; height:18px; }
  .footer-social a:hover { background:var(--orange); border-color:var(--orange); color:white; transform:translateY(-3px); }

  .footer-col { display:flex; flex-direction:column; gap:16px; }
  .footer-col h4 {
    font-family:'Pacifico',cursive; font-size:1.05rem;
    color:white; position:relative; padding-bottom:12px;
  }
  .footer-col h4::after {
    content:''; position:absolute; left:0; bottom:0;
    width:32px; height:3px; background:var(--orange); border-radius:2px;
  }
  .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
  .footer-col ul li a {
    display:flex; align-items:center; gap:8px;
    color:rgba(255,255,255,0.58); text-decoration:none;
    font-size:0.875rem; font-weight:600;
    transition:color .2s, gap .2s;
  }
  .footer-col ul li a svg { width:14px; height:14px; flex-shrink:0; color:var(--orange); }
  .footer-col ul li a:hover { color:var(--orange-light); gap:12px; }

  .footer-contact-item {
    display:flex; align-items:flex-start; gap:10px;
    color:rgba(255,255,255,0.58); font-size:0.875rem; line-height:1.55;
  }
  .footer-contact-item svg { width:15px; height:15px; color:var(--orange); flex-shrink:0; margin-top:3px; }
  .footer-contact-item a { color:rgba(255,255,255,0.58); text-decoration:none; transition:color .2s; }
  .footer-contact-item a:hover { color:var(--orange-light); }

  .footer-schedule { display:flex; flex-direction:column; gap:8px; }
  .schedule-row {
    display:flex; justify-content:space-between; align-items:center;
    font-size:0.82rem; padding:6px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
    color:rgba(255,255,255,0.58);
  }
  .schedule-row .day { font-weight:700; color:rgba(255,255,255,0.78); }
  .schedule-row .time { color:var(--orange-light); font-weight:700; }
  .schedule-row .closed { color:rgba(255,100,100,0.7); font-weight:700; }

  .footer-bottom {
    border-top:1px solid rgba(255,255,255,0.07);
    padding:20px 60px;
    display:flex; align-items:center; justify-content:space-between;
    font-size:0.78rem; color:rgba(255,255,255,0.35);
  }
  .footer-bottom a { color:rgba(255,255,255,0.4); text-decoration:none; transition:color .2s; }
  .footer-bottom a:hover { color:var(--orange-light); }
  .footer-bottom-brand { font-family:'Pacifico',cursive; font-size:0.9rem; color:var(--orange-light); }

  @media(max-width:900px) {
    .footer-main { grid-template-columns:1fr 1fr; gap:36px; padding:50px 32px 40px; }
  }
  @media(max-width:600px) {
    .footer-main { grid-template-columns:1fr; gap:32px; padding:40px 24px 36px; }
    .footer-bottom { flex-direction:column; gap:8px; text-align:center; padding:16px 24px; }
  }

  /* ── ICONOS EN BOTONES ── */
  .btn-primary, .btn-secondary, .nav-cta, .btn-submit, .float-btn {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
  }
  .btn-primary svg, .btn-secondary svg, .nav-cta svg,
  .btn-submit svg, .float-btn svg { width:17px; height:17px; flex-shrink:0; }

  /* ── FLOATING BUTTON ── */
  .float-btn {
    position:fixed; bottom:52px; right:30px; z-index:500;
    background:var(--orange); color:white;
    border:none; border-radius:50px; padding:14px 24px;
    font-size:1rem; font-weight:800; font-family:'Nunito',sans-serif;
    cursor:pointer; display:flex; align-items:center; gap:8px;
    box-shadow:0 6px 20px rgba(245,166,35,0.45);
    animation:pulse-btn 2.5s ease-in-out infinite;
  }
  @keyframes pulse-btn {
    0%,100% { box-shadow:0 6px 20px rgba(245,166,35,0.45); }
    50%      { box-shadow:0 8px 30px rgba(245,166,35,0.7), 0 0 0 10px rgba(245,166,35,0.08); }
  }

  /* ── RESPONSIVE ── */
  @media(max-width:900px) {
    .why-inner { flex-direction:column; }
    .why-img-col { flex:none; height:320px; }
    .why-img-col img { object-position:center 30%; }
    .why-cards-col { flex:none; padding:40px 32px; }
    .why-grid { grid-template-columns:1fr 1fr; }
    .services-grid { grid-template-columns:repeat(3,1fr); gap:18px; }
  }
  /* ── HAMBURGER ── */
  .nav-hamburger {
    display:none;
    flex-direction:column; justify-content:center; align-items:center; gap:5px;
    width:40px; height:40px; background:none; border:none; cursor:pointer; padding:4px;
    border-radius:10px; transition:background .2s; flex-shrink:0;
  }
  .nav-hamburger span {
    display:block; width:22px; height:2px; background:var(--blue-dark);
    border-radius:2px; transition:transform .3s, opacity .3s, width .3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity:0; width:0; }
  .nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display:none;
    position:absolute; top:100%; left:0; right:0; z-index:199;
    background:white;
    box-shadow:0 12px 40px rgba(14,74,122,.18);
    padding:0 20px;
    max-height:0; overflow:hidden;
    transition:max-height .35s ease, padding .35s ease;
  }
  .mobile-menu.open {
    max-height:420px;
    padding:16px 20px 24px;
  }
  .mobile-links { list-style:none; display:flex; flex-direction:column; gap:4px; margin-bottom:20px; }
  .mobile-link {
    display:flex; align-items:center; gap:12px;
    padding:13px 16px; border-radius:14px;
    text-decoration:none; color:var(--blue-dark);
    font-weight:700; font-size:0.97rem;
    transition:background .2s, color .2s;
  }
  .mobile-link i { width:18px; height:18px; flex-shrink:0; color:var(--blue); }
  .mobile-link:hover, .mobile-link:active { background:rgba(27,111,174,.08); color:var(--blue); }
  .mobile-menu-bottom {
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding-top:16px; border-top:1.5px solid rgba(27,111,174,.08);
  }
  .mobile-cta { width:100%; justify-content:center; display:flex; align-items:center; gap:8px; }

  @media(max-width:768px) {
    .topbar { display:none; }
    .header-logo { display:none; }
    .site-header { position:sticky; top:0; z-index:200; }
    nav { padding:10px 16px; justify-content:space-between; }
    .nav-left { display:flex; align-items:center; }
    .nav-links { display:none; }
    .nav-left::before {
      content:'';
      display:block;
      width:44px; height:44px;
      background:url('./logo.png') center/contain no-repeat;
      flex-shrink:0;
    }
    .nav-right { display:none; }
    .nav-hamburger { display:flex; }
    .mobile-menu { display:block; }
    .hero {
      padding:60px 24px 50px;
      background-position:center top;
      min-height: calc(100dvh - var(--header-h, 64px));
    }
    .hero::before {
      background:linear-gradient(to bottom, rgba(10,30,60,0.82) 60%, rgba(10,30,60,0.55) 100%);
    }
    .hero h1 { font-size:2.4rem; }
    .hero-btns { justify-content:flex-start; }
    .section { padding:50px 24px; }
    .services-grid { grid-template-columns:1fr; }
    .swiper-services { display:none; }
    .why-img-col { height:260px; }
    .why-cards-col { padding:32px 24px; }
    .why-grid { grid-template-columns:1fr; gap:12px; }
    .awards-strip { flex-direction:column; }
    .awards-strip .award-card { max-width:100%; }
    .mv-section { padding:60px 24px; }
    .mv-grid { grid-template-columns:1fr; }
    .mv-card-header { padding:36px 28px 56px; }
    .mv-card-body { padding:16px 28px 32px; }
}

/* ══════════════════════════════════════════════
   TOAST NOTIFICATIONS
══════════════════════════════════════════════ */
.toast-container {
  position:fixed; bottom:28px; right:28px; z-index:9999;
  display:flex; flex-direction:column; gap:12px; pointer-events:none;
}
.toast {
  min-width:320px; max-width:420px; background:white;
  border-radius:18px; box-shadow:0 8px 40px rgba(0,0,0,.18);
  padding:18px 20px; display:flex; align-items:flex-start; gap:14px;
  pointer-events:all; position:relative; overflow:hidden;
  border-left:4px solid;
  transform:translateX(120%); opacity:0;
  transition:transform .42s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}
.toast.show { transform:translateX(0); opacity:1; }
.toast.success { border-left-color:#16a34a; }
.toast.error   { border-left-color:#dc2626; }
.toast-icon {
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; font-size:1.05rem; font-weight:900;
}
.toast.success .toast-icon { background:rgba(22,163,74,.12); color:#16a34a; }
.toast.error   .toast-icon { background:rgba(220,38,38,.12);  color:#dc2626; }
.toast-body { flex:1; min-width:0; }
.toast-title { font-weight:900; font-size:.93rem; color:#1a1a2e; margin-bottom:3px; }
.toast-msg   { font-size:.84rem; color:#6b7280; font-weight:600; line-height:1.5; }
.toast-close {
  background:none; border:none; cursor:pointer; color:#9ca3af;
  font-size:1rem; padding:0; line-height:1; flex-shrink:0;
  transition:color .2s; align-self:flex-start;
}
.toast-close:hover { color:#374151; }
.toast-bar {
  position:absolute; bottom:0; left:0; right:0; height:3px;
  transform-origin:left; animation:toastBar 5s linear forwards;
}
.toast.success .toast-bar { background:#16a34a; }
.toast.error   .toast-bar { background:#dc2626; }
@keyframes toastBar { from{transform:scaleX(1)} to{transform:scaleX(0)} }

/* Submit button loading spinner */
.btn-spinner {
  display:inline-block; width:15px; height:15px;
  border:2px solid rgba(255,255,255,.4); border-top-color:white;
  border-radius:50%; animation:spin .65s linear infinite;
  margin-right:8px; vertical-align:middle;
}
@keyframes spin { to { transform:rotate(360deg); } }

@media(max-width:480px) {
  .toast-container { bottom:16px; right:16px; left:16px; }
  .toast { min-width:unset; }
    .contact-section { padding:50px 24px; }
    .contact-layout { grid-template-columns:1fr; }
    .contact-inner { grid-template-columns:1fr; }
    .contact-map { min-height:280px; }
    .stats-bar { flex-wrap:wrap; }
    .stat-item { min-width:50%; border-right:none; border-bottom:1px solid rgba(255,255,255,0.12); }
    .float-btn { bottom:20px; right:20px; padding:12px 20px; font-size:0.9rem; }
  }
  @media(max-width:480px) {
    .why-grid { grid-template-columns:1fr; }
    .hero h1 { font-size:2rem; }
  }

  /* ── REVIEWS ── */
  .reviews-section { background:#ffffff; padding:80px 60px 0; position:relative; overflow:hidden; }
  .reviews-google-badge {
    display:flex; align-items:center; justify-content:center; gap:20px;
    margin:32px auto 52px; background:#f8fbff;
    border:1.5px solid rgba(27,111,174,0.12); border-radius:22px;
    padding:20px 40px; width:fit-content;
    box-shadow:0 4px 20px rgba(14,74,122,0.07);
  }
  .rgb-divider { width:1px; height:46px; background:rgba(0,0,0,0.1); }
  .rgb-score { font-size:2.4rem; font-weight:900; color:#202124; line-height:1; }
  .rgb-stars { color:#fbbc04; font-size:1.3rem; letter-spacing:2px; line-height:1; margin-bottom:4px; }
  .rgb-count { font-size:0.82rem; color:#70757a; font-weight:700; }
  .reviews-swiper-wrap { max-width:1400px; margin:0 auto; position:relative; }
  .reviews-swiper { overflow:hidden; padding-bottom:52px; }
  .review-card {
    background:white; border-radius:22px; padding:28px 24px 22px;
    box-shadow:0 4px 28px rgba(14,74,122,0.10), 0 1px 4px rgba(0,0,0,0.04);
    border:1.5px solid rgba(14,74,122,0.07);
    display:flex; flex-direction:column; gap:14px;
    transition:transform 0.25s, box-shadow 0.25s; cursor:default; height:100%;
  }
  .review-card:hover { transform:translateY(-5px); box-shadow:0 16px 48px rgba(14,74,122,0.16); }
  .rc-header { display:flex; align-items:center; gap:13px; }
  .rc-avatar {
    width:48px; height:48px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:1.1rem; color:white; flex-shrink:0;
  }
  .rc-name { font-weight:800; font-size:0.95rem; color:#202124; }
  .rc-date { font-size:0.76rem; color:#9aa0a6; font-weight:600; margin-top:2px; }
  .rc-stars { color:#fbbc04; font-size:1rem; letter-spacing:1.5px; }
  .rc-text { font-size:0.88rem; color:#4d5056; line-height:1.7; flex:1; }
  .rc-footer { display:flex; align-items:center; gap:7px; padding-top:12px; border-top:1px solid #f1f3f5; }
  .rc-footer span { font-size:0.75rem; color:#9aa0a6; font-weight:600; }
  .reviews-swiper-wrap .swiper-pagination-bullet { background:var(--blue); opacity:0.3; transition:all 0.2s; }
  .reviews-swiper-wrap .swiper-pagination-bullet-active { opacity:1; width:24px; border-radius:4px; }
  @media(max-width:900px) { .reviews-section { padding:60px 28px 40px; } }

/* ── CERTIFICATIONS SECTION ── */
.cert-section {
  padding: 90px 28px;
  background: linear-gradient(160deg, #071e30 0%, #0e3a5c 55%, #1b6fae 100%);
  position: relative;
  overflow: hidden;
}
.cert-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

/* Text column */
.cert-text-col { flex: 1; }
.cert-text-col .section-tag {
  background: rgba(245,166,35,.18);
  color: #f5a623;
  border: 1px solid rgba(245,166,35,.35);
}
.cert-heading {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 14px 0 0;
  font-family: 'Nunito', sans-serif;
}
.cert-divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, #f5a623, #ffc55a);
  border-radius: 4px;
  margin: 20px 0 24px;
}
.cert-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  margin-bottom: 28px;
}
.cert-body strong { color: #ffc55a; font-weight: 800; }

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}
.cert-check-wrap {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #f5a623, #ffc55a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(245,166,35,.4);
}
.cert-check-wrap svg {
  width: 14px;
  height: 14px;
  color: #071e30;
}

/* Photos column */
.cert-photos {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  flex-shrink: 0;
}

.cert-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  position: relative;
}
.cert-photo-card:focus { outline: 3px solid #f5a623; outline-offset: 4px; border-radius: 18px; }

.cert-photo-1 { transform: rotate(-3deg); }
.cert-photo-2 { transform: rotate(2.5deg); margin-bottom: 20px; }

.cert-photo-card img {
  width: 210px;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 4px solid rgba(255,255,255,.15);
  box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  display: block;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.cert-photo-card:hover img {
  transform: scale(1.04) rotate(0deg);
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 2px #f5a623;
}
.cert-photo-1:hover { transform: rotate(0deg); }
.cert-photo-2:hover { transform: rotate(0deg) translateY(-8px); }

/* Overlay on hover */
.cert-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  height: 280px;
  border-radius: 14px;
  background: rgba(7,30,48,.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.cert-photo-card:hover .cert-photo-overlay { opacity: 1; }
.cert-zoom-icon {
  width: 40px;
  height: 40px;
  color: #f5a623;
  stroke: #f5a623;
}
.cert-photo-overlay span {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cert-photo-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,.55);
  text-align: center;
  line-height: 1.4;
  max-width: 200px;
  letter-spacing: .01em;
}

/* ── CERT LIGHTBOX ── */
.cert-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(6px);
}
.cert-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.cert-lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(.88);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.cert-lightbox.active .cert-lb-inner { transform: scale(1); }
.cert-lb-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  border: 3px solid rgba(255,255,255,.12);
  object-fit: contain;
}
#certLbCaption {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-align: center;
  letter-spacing: .04em;
}
.cert-lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s;
  z-index: 10000;
}
.cert-lb-close:hover { background: rgba(255,255,255,.25); }
.cert-lb-close svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .cert-inner {
    flex-direction: column-reverse;
    gap: 48px;
    text-align: center;
  }
  .cert-divider { margin-left: auto; margin-right: auto; }
  .cert-list li  { justify-content: center; }
  .cert-photos   { justify-content: center; gap: 20px; }
  .cert-photo-card img { width: 170px; height: 228px; }
  .cert-photo-overlay  { width: 170px; height: 228px; }
  .cert-photo-1 { transform: rotate(-2.5deg); }
  .cert-photo-2 { transform: rotate(2deg); margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .cert-photo-card img { width: 138px; height: 184px; }
  .cert-photo-overlay  { width: 138px; height: 184px; }
  .cert-photos { gap: 14px; }
}
