  :root {
    --green: #1a6b2a;
    --green-light: #2d9144;
    --orange: #e87722;
    --blue: #1565c0;
    --gold: #f0a500;
    --gold-light: #ffc840;
    --white: #ffffff;
    --dark: #0d2417;
    --dark2: #132f1e;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

  /* TOPBAR */
  .topbar {
    background: var(--dark);
    padding: 8px 24px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(240,165,0,0.2);
  }
  .topbar span { color: var(--gold); font-weight: 600; }

  /* NAVBAR */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,36,23,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    transition: all 0.3s;
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .logo-img-wrap {
    width: 56px; height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(240,165,0,0.5);
    box-shadow: 0 0 16px rgba(240,165,0,0.25);
    flex-shrink: 0;
    background: #fff;
  }

  .logo-img-wrap img { width: 100%; height: 100%; object-fit: contain; }

  .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .logo-text .name {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
  }
  .logo-text .tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
  }

  .nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 6px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 18px; right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-light), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s;
    border-radius: 2px;
  }

  .nav-links a:hover { color: white; }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-links .btn-cta {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    color: white !important;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 600;
    box-shadow: 0 3px 15px rgba(45,145,68,0.4);
  }
  .nav-links .btn-cta::after { display: none; }
  .nav-links .btn-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--orange));
    color: var(--dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240,165,0,0.4);
  }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: rgba(10,28,18,0.99);
    z-index: 999;
    padding: 10px 0 20px;
    border-top: 1px solid rgba(240,165,0,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  }
  .mobile-menu.open { display: block; animation: slideDown 0.3s ease; }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 15px 28px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); background: rgba(240,165,0,0.06); padding-left: 36px; }

  /* SLIDER */
  .slider {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
  }
  .slide.active { opacity: 1; z-index: 1; }

  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
    transform: scale(1.06);
  }
  .slide.active .slide-bg { transform: scale(1); }

  /* Slide background images from Unsplash (nature/hope/healing themes) */
  .slide-1 .slide-bg {
    background-image: url('img/slider.jpg');
    background-size: cover;
    background-position: center top;
  }
  .slide-2 .slide-bg {
    background-image: url('img/slider-1.jpg');
    background-size: cover;
    background-position: center;
  }
  .slide-3 .slide-bg {
    background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1600&q=80');
    background-size: cover;
    background-position: center;
  }

  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(10,28,16,0.88) 0%, rgba(10,28,16,0.55) 55%, rgba(10,28,16,0.25) 100%),
      linear-gradient(to top, rgba(10,28,16,0.7) 0%, transparent 40%);
    z-index: 2;
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.22;
    animation: drift 10s ease-in-out infinite;
  }
  @keyframes drift {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.1); }
    66% { transform: translate(-20px,15px) scale(0.95); }
  }

  .slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 70px;
  }

  .slide-inner { max-width: 660px; }

  .slide.active .slide-inner { animation: revealUp 0.9s 0.3s ease both; }
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,165,0,0.12);
    border: 1px solid rgba(240,165,0,0.4);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
    font-weight: 600;
  }

  .pulse-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }

  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 22px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    font-weight: 800;
  }
  .slide-title .accent { color: var(--gold); }
  .slide-title .accent-green { color: #6ee88a; }

  .slide-desc {
    color: rgba(255,255,255,0.78);
    font-size: clamp(0.9rem, 1.8vw, 1.08rem);
    line-height: 1.85;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 540px;
  }

  .slide-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

  .btn-primary {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    color: white;
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(26,107,42,0.5);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--orange));
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(240,165,0,0.4);
    color: var(--dark);
  }

  .btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.9);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,165,0,0.08); transform: translateY(-2px); }

  /* QUICK FORM */
  .quick-form {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 28px 26px;
    width: 300px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(240,165,0,0.1);
  }
  .qf-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .qf-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(45,145,68,0.3), rgba(240,165,0,0.2));
    border: 1px solid rgba(240,165,0,0.3);
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .qf-title { color: white; font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
  .qf-sub { color: rgba(255,255,255,0.5); font-size: 0.72rem; margin-top: 3px; letter-spacing: 0.3px; }
  .qf-body { display: flex; flex-direction: column; gap: 12px; }
  .qf-field input,
  .qf-field select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 14px;
    color: white;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.25s;
    appearance: none;
    -webkit-appearance: none;
  }
  .qf-field input::placeholder { color: rgba(255,255,255,0.4); }
  .qf-field input:focus,
  .qf-field select:focus {
    border-color: rgba(240,165,0,0.5);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(240,165,0,0.1);
  }
  .qf-field select option { background: #1a3a2a; color: white; }
  .qf-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
    margin-top: 4px;
  }
  .qf-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--orange));
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,165,0,0.35);
  }
  .qf-note { color: rgba(255,255,255,0.4); font-size: 0.68rem; text-align: center; line-height: 1.5; }

  /* Decorative circle */
  .slide-deco {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s 0.5s;
  }
  .slide.active .slide-deco { opacity: 1; }

  .ring {
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(240,165,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 20s linear infinite;
  }
  .ring2 {
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(45,145,68,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 14s linear infinite reverse;
  }
  .ring-core {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,145,68,0.25), rgba(240,165,0,0.08));
    border: 2px solid rgba(240,165,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
  }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* SLIDER CONTROLS */
  .slider-dots {
    position: absolute;
    bottom: 36px;
    left: 70px;
    display: flex;
    gap: 10px;
    z-index: 10;
    align-items: center;
  }

  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s;
    border: none;
    outline: none;
  }
  .dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(240,165,0,0.5);
  }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 56px; height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
  }
  .slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(240,165,0,0.4);
  }
  .slider-arrow.prev { left: 28px; }
  .slider-arrow.next { right: 28px; }

  .slide-counter {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 10;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 500;
  }
  .slide-counter .cn { color: var(--gold); font-size: 1.1rem; font-weight: 700; }

  .progress-line {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--gold));
    z-index: 10;
    animation: progAnim 5s linear infinite;
    box-shadow: 0 0 10px rgba(240,165,0,0.4);
  }
  @keyframes progAnim { from { width: 0; } to { width: 100%; } }

  /* STATS BAR */
  .stats-bar {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    border-top: 1px solid rgba(240,165,0,0.15);
    border-bottom: 1px solid rgba(240,165,0,0.12);
  }
  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: rgba(240,165,0,0.04); }
  .stat-icon { font-size: 1.4rem; margin-bottom: 8px; display: block; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  .stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
  }

  /* PLACEHOLDER SECTIONS */
  .sec {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
  }
  .sec h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 18px;
  }
  .sec p { max-width: 600px; line-height: 1.9; font-size: 1.05rem; }
  .sec-a { background: #f7fdf9; }
  .sec-a h2 { color: var(--green); }
  .sec-a p { color: #5a6e5e; }
  .sec-b { background: #fff; }
  .sec-b h2 { color: var(--blue); }
  .sec-b p { color: #5a606e; }
  .sec-c { background: #f7fdf9; }
  .sec-c h2 { color: var(--green); }
  .sec-c p { color: #5a6e5e; }
  .sec-d { background: linear-gradient(135deg, var(--dark), var(--dark2)); }
  .sec-d h2 { color: var(--gold); }
  .sec-d p { color: rgba(255,255,255,0.75); }

  .contact-btn {
    background: linear-gradient(135deg, #2d9144, #1a6b2a);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(45,145,68,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 24px;
  }
  .contact-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--orange)); color: var(--dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(240,165,0,0.4); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .slide-deco { display: none; }
    .slide-content { padding: 40px 36px; }
    .slider-dots { left: 36px; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .topbar { display: none; }
    .slider { margin-top: 74px; min-height: 520px; }
    .slide-content { padding: 30px 24px; align-items: flex-end; padding-bottom: 90px; }
    .slider-arrow { display: none; }
    .slider-dots { left: 24px; bottom: 32px; }
    .slide-counter { right: 24px; bottom: 32px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); }
    .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
    .logo-text { display: none; }
    .sec h2 { font-size: 2rem; }
  }
  @media (max-width: 480px) {
    .nav-inner { height: 64px; padding: 0 18px; }
    .slider { margin-top: 64px; }
    .mobile-menu { top: 64px; }
    .slide-title { font-size: 1.75rem; }
    .btn-primary, .btn-ghost { padding: 12px 22px; font-size: 0.85rem; }
    .stat-num { font-size: 1.8rem; }
  }



   footer { background: var(--dark); position: relative; }

  .footer-wave {
    line-height: 0;
    background: #f7fdf9; /* matches last section color */
  }
  .footer-wave svg { display: block; width: 100%; height: 60px; }

  .footer-main {
    background: var(--dark);
    padding: 60px 24px 40px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 40px;
  }

  /* Logo */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .footer-logo-img {
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(240,165,0,0.4);
    box-shadow: 0 0 14px rgba(240,165,0,0.2);
    background: white;
    flex-shrink: 0;
  }

  .footer-logo-img img { width: 100%; height: 100%; object-fit: contain; }

  .footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .fl-name { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 0.95rem; font-weight: 700; }
  .fl-tag { color: rgba(255,255,255,0.45); font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

  .footer-about {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  /* Socials */
  .footer-socials { display: flex; gap: 10px; margin-bottom: 22px; }
  .social-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-btn:hover { background: rgba(240,165,0,0.15); border-color: rgba(240,165,0,0.4); transform: translateY(-2px); }

  /* Ambulance Badge */
  .partner-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(21,101,192,0.12);
    border: 1px solid rgba(21,101,192,0.3);
    border-radius: 12px;
    padding: 12px 14px;
  }
  .amb-icon { font-size: 1.6rem; }
  .amb-name { color: #64b5f6; font-size: 0.82rem; font-weight: 600; }
  .amb-loc { color: rgba(255,255,255,0.45); font-size: 0.7rem; margin-top: 2px; }

  /* Headings */
  .footer-heading {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fh-bar {
    display: inline-block;
    width: 28px; height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--gold));
    border-radius: 2px;
    flex-shrink: 0;
  }

  /* Links */
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.83rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .footer-links a:hover { color: var(--gold); padding-left: 6px; }

  /* Contact info */
  .footer-contact-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
  .fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    line-height: 1.6;
  }
  .fc-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
  .fc-item a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
  .fc-item a:hover { color: white; }
  .fc-item strong { color: rgba(255,255,255,0.8); }

  /* Map */
  .footer-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  /* Footer Bottom */
  .footer-bottom {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 24px;
  }
  .footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
  }
  .footer-bottom span { color: rgba(255,255,255,0.6); font-weight: 600; }

  /* FOOTER RESPONSIVE */
  @media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-main { padding: 40px 20px 30px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-wave svg { height: 40px; }
  }



  .breadcrumb-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bc-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/g-5.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.6s;
}

.bc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,28,16,0.88) 0%, rgba(21,101,192,0.5) 100%);
}

.bc-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.bc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
}

.bc-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-nav a:hover { color: var(--gold); }
.bc-sep { color: rgba(255,255,255,0.4); font-size: 1.1rem; }
.bc-current { color: var(--gold); font-weight: 600; }


  