/* ============================================================
   Dream MUN Sierra Leone — COMPLETE CSS (FIXED MOBILE DROPDOWN)
   ============================================================ */

   :root {
    --dm-primary: #071946;
    --dm-primary-2: #0c2f76;
    --dm-primary-3: #123e9c;
    --dm-red: #c8102e;
    --dm-red-2: #ff3152;
    --dm-gold: #f7c948;
    --dm-cyan: #56ccf2;
    --dm-ink: #111827;
    --dm-text: #344054;
    --dm-muted: #667085;
    --dm-line: rgba(15, 23, 42, .12);
    --dm-soft: #f6f8fc;
    --dm-white: #ffffff;
    --dm-glass: rgba(255,255,255,.78);
    --dm-dark-glass: rgba(7,25,70,.72);
    --dm-shadow: 0 22px 70px rgba(7,25,70,.16);
    --dm-shadow-soft: 0 12px 35px rgba(7,25,70,.10);
    --dm-radius-xl: 32px;
    --dm-radius-lg: 24px;
    --dm-radius-md: 16px;
    --dm-radius-sm: 10px;
    --dm-container: min(1180px, calc(100% - 40px));
  }
  
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dm-text);
    background: var(--dm-soft);
    overflow-x: hidden;
    line-height: 1.65;
  }
  body.menu-open { overflow: hidden; }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;
    background:
      radial-gradient(circle at 8% 8%, rgba(86,204,242,.14), transparent 28%),
      radial-gradient(circle at 92% 12%, rgba(200,16,46,.12), transparent 26%),
      linear-gradient(180deg, #fbfdff 0%, #f6f8fc 45%, #eef3ff 100%);
  }
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: .35;
    background-image: linear-gradient(rgba(7,25,70,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(7,25,70,.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 75%);
  }
  
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  p { margin: 0 0 1rem; }
  h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .75rem;
    font-family: Plus Jakarta Sans, Inter, system-ui, sans-serif;
    color: var(--dm-primary);
    line-height: 1.08;
    letter-spacing: -.04em;
  }
  
  .skip-link {
    position: fixed;
    left: 16px;
    top: -70px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--dm-primary);
    color: white;
    transition: top .2s ease;
  }
  .skip-link:focus { top: 16px; }
  :focus-visible { outline: 3px solid var(--dm-gold); outline-offset: 4px; }
  ::selection { background: var(--dm-red); color: white; }
  
  .container-modern { width: var(--dm-container); margin-inline: auto; }
  
  .section-modern { padding: clamp(72px, 9vw, 125px) 0; position: relative; }
  .section-modern.alt { background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(238,243,255,.95)); }
  
  .section-kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--dm-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    margin-bottom: 14px;
  }
  .section-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--dm-red), var(--dm-gold));
  }
  .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
    gap: 34px;
    align-items: end;
    margin-bottom: 44px;
  }
  .section-heading.center { display: block; text-align: center; max-width: 820px; margin-inline: auto; }
  .section-heading h2 { font-size: clamp(2.1rem, 5vw, 4.5rem); }
  .section-heading p { color: var(--dm-muted); font-size: 1.05rem; }
  
  /* Buttons */
  .dm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    min-height: 48px;
    font-weight: 900;
    letter-spacing: .01em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor: pointer;
    line-height: 1;
  }
  .dm-button.primary {
    color: white !important;
    background: linear-gradient(135deg, var(--dm-red), #e72f4b 48%, var(--dm-gold));
    box-shadow: 0 16px 36px rgba(200,16,46,.24);
  }
  .dm-button.secondary {
    color: var(--dm-primary) !important;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(7,25,70,.16);
    box-shadow: 0 12px 30px rgba(7,25,70,.08);
  }
  .dm-button.ghost {
    color: white !important;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.26);
    backdrop-filter: blur(12px);
  }
  .dm-button:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(7,25,70,.18); }
  .read-more-btn::after { content: "→"; transition: transform .25s ease; }
  .read-more-btn:hover::after { transform: translateX(4px); }
  
  /* Top bar */
  .dm-topbar {
    background: var(--dm-primary);
    color: rgba(255,255,255,.86);
    font-size: .86rem;
    padding: 8px 0;
  }
  .dm-topbar .container-modern { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
  .dm-social { display: flex; gap: 10px; align-items: center; }
  .dm-social a {
    width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.10); color: white; transition: .25s ease;
  }
  .dm-social a:hover { background: var(--dm-red); transform: translateY(-2px); }
  
  /* Header */
  .dm-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(7,25,70,.10);
  }
  .dm-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
  }
  .dm-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
  .dm-brand-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
  }
  .dm-brand-text strong { display:block; color: var(--dm-primary); font-family: Plus Jakarta Sans, sans-serif; font-size: 1.08rem; letter-spacing: -.03em; }
  .dm-brand-text span { display:block; color: var(--dm-muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  
  /* Hamburger button */
  .dm-menu-toggle {
    display: none;
    border: 0;
    background: var(--dm-primary);
    border-radius: 14px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  
  /* Navigation - DESKTOP */
  .dm-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
  }
  .dm-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .dm-menu a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 13px;
    border-radius: 999px;
    color: var(--dm-primary);
    font-weight: 850;
    font-size: .92rem;
    white-space: nowrap;
  }
  .dm-menu a:hover,
  .dm-menu a[aria-current="page"] { background: rgba(200,16,46,.08); color: var(--dm-red); }
  
  /* DROPDOWN STYLES */
  .dm-dropdown { position: relative; }
  .dropdown-toggle { cursor: pointer; }
  .dropdown-arrow { font-size: 12px; transition: transform 0.25s ease; }
  .dm-dropdown.dropdown-open .dropdown-arrow { transform: rotate(180deg); }
  
  .dm-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 310px;
    border-radius: 22px;
    padding: 12px;
    background: rgba(255,255,255,.95);
    box-shadow: var(--dm-shadow);
    border: 1px solid rgba(7,25,70,.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 100;
  }
  
  @media (min-width: 1081px) {
    .dm-dropdown:hover .dm-dropdown-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }
  
  .dm-dropdown.dropdown-open .dm-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dm-dropdown-panel a { 
    display: grid; 
    gap: 4px; 
    border-radius: 16px; 
    padding: 13px; 
    white-space: normal;
  }
  .dm-dropdown-panel a:hover { background: rgba(200,16,46,.08); }
  .dm-dropdown-panel span { color: var(--dm-muted); font-size: .78rem; font-weight: 600; }
  
  .dm-nav-cta { display: flex; align-items: center; gap: 10px; }
  
  /* Hero Sections */
  .dm-hero {
    position: relative;
    min-height: min(860px, calc(100vh - 60px));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: white;
    background: #071946;
  }
  .dm-hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(90deg, rgba(7,25,70,.98) 0%, rgba(7,25,70,.80) 44%, rgba(7,25,70,.26) 100%),
      var(--hero-image, url('../img/hero-conference.webp')) center/cover no-repeat;
    z-index:0;
  }
  .dm-hero::after {
    content:"";
    position:absolute;
    inset:-20%;
    background: radial-gradient(circle at 72% 20%, rgba(86,204,242,.24), transparent 26%), radial-gradient(circle at 22% 86%, rgba(200,16,46,.26), transparent 25%);
    animation: dmAura 9s ease-in-out infinite alternate;
    z-index:1;
  }
  @keyframes dmAura { from { transform: translate3d(-1%,0,0) scale(1); } to { transform: translate3d(1.5%,-1%,0) scale(1.05); } }
  .dm-hero .container-modern { position: relative; z-index: 2; padding: clamp(90px, 12vw, 155px) 0; }
  
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .68fr); gap: 46px; align-items: center; }
  .hero-eyebrow {
    display: inline-flex; align-items:center; gap: 10px; padding: 8px 12px; border-radius: 999px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px);
    color: rgba(255,255,255,.92); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem;
  }
  .hero-title { color: white; font-size: clamp(3rem, 7.8vw, 6.8rem); letter-spacing: -.07em; margin: 18px 0; }
  .hero-lead { color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.8vw, 1.35rem); max-width: 780px; }
  .hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 30px; }
  .hero-stats { display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
  .hero-stat { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); }
  .hero-stat strong { display:block; color: var(--dm-gold); font-size: 1.45rem; font-family: Plus Jakarta Sans, sans-serif; }
  .hero-stat span { color: rgba(255,255,255,.75); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
  
  .page-hero {
    min-height: 430px;
    display: grid;
    align-items: end;
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
    background: #071946;
    color: white;
  }
  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7,25,70,.94), rgba(12,47,118,.74), rgba(200,16,46,.44)), var(--page-image, url('../img/un-chamber.webp')) center/cover;
    z-index: 0;
  }
  .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 18%, rgba(247,201,72,.24), transparent 24%);
    z-index: 0;
  }
  .page-hero .container-modern { position: relative; z-index: 2; }
  .page-hero h1 { color: white; font-size: clamp(2.6rem, 7vw, 5.5rem); }
  .breadcrumb-modern { display: flex; gap: 10px; flex-wrap: wrap; color: rgba(255,255,255,.76); font-weight: 800; margin-bottom: 20px; }
  .breadcrumb-modern a { color: white; }
  
  /* Cards */
  .card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
  .card-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dm-card {
    position: relative;
    min-height: 100%;
    padding: 28px;
    border-radius: var(--dm-radius-lg);
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(7,25,70,.10);
    box-shadow: var(--dm-shadow-soft);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }
  .dm-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dm-red), var(--dm-gold), var(--dm-cyan));
    opacity: .85;
  }
  .dm-card:hover { transform: translateY(-10px); box-shadow: var(--dm-shadow); border-color: rgba(200,16,46,.25); }
  .dm-icon {
    width: 64px; height: 64px; border-radius: 22px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--dm-primary), var(--dm-primary-3)); color: white; font-size: 1.6rem; margin-bottom: 18px;
    box-shadow: 0 16px 30px rgba(7,25,70,.18);
  }
  .dm-card h3 { font-size: 1.45rem; }
  .dm-card p { color: var(--dm-muted); }
  
  .image-card { padding: 0; }
  .image-card img { width: 100%; height: 230px; object-fit: cover; border-radius: var(--dm-radius-lg) var(--dm-radius-lg) 0 0; }
  .image-card .card-body { padding: 24px; }
  .meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; color: var(--dm-muted); font-size: .9rem; font-weight: 700; }
  .badge-modern {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(200,16,46,.10);
    color: var(--dm-red);
    font-weight: 900;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  
  /* Grid layouts */
  .split-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(320px,.92fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
  }
  .media-stack { position: relative; min-height: 460px; }
  .media-stack img {
    position: absolute;
    object-fit: cover;
    border-radius: var(--dm-radius-lg);
    box-shadow: var(--dm-shadow);
    border: 8px solid rgba(255,255,255,.82);
  }
  .media-stack img:nth-child(1) { width: 72%; height: 68%; left: 0; top: 0; }
  .media-stack img:nth-child(2) { width: 58%; height: 56%; right: 0; bottom: 0; }
  .floating-note {
    position: absolute;
    right: 12%;
    top: 46%;
    max-width: 230px;
    border-radius: 22px;
    padding: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: var(--dm-shadow);
    border: 1px solid rgba(7,25,70,.10);
  }
  .floating-note strong { color: var(--dm-red); font-size: 1.7rem; font-family: Plus Jakarta Sans, sans-serif; }
  
  /* Impact band */
  .impact-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dm-primary), #0b2868 58%, #130c35);
    color: white;
  }
  .impact-band h2, .impact-band h3 { color: white; }
  .impact-band::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 18% 20%, rgba(86,204,242,.19), transparent 24%), radial-gradient(circle at 80% 80%, rgba(200,16,46,.22), transparent 26%);
    animation: dmAura 8s ease-in-out infinite alternate;
  }
  .impact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .impact-item { padding: 28px 20px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); text-align: center; }
  .impact-item strong { display: block; color: var(--dm-gold); font-size: clamp(2rem,4vw,3.6rem); font-family: Plus Jakarta Sans, sans-serif; line-height: 1; }
  .impact-item span { color: rgba(255,255,255,.76); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
  
  /* Horizontal scroll */
  .horizontal-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 10px 4px 24px;
    scrollbar-color: var(--dm-red) rgba(7,25,70,.10);
  }
  .horizontal-scroll > * { min-width: min(360px, 86vw); scroll-snap-align: start; }
  
  /* Timeline */
  .timeline-modern { position: relative; display: grid; gap: 18px; }
  .timeline-modern::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--dm-red), var(--dm-gold));
  }
  .timeline-item {
    position: relative;
    padding: 20px 20px 20px 62px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--dm-shadow-soft);
  }
  .timeline-item::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 24px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--dm-red);
    box-shadow: 0 0 0 6px rgba(200,16,46,.12);
  }
  
  /* Contact & Forms */
  .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
  .form-modern {
    background: white;
    border-radius: var(--dm-radius-lg);
    padding: 28px;
    box-shadow: var(--dm-shadow-soft);
    border: 1px solid rgba(7,25,70,.10);
  }
  .form-modern label { display: block; color: var(--dm-primary); font-weight: 900; margin-bottom: 8px; font-size: .9rem; }
  .form-modern input, .form-modern textarea, .form-modern select {
    width: 100%;
    border: 1px solid rgba(7,25,70,.16);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    background: #fff;
    color: var(--dm-ink);
  }
  .form-row-modern { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
  
  /* Application form specific */
  .form-section { display: none; }
  .form-section.active { display: block; }
  .form-section-title {
    text-align: center;
    color: var(--dm-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 12px;
  }
  .step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: white;
    border-radius: var(--dm-radius-lg);
    padding: 20px 16px;
    box-shadow: var(--dm-shadow-soft);
    flex-wrap: wrap;
  }
  .step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--dm-muted);
    background: var(--dm-soft);
    font-size: 0.85rem;
    transition: all 0.3s;
  }
  .step .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
    color: var(--dm-muted);
    font-weight: 900;
    border: 2px solid rgba(7,25,70,.12);
  }
  .step.active {
    background: rgba(200,16,46,.08);
    color: var(--dm-red);
  }
  .step.active .step-number {
    background: var(--dm-red);
    color: white;
    border-color: var(--dm-red);
  }
  .step.completed {
    color: var(--dm-primary);
    background: rgba(7,25,70,.05);
  }
  .step.completed .step-number {
    background: var(--dm-primary);
    color: white;
    border-color: var(--dm-primary);
  }
  
  .question-card {
    background: var(--dm-soft);
    border: 1px solid rgba(7,25,70,.08);
    border-radius: var(--dm-radius-md);
    padding: 20px;
    margin-bottom: 1.5rem;
  }
  .question-text {
    color: var(--dm-primary);
    font-weight: 900;
    margin-bottom: 1rem;
  }
  .radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 600;
    cursor: pointer;
    color: var(--dm-text);
  }
  .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4px 16px;
  }
  input.invalid, select.invalid, textarea.invalid {
    border-color: var(--dm-red) !important;
    box-shadow: 0 0 0 3px rgba(200,16,46,.1);
  }
  .conditional-field { margin-top: 0.8rem; }
  
  /* Footer */
  .dm-footer {
    position: relative;
    background: #061333;
    color: rgba(255,255,255,.76);
    padding: 74px 0 26px;
    overflow: hidden;
  }
  .dm-footer::before {
    content: "";
    position: absolute;
    inset: auto -10% -45% auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(200,16,46,.16);
    filter: blur(6px);
  }
  .footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
  }
  .dm-footer h3, .dm-footer h4 { color: white; }
  .dm-footer a { color: rgba(255,255,255,.82); display: inline-flex; margin: 6px 0; }
  .dm-footer a:hover { color: var(--dm-gold); }
  .footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  
  /* Back to top */
  .back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--dm-red);
    color: white;
    box-shadow: var(--dm-shadow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
    border: none;
    cursor: pointer;
  }
  .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
  
  /* WhatsApp float */
  .whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: float 3s ease-in-out infinite;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  
  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
  }
  
  /* ==================== MOBILE STYLES ==================== */
  @media (max-width: 1080px) {
    .dm-menu-toggle { display: flex; }
  
    .dm-nav-right {
      position: fixed;
      top: 0;
      right: 0;
      width: 85%;
      max-width: 320px;
      height: 100vh;
      background: white;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      padding: 80px 20px 30px;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      z-index: 999;
      box-shadow: -10px 0 40px rgba(0,0,0,.15);
      overflow-y: auto;
    }
    .dm-nav-right.is-open { transform: translateX(0); }
  
    .dm-menu {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .dm-menu li { width: 100%; }
    .dm-menu a {
      width: 100%;
      justify-content: flex-start;
      padding: 14px 16px;
      white-space: normal;
    }
  
    .dm-topbar { display: none; }
    .dm-nav-cta .dm-button { display: none; }
  
    /* MOBILE DROPDOWN FIX */
    .dm-dropdown { position: static; width: 100%; }
    .dropdown-toggle { width: 100%; justify-content: space-between; }
    
    .dm-dropdown-panel {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      width: 100% !important;
      margin-top: 8px;
      margin-bottom: 8px;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      box-shadow: none !important;
      background: #f5f7fb !important;
      border: 1px solid rgba(7,25,70,.12) !important;
      border-radius: 16px !important;
      padding: 8px !important;
      display: none !important;
    }
    
    .dm-dropdown.dropdown-open .dm-dropdown-panel { display: block !important; }
    
    .dm-dropdown-panel a {
      padding: 12px 16px;
      margin: 4px 0;
      border-radius: 12px;
    }
    .dm-dropdown-panel a:hover { background: rgba(200,16,46,.1); }
    .dm-dropdown-panel strong { display: block; font-size: 0.95rem; }
    .dm-dropdown-panel span { font-size: 0.75rem; }
  
    /* Layout adjustments */
    .hero-grid, .split-grid, .contact-grid, .section-heading {
      grid-template-columns: 1fr;
    }
    .card-grid, .card-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-card { max-width: 520px; }
    .section-heading { text-align: center; }
  }
  
  /* Small mobile */
  @media (max-width: 680px) {
    :root { --dm-container: min(100% - 28px, 1180px); }
    .dm-brand-text span { display: none; }
    .dm-nav-cta .dm-button { display: none; }
    .hero-title { font-size: clamp(2.55rem, 15vw, 4rem); }
    .hero-grid { gap: 24px; }
    .hero-stats, .card-grid, .card-grid.two, .impact-grid, .footer-grid, .form-row-modern {
      grid-template-columns: 1fr;
    }
    .media-stack { min-height: auto; }
    .media-stack img {
      position: relative;
      width: 100% !important;
      height: auto !important;
      margin-bottom: 15px;
    }
    .media-stack img:nth-child(1),
    .media-stack img:nth-child(2) {
      position: relative;
      width: 100%;
      height: auto;
      left: auto;
      right: auto;
      bottom: auto;
      top: auto;
    }
    .floating-note {
      position: relative;
      left: auto;
      right: auto;
      bottom: auto;
      top: auto;
      margin-top: 15px;
      width: 100%;
    }
    .section-modern { padding: 68px 0; }
    .page-hero { min-height: 340px; padding-top: 96px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .dm-button { width: 100%; text-align: center; }
    .dm-card { padding: 20px; }
  }
  
  /* Desktop overrides */
  @media (min-width: 1081px) {
    .hero-title { font-size: clamp(2.8rem, 6.2vw, 5rem); }
    .dm-hero .container-modern { padding-top: clamp(50px, 8vw, 90px); }
  }