  :root {
    --white: #ffffff;
    --off-white: #f4fbfc;
    --light-grey: #d6edf1;
    --mid-grey: #a6a6a6;
    --dark-grey: #316f7a;
    --charcoal: #1e4a52;
    --gold: #00afce;
    --gold-light: #33c3de;
    --gold-pale: #e0f6fb;
    --text: #111111;
    --text-muted: #333333;
    --accent: #ff7600;
    --accent-light: #ff9533;
    --accent-pale: #fff1e6;
    --highlight: #ffd699;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 64px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    will-change: transform;
    border-bottom: 1px solid var(--light-grey);
  }

  .nav-logo { display: flex; align-items: center; }
  .nav-logo-img { height: 34px; width: auto; display: block; object-fit: contain; }
  .footer-logo-img {
    height: 32px; width: auto; display: block; object-fit: contain;
    filter: brightness(0) invert(1); opacity: 0.75; transition: opacity 0.2s;
  }
  .footer-logo-img:hover { opacity: 1; }

  /* Desktop links row */
  .nav-links { display: flex; align-items: center; gap: 6px; }

  .nav-btn {
    padding: 9px 20px; font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 500; cursor: pointer;
    border: none; background: transparent; color: var(--text);
    letter-spacing: 0.02em; transition: color 0.2s; text-decoration: none;
    border-radius: 3px;
  }
  .nav-btn:hover { color: var(--gold); }

  .nav-dropdown { position: relative; }
  .nav-dropdown-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 20px; font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 500; cursor: pointer;
    border: 1px solid var(--mid-grey); background: transparent;
    color: var(--text); letter-spacing: 0.02em; border-radius: 3px; transition: all 0.2s;
  }
  .nav-dropdown-btn:hover { border-color: var(--gold); color: var(--gold); }
  .nav-dropdown-btn .chevron { width: 14px; height: 14px; transition: transform 0.25s; }
  .nav-dropdown-btn.open .chevron { transform: rotate(180deg); }

  .dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 50%;
    background: var(--white); border: 1px solid var(--light-grey);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    min-width: 280px; padding: 8px 0; opacity: 0; pointer-events: none;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.25s, transform 0.25s; border-radius: 4px;
  }
  .dropdown-menu.open {
    opacity: 1; pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown-menu a {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 20px; text-decoration: none; color: var(--text); transition: background 0.15s;
  }
  .dropdown-menu a:hover { background: var(--off-white); }
  .dropdown-menu a .dm-icon {
    width: 28px; height: 28px; background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 13px; margin-top: 1px;
  }
  .dropdown-menu a .dm-label { font-size: 13px; font-weight: 500; }
  .dropdown-menu a .dm-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
  .dropdown-divider { height: 1px; background: var(--light-grey); margin: 6px 0; }

  .nav-cta {
    padding: 10px 22px; background: var(--accent); color: var(--white);
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
    border: none; cursor: pointer; letter-spacing: 0.04em;
    text-transform: uppercase; border-radius: 3px;
    transition: background 0.2s; text-decoration: none; display: inline-block;
  }
  .nav-cta:hover { background: var(--gold); }

  /* Hamburger — hidden desktop */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; background: none; border: none; z-index: 1001;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--charcoal); border-radius: 2px; transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ════════ MOBILE ════════ */
  @media (max-width: 768px) {
    .nav-hamburger { display: flex; }

    .nav-links {
      display: none;
      position: fixed; top: 64px; left: 0; right: 0;
      background: rgba(255,255,255,0.99);
      backdrop-filter: blur(12px);
      flex-direction: column; align-items: stretch;
      padding: 16px 20px 28px; gap: 6px;
      border-bottom: 2px solid var(--light-grey);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      z-index: 999;
    }
    .nav-links.mobile-open { display: flex; }

    .nav-btn {
      font-size: 15px; font-weight: 500;
      padding: 14px 16px; width: 100%; text-align: left;
      border-radius: 8px; border-bottom: 1px solid var(--light-grey);
    }

    .nav-dropdown { width: 100%; }
    .nav-dropdown-btn {
      width: 100%; font-size: 15px; padding: 14px 16px;
      border: none; border-bottom: 1px solid var(--light-grey);
      border-radius: 8px; text-align: left;
    }

    .dropdown-menu {
      position: static; transform: none !important;
      box-shadow: none; border: 1px solid var(--light-grey);
      border-radius: 8px; min-width: unset; width: 100%;
      opacity: 0; max-height: 0; overflow: hidden; pointer-events: none;
      transition: opacity 0.25s, max-height 0.3s ease;
      padding: 0; margin-top: 4px;
    }
    .dropdown-menu.open {
      opacity: 1; pointer-events: all; max-height: 600px; padding: 8px 0;
    }

    .nav-cta {
      width: 100%; text-align: center;
      padding: 15px; font-size: 14px;
      border-radius: 8px; margin-top: 4px; display: block;
    }
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 70px;
    background:
      linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.95) 100%),
      url("https://images.unsplash.com/photo-1606761568499-6d2451b23c66?w=800&auto=format&fit=crop&q=60&fm=webp") center center / cover no-repeat;
    position: relative; overflow: hidden;
  }

  .hero-bg-lines {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
    background-image: repeating-linear-gradient(
      90deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 80px
    );
  }
  .hero-gold-bar {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 5px; background: linear-gradient(180deg, var(--gold), var(--gold-light));
  }

  .hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 80px 5%;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,175,206,0.18); border: 1px solid var(--gold-light);
    padding: 6px 14px; margin-bottom: 28px;
    font-size: 11px; font-weight: 600; color: #ffffff;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

  .hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(25px, 4.5vw, 40px);
    font-weight: 600; line-height: 1.08; color: #ffffff;
    margin-bottom: 24px;
  }
  .hero-title em { font-style: italic; color: var(--gold); }

  .hero-desc {
    font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.80);
    max-width: 460px; margin-bottom: 40px;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn-primary {
    padding: 14px 32px; background: var(--accent); color: var(--white);
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; border: none; cursor: pointer;
    border-radius: 3px; transition: background 0.2s; text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold); }

  .btn-outline {
    padding: 14px 32px; background: transparent; color: var(--dark-grey);
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.6);
    cursor: pointer; border-radius: 3px; transition: all 0.2s;
    text-decoration: none; display: inline-block; color: #ffffff;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

  /* Hero stats */
  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.20);
  }
  .stat-item .stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 32px; font-weight: 700; color: #ffffff;
    line-height: 1;
  }
  .stat-item .stat-num span { color: var(--accent); }
  .stat-item .stat-label {
    font-size: 11px; color: rgba(255,255,255,0.60); margin-top: 4px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }

  /* Hero right card */
  .hero-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    padding: 40px; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  }
  .hero-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  }
  .hero-card-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  }
  .hero-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px; font-weight: 600; color: var(--charcoal);
    margin-bottom: 20px; line-height: 1.3;
  }
  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px; color: var(--text-muted); line-height: 1.5;
  }
  .feature-list li::before {
    content: ''; width: 16px; height: 16px; background: var(--gold-pale);
    border: 1px solid var(--gold-light); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.8 6.5L9 1' stroke='%2300afce' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
  }

  .hero-card .card-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
  }
  .tag {
    padding: 5px 12px; background: var(--off-white); border: 1px solid var(--light-grey);
    font-size: 11px; color: var(--text-muted); border-radius: 2px;
  }

  /* ── SECTION BASE ── */
  section { scroll-margin-top: 70px; }

  .section-header { text-align: center; margin-bottom: 56px; }
  .section-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    display: block;
  }
  .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(30px, 3.5vw, 46px); font-weight: 600;
    color: var(--charcoal); line-height: 1.15;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-sub {
    font-size: 15px; color: var(--text-muted); margin-top: 14px;
    max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7;
  }

  /* ── ENQUIRY SECTION ── */
  #enquiry {
    padding: 96px 5%;
    background: #f4fbfc;
    position: relative;
  }
  #calendar-demo .section-label { color: #33c3de; }
  #calendar-demo .section-title { color: #ffffff; }
  #calendar-demo .section-sub { color: rgba(255,255,255,0.55); }

  .enquiry-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start;
  }

  .enquiry-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 42px); font-weight: 600;
    color: var(--charcoal); line-height: 1.2; margin-bottom: 18px;
  }
  .enquiry-left h2 em { font-style: italic; color: var(--gold); }
  .enquiry-left p {
    font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px;
  }

  .info-blocks { display: flex; flex-direction: column; gap: 0; }
  .info-block {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px 0; border-bottom: 1px solid var(--light-grey);
  }
  .info-block:last-child { border-bottom: none; }
  .info-icon {
    width: 38px; height: 38px; background: var(--off-white);
    border: 1px solid var(--light-grey); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
  }
  .info-block strong { display: block; font-size: 13px; color: var(--charcoal); margin-bottom: 2px; }
  .info-block span { font-size: 12.5px; color: var(--text-muted); }

  /* Form */
  .enquiry-form {
    background: var(--off-white); padding: 28px 32px; position: relative;
    border: 2px solid var(--gold);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,175,206,0.18), 0 2px 12px rgba(0,175,206,0.10), 0 20px 60px rgba(0,0,0,0.08);
  }
  .enquiry-form::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 6px 6px 0 0;
  }
  .form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px;
  }
  .form-sub { font-size: 11.5px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-group { margin-bottom: 10px; }
  .form-group label {
    display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 8px 12px; background: var(--white);
    border: 1px solid var(--mid-grey); font-family: 'Poppins', sans-serif;
    font-size: 13.5px; color: var(--text); outline: none; border-radius: 3px;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 80px; }

  .form-submit {
    width: 100%; padding: 12px; background: var(--accent); color: var(--white);
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; border: none;
    cursor: pointer; border-radius: 3px; transition: background 0.2s; margin-top: 6px;
  }
  .form-submit:hover { background: var(--gold); }
  .form-note {
    text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 12px;
  }

  /* ── PROGRAMMES SECTION ── */
  #programmes {
    padding: 96px 5%;
    background: linear-gradient(160deg, #0d3540 0%, #1a4a55 100%);
    position: relative;
  }

  #programmes .section-label { color: #33c3de; }
  #programmes .section-title { color: #ffffff; }
  #programmes .section-sub { color: rgba(255,255,255,0.55); }

  .programmes-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }

  .programme-card {
    scroll-margin-top: 90px;
    background: var(--white);
    border: 1px solid #e2eef1;
    border-radius: 12px;
    position: relative; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,175,206,0.10);
    transition: box-shadow 0.28s, transform 0.28s;
    display: flex; flex-direction: column;
  }
  .programme-card:hover {
    box-shadow: 0 20px 56px rgba(0,175,206,0.18), 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
  }
  .programme-card:nth-child(1)::before { background: linear-gradient(90deg, #00afce, #33c3de); }
  .programme-card:nth-child(2)::before { background: linear-gradient(90deg, #ff7600, #ffaa44); }
  .programme-card:nth-child(3)::before { background: linear-gradient(90deg, #316f7a, #00afce); }
  .programmes-grid-center .programme-card:nth-child(1)::before { background: linear-gradient(90deg, #ff7600, #ffaa44); }
  .programmes-grid-center .programme-card:nth-child(2)::before { background: linear-gradient(90deg, #316f7a, #00afce); }
  .programme-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; border-radius: 12px 12px 0 0;
  }
  .programme-card::after { display: none; }

  /* Centered 2-card bottom row */
  .programmes-grid-center {
    max-width: 760px;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
  }
  .programmes-grid-center .programme-card:nth-child(1) .card-category { background: #e0f6fb; color: #00afce; }
  .programmes-grid-center .programme-card:nth-child(2) .card-category { background: #fff1e6; color: #ff7600; }
  .programmes-grid-center .programme-card:nth-child(1)::before { background: linear-gradient(90deg, #00afce, #33c3de); }
  .programmes-grid-center .programme-card:nth-child(2)::before { background: linear-gradient(90deg, #ff7600, #ffaa44); }

  .card-head { padding: 32px 28px 20px; flex: 1; }

  .card-category {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
    margin-bottom: 14px;
  }
  .programme-card:nth-child(1) .card-category { background: #e0f6fb; color: #00afce; }
  .programme-card:nth-child(2) .card-category { background: #fff1e6; color: #ff7600; }
  .programme-card:nth-child(3) .card-category { background: #eaf3f5; color: #316f7a; }

  .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px; font-weight: 700; color: #1a3d45;
    line-height: 1.35; margin-bottom: 10px;
  }
  .card-desc {
    font-size: 13px; color: #333333; line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: none;
  }
  .card-desc.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
  .read-more-btn {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
  }
  .read-more-btn:hover { color: var(--accent); }

  .card-meta {
    padding: 16px 28px;
    border-top: 1px solid #eef4f6;
    background: #f9fbfc;
    display: flex; flex-direction: column; gap: 8px;
  }
  .meta-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: #333333;
  }
  .meta-item .meta-icon { font-size: 13px; }

  .card-foot {
    padding: 18px 28px;
    border-top: 1px solid #eef4f6;
    background: var(--white);
    display: flex; justify-content: space-between; align-items: center;
    border-radius: 0 0 12px 12px;
  }
  .card-pdf-btn {
    display: flex; align-items: center; gap: 6px; cursor: pointer;
    font-size: 12px; font-weight: 500; color: #316f7a;
    background: transparent; border: 1.5px solid #c5dde2;
    padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
    text-decoration: none;
  }
  .card-pdf-btn:hover { background: #eaf3f5; border-color: #00afce; color: #00afce; }

  .card-enroll-btn {
    font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--white);
    background: var(--accent);
    border: none; cursor: pointer; padding: 9px 18px;
    border-radius: 6px; transition: background 0.2s;
  }
  .card-enroll-btn:hover { background: #e06800; }

  /* ── FACULTY SECTION ── */
  #faculty {
    padding: 96px 5%;
    background: linear-gradient(160deg, #0d3540 0%, #1a4a55 100%);
  }

  #faculty .section-label { color: #33c3de; }
  #faculty .section-title { color: #ffffff; }
  #faculty .section-sub { color: rgba(255,255,255,0.55); }

  /* Faculty Slider */
  .faculty-slider-wrapper {
    max-width: 1100px; margin: 0 auto; position: relative;
  }
  .faculty-slider-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px;
  }
  .faculty-slider-dots {
    display: flex; gap: 8px; align-items: center;
  }
  .faculty-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.25); cursor: pointer;
    transition: all 0.3s; border: none;
  }
  .faculty-dot.active {
    background: #33c3de; width: 24px; border-radius: 4px;
  }
  .faculty-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s; flex-shrink: 0;
  }
  .faculty-arrow:hover { background: #33c3de; border-color: #33c3de; }
  .faculty-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
  .faculty-arrow:disabled:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

  .faculty-slider-viewport { overflow: hidden; }
  .faculty-grid {
    display: flex; gap: 28px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  @media (max-width: 768px) {
    .faculty-slider-wrapper { max-width: 100%; }
    .faculty-grid { gap: 16px; }
  }
  .faculty-card {
    flex: 0 0 calc((min(100vw, 1100px) - 56px) / 3);
    min-width: calc((min(100vw, 1100px) - 56px) / 3);
    border-radius: 16px; overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: box-shadow 0.28s, transform 0.28s;
    position: relative;
    display: flex; flex-direction: column;
  }
  @media (max-width: 768px) {
    .faculty-card {
      flex: 0 0 100%;
      min-width: 0;
      width: 100%;
    }
    .faculty-grid { gap: 16px; }
  }
  .faculty-card::before { display: none; }
  .faculty-card:hover {
    box-shadow: 0 20px 52px rgba(0,0,0,0.25);
    transform: translateY(-4px);
  }

  /* Colored top photo zone per card */
  .faculty-img {
    height: 150px;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 0;
    position: relative; overflow: visible;
  }
  .faculty-card:nth-child(3n+1) .faculty-img { background: linear-gradient(135deg, #00afce 0%, #007a99 100%); }
  .faculty-card:nth-child(3n+2) .faculty-img { background: linear-gradient(135deg, #ff7600 0%, #cc5500 100%); }
  .faculty-card:nth-child(3n+3) .faculty-img { background: linear-gradient(135deg, #316f7a 0%, #1d4a54 100%); }
  .faculty-card:nth-child(3n+1) .faculty-role { color: #00afce; }
  .faculty-card:nth-child(3n+2) .faculty-role { color: #ff7600; }
  .faculty-card:nth-child(3n+3) .faculty-role { color: #316f7a; }
  .faculty-card:nth-child(3n+1) .faculty-tag { background: #e0f6fb; color: #007a99; border: 1px solid #b3e8f5; }
  .faculty-card:nth-child(3n+2) .faculty-tag { background: #fff1e6; color: #cc5500; border: 1px solid #ffd4aa; }
  .faculty-card:nth-child(3n+3) .faculty-tag { background: #eaf3f5; color: #1d4a54; border: 1px solid #aed0d8; }

  /* data-theme based colours — clone-safe */
  .faculty-card[data-theme="blue"] .faculty-img  { background: linear-gradient(135deg, #00afce 0%, #007a99 100%); }
  .faculty-card[data-theme="blue"] .faculty-role { color: #00afce; }
  .faculty-card[data-theme="blue"] .faculty-tag  { background: #e0f6fb; color: #007a99; border: 1px solid #b3e8f5; }
  .faculty-card[data-theme="blue"] .faculty-know-btn { color: #00afce; border-color: #00afce; }

  .faculty-card[data-theme="teal"] .faculty-img  { background: linear-gradient(135deg, #316f7a 0%, #1d4a54 100%); }
  .faculty-card[data-theme="teal"] .faculty-role { color: #316f7a; }
  .faculty-card[data-theme="teal"] .faculty-tag  { background: #eaf3f5; color: #1d4a54; border: 1px solid #aed0d8; }
  .faculty-card[data-theme="teal"] .faculty-know-btn { color: #316f7a; border-color: #316f7a; }

  .faculty-avatar {
    width: 110px; height: 110px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    display: flex; align-items: center;
    justify-content: center; font-family: 'Poppins', sans-serif;
    font-size: 32px; font-weight: 700; color: var(--white);
    margin-bottom: -32px; position: relative; z-index: 2;
  }
  .faculty-img-tag {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4);
    padding: 4px 10px; font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
    border-radius: 20px;
  }

  .faculty-body { padding: 44px 24px 20px; background: transparent; flex: 1; }
  .faculty-name {
    font-family: 'Poppins', sans-serif;
    font-size: 19px; font-weight: 700; color: #1a3d45; margin-bottom: 4px;
  }
  .faculty-role { font-size: 12px; font-weight: 500; margin-bottom: 14px; }


  .faculty-bio {
    font-size: 13px; color: #333333; line-height: 1.7;
    margin-bottom: 16px;
  }
  .faculty-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .faculty-tag {
    padding: 4px 10px;
    font-size: 11px; border-radius: 20px;
  }


  .faculty-foot {
    padding: 14px 24px 20px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid #eef4f6; margin-top: 4px;
  }
  .faculty-pdf-note { font-size: 11px; color: #a6a6a6; font-style: italic; }
  .faculty-pdf-btn {
    display: flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 600; color: #316f7a;
    background: transparent; border: 1.5px solid #c5dde2;
    padding: 6px 14px; cursor: pointer; border-radius: 6px;
    transition: all 0.2s; text-decoration: none;
  }
  .faculty-pdf-btn:hover { background: #eaf3f5; border-color: #00afce; color: #00afce; }

  /* ── WHY SECTION ── */
  #why {
    padding: 96px 5%;
    background: var(--charcoal);
    position: relative; overflow: hidden;
  }
  #why::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px; border: 60px solid rgba(9,188,245,0.08);
    border-radius: 50%;
  }

  #why .section-title { color: var(--white); }
  #why .section-label { color: var(--gold-light); }
  #why .section-sub { color: rgba(255,255,255,0.55); }

  .why-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }

  .why-card {
    padding: 32px 24px; border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04); transition: background 0.25s;
  }
  .why-card:hover { background: rgba(9,188,245,0.10); border-color: rgba(9,188,245,0.25); }

  .why-num {
    font-family: 'Poppins', sans-serif;
    font-size: 42px; font-weight: 700; color: rgba(9,188,245,0.30);
    line-height: 1; margin-bottom: 16px;
  }
  .why-title {
    font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 10px;
  }
  .why-desc { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.65; }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
  }
  footer .footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.5);
  }
  footer .footer-links {
    display: flex; gap: 24px;
  }
  footer .footer-links a {
    font-size: 12px; color: rgba(255,255,255,0.3);
    text-decoration: none; transition: color 0.2s;
    letter-spacing: 0.04em;
  }
  footer .footer-links a:hover { color: var(--gold-light); }
  footer .footer-copy {
    font-size: 11px; color: rgba(255,255,255,0.2);
  }

  /* ── FACULTY KNOW MORE BUTTON ── */
  .faculty-know-btn {
    font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; background: transparent;
    border: none; cursor: pointer; padding: 8px 0;
    border-bottom: 1.5px solid; transition: color 0.2s, border-color 0.2s;
    color: #00afce; border-color: #00afce;
  }
  .faculty-know-btn:hover { opacity: 0.75; }

  /* ── FACULTY MODAL ── */
  .faculty-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(13,42,48,0.7); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .faculty-modal-overlay.active { opacity: 1; pointer-events: all; }

  .faculty-modal {
    background: var(--white); max-width: 680px; width: 100%;
    position: relative; overflow: hidden;
    transform: translateY(30px); transition: transform 0.3s;
    max-height: 90vh; overflow-y: auto;
  }
  .faculty-modal-overlay.active .faculty-modal { transform: translateY(0); }

  .fm-header {
    background: var(--charcoal); padding: 32px 36px;
    display: flex; align-items: center; gap: 24px; position: relative;
  }
  .fm-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold), var(--accent));
  }
  .fm-avatar {
    width: 100px; height: 100px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-size: 28px;
    font-weight: 700; color: var(--white);
    overflow: hidden;
  }
  .fm-header-info { flex: 1; }
  .fm-tag {
    font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block;
  }
  .fm-name {
    font-family: 'Poppins', sans-serif;
    font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 4px;
  }
  .fm-role { font-size: 13px; color: rgba(255,255,255,0.55); }

  .fm-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none; cursor: pointer;
    color: rgba(255,255,255,0.6); font-size: 18px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .fm-close:hover { background: rgba(255,255,255,0.2); color: white; }

  .fm-body { padding: 32px 36px; }

  .fm-section { margin-bottom: 28px; }
  .fm-section-title {
    font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
    padding-bottom: 8px; border-bottom: 1px solid var(--light-grey);
  }
  .fm-bio { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

  .fm-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-bottom: 28px;
  }
  .fm-stat {
    text-align: center; padding: 16px 12px;
    background: var(--off-white); border: 1px solid var(--light-grey);
  }
  .fm-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1;
  }
  .fm-stat-label { font-size: 10px; color: var(--text-muted); margin-top: 4px;
    text-transform: uppercase; letter-spacing: 0.08em; }

  .fm-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .fm-tag-item {
    padding: 5px 12px; background: var(--gold-pale);
    border: 1px solid var(--gold-light);
    font-size: 11px; color: var(--dark-grey); border-radius: 2px;
  }

  .fm-courses { display: flex; flex-direction: column; gap: 10px; }
  .fm-course {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px; background: var(--off-white); border: 1px solid var(--light-grey);
  }
  .fm-course-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    margin-top: 4px; flex-shrink: 0;
  }
  .fm-course-name { font-size: 13px; font-weight: 500; color: var(--text); }
  .fm-course-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

  .fm-footer {
    padding: 20px 36px; border-top: 1px solid var(--light-grey);
    display: flex; gap: 12px; justify-content: flex-end;
  }
  .fm-enquire-btn {
    padding: 11px 24px; background: var(--accent); color: var(--white);
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; border: none; cursor: pointer; border-radius: 3px;
    transition: background 0.2s; text-decoration: none; display: inline-block;
  }
  .fm-enquire-btn:hover { background: var(--gold); }

  /* ── FORM SUBMIT LOADING STATE ── */
  .form-submit.loading {
    opacity: 0.7; cursor: not-allowed; pointer-events: none;
  }


  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-badge { animation: fadeUp 0.6s ease both; }
  .hero-title { animation: fadeUp 0.6s 0.1s ease both; }
  .hero-desc { animation: fadeUp 0.6s 0.2s ease both; }
  .hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
  .hero-stats { animation: fadeUp 0.6s 0.4s ease both; }
  .hero-card { animation: fadeUp 0.7s 0.2s ease both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .enquiry-inner { grid-template-columns: 1fr; gap: 40px; }
    .programmes-grid { grid-template-columns: 1fr; }
    .faculty-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-inner { padding: 40px 5% 50px; }
    .hero-title { font-size: clamp(22px, 6vw, 32px); }
    .hero-desc { font-size: 14px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-card { padding: 28px 20px; }
  }

  @media (max-width: 480px) {
    #hero { min-height: 100svh; background-attachment: scroll; }
    .hero-inner { padding: 30px 5% 40px; gap: 24px; }
    .hero-title { font-size: clamp(20px, 7vw, 28px); line-height: 1.2; }
    .hero-desc { font-size: 13.5px; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; text-align: center; padding: 13px 20px; }
    .hero-stats { gap: 16px; }
    .stat-item .stat-num { font-size: 24px; }
    .hero-card { padding: 22px 16px; }
    .hero-card h3 { font-size: 16px; }
    .feature-list li { font-size: 12.5px; }
    .hero-badge { font-size: 10px; padding: 5px 10px; }
  }

  @media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 900px) {
    #enquiry { padding: 64px 5%; background-attachment: scroll; }
    .enquiry-inner { grid-template-columns: 1fr; gap: 36px; }
    .enquiry-left h2 { font-size: clamp(22px, 5vw, 32px); }
  }
  @media (max-width: 480px) {
    #enquiry { padding: 48px 5%; }
    .enquiry-left h2 { font-size: clamp(20px, 6vw, 26px); }
    .enquiry-left p { font-size: 13.5px; }
    .enquiry-form { padding: 24px 16px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit { font-size: 13px; padding: 13px; }
    .info-block { padding: 14px 0; }
  }
        @keyframes shimmer {
          0%   { background-position: 200% center; }
          100% { background-position: -200% center; }
        }
        @keyframes pulse-badge {
          0%, 100% { opacity: 1; transform: scale(1); }
          50%       { opacity: 0.75; transform: scale(0.96); }
        }
/* ── CAL TAB BAR ── */
.cal-tab-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.cal-tab {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0; padding: 20px 18px 18px;
  background: var(--off-white);
  border: 1.5px solid var(--light-grey);
  border-radius: 10px;
  cursor: pointer; text-align: left;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.cal-tab::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--light-grey);
  transition: background 0.25s;
}
.cal-tab:hover {
  border-color: var(--gold-light);
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,175,206,0.12);
}
.cal-tab:hover::before { background: var(--gold); }
.cal-tab.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(30,74,82,0.22);
}
.cal-tab.active::before {
  background: var(--gold);
}
.cal-tab-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 8px;
}
.cal-tab:not(.active) .cal-tab-num { color: var(--gold); }
.cal-tab-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; color: var(--charcoal);
  line-height: 1.35; margin-bottom: 8px; flex: 1;
}
.cal-tab.active .cal-tab-label { color: var(--white); }
.cal-tab-sub {
  font-size: 10.5px; color: var(--text-muted);
  letter-spacing: 0.02em; line-height: 1.3;
}
.cal-tab.active .cal-tab-sub { color: rgba(255,255,255,0.5); }
.cal-tab:hover:not(.active) .cal-tab-sub { color: var(--dark-grey); }
.cal-tab-arrow {
  position: absolute; bottom: 14px; right: 16px;
  font-size: 14px; color: var(--light-grey);
  transition: all 0.25s; opacity: 0;
}
.cal-tab:hover .cal-tab-arrow,
.cal-tab.active .cal-tab-arrow {
  opacity: 1; color: var(--gold);
}

/* ── CAL PANEL ── */
.cal-panel { display: none; }
.cal-panel.active { display: block; }

/* ── BATCH SUB-TABS ── */
.cal-batch-bar {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.cal-batch-btn {
  padding: 9px 20px; font-family: 'Poppins', sans-serif;
  font-size: 12.5px; font-weight: 500; border-radius: 4px;
  border: 1.5px solid var(--light-grey); background: var(--white);
  color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.cal-batch-btn:hover { border-color: var(--gold); color: var(--charcoal); }
.cal-batch-btn.active {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}
.cal-batch-panel { display: none; }
.cal-batch-panel.active { display: block; }

/* ── PROG META BADGE ── */
.cal-prog-meta { margin-bottom: 20px; }
.cal-prog-badge {
  display: inline-block;
  background: var(--gold-pale); border: 1px solid var(--gold-light);
  color: var(--dark-grey); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
}

/* ── LEVEL BLOCKS (IRM) ── */
.cal-level-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cal-level-block { border: 1.5px solid var(--light-grey); overflow: hidden; border-radius: 6px; }
.cal-level-header {
  padding: 12px 18px; display: flex; justify-content: space-between; align-items: center;
}
.cal-level-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: #fff; text-transform: uppercase;
}
.cal-level-range { font-size: 10.5px; color: rgba(255,255,255,0.75); }
.cal-sessions-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 14px; gap: 12px;
}
.cal-sess { padding: 10px 12px; background: var(--off-white); border-radius: 4px; }
.cal-sess-num {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.cal-sess-date {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--charcoal); line-height: 1;
}
.cal-sess-day {
  font-size: 11px; font-weight: 500; margin-top: 3px;
  color: var(--gold);
}

/* ── WEEKEND BLOCKS (ESG / FNF) ── */
.cal-weekends-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.cal-wknd-block { border: 1.5px solid var(--light-grey); border-radius: 6px; overflow: hidden; }
.cal-wknd-header {
  background: var(--charcoal); padding: 10px 16px;
}
.cal-wknd-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gold-light); text-transform: uppercase;
}
.cal-wknd-body {
  padding: 14px 16px; display: flex; flex-direction: column; gap: 10px;
  background: var(--white);
}
.cal-wknd-body .cal-sess { background: var(--off-white); }

/* ── COMING SOON ── */
.cal-coming-soon {
  text-align: center; padding: 80px 40px;
  background: var(--off-white); border: 2px dashed var(--light-grey);
  border-radius: 8px;
}
.cal-cs-icon { font-size: 48px; margin-bottom: 16px; }
.cal-cs-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 600; color: var(--charcoal); margin-bottom: 12px;
}
.cal-cs-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cal-tab-bar { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .cal-tab-bar { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cal-tab { padding: 16px 14px 14px; }
  .cal-tab-label { font-size: 12px; }
  .cal-level-wrap { grid-template-columns: 1fr; }
  .cal-weekends-wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cal-tab-bar { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cal-tab { padding: 12px 10px 10px; }
  .cal-tab-num { font-size: 18px; }
  .cal-tab-label { font-size: 11px; }
  .cal-tab-sub { font-size: 9px; }
  .cal-tab-arrow { display: none; }
  .cal-weekends-wrap { grid-template-columns: 1fr !important; gap: 12px; }
  .cal-level-wrap { grid-template-columns: 1fr; gap: 12px; }
  .cal-wknd-body { gap: 8px; }
  .cal-sess { display: flex; align-items: center; gap: 12px; padding: 10px 14px; }
  .cal-sess-num { font-size: 9px; min-width: 55px; margin-bottom: 0; }
  .cal-sess-date { font-size: 20px; margin-bottom: 0; }
  .cal-sess-day { font-size: 11px; margin-top: 0; margin-left: auto; }
  .cal-prog-badge { font-size: 10px; padding: 4px 10px; }
  .cal-batch-btn { font-size: 11px; padding: 6px 12px; }
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, background 0.2s;
}
.faq-item:hover { background: rgba(0,175,206,0.10); border-color: rgba(0,175,206,0.25); box-shadow: 0 4px 20px rgba(0,175,206,0.10); }
.faq-item.open { background: rgba(0,175,206,0.10); border-color: rgba(0,175,206,0.35); box-shadow: 0 4px 20px rgba(0,175,206,0.13); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: transparent; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  color: #ffffff; text-align: left; line-height: 1.45;
  transition: color 0.2s;
}
.faq-q:hover { color: #33c3de; }
.faq-item.open .faq-q { color: #33c3de; }

.faq-icon {
  font-size: 22px; font-weight: 300; color: #33c3de;
  flex-shrink: 0; line-height: 1;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 13.5px; color: rgba(255,255,255,0.60); line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 16px;
}

@media (max-width: 768px) {
  .faq-q { font-size: 13px; padding: 16px 18px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
}
.footer-contact {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-contact-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #33c3de;
}
.footer-contact-link {
  font-size: 12.5px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-link:hover { color: #33c3de; }
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 18px 13px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s infinite;
}
#whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.18);
  animation: none;
}
.wa-label { line-height: 1; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  #whatsapp-float { bottom: 20px; right: 16px; padding: 12px; border-radius: 50%; }
  .wa-label { display: none; }
}

  /* Disable animations on mobile for performance */
  @media (max-width: 768px) {
    .hero-badge, .hero-title, .hero-desc, .hero-actions, .hero-stats, .hero-card {
      animation: none !important;
    }
  }
