:root{
  --purple:#5B2C8A;
  --blue:#3A9FD6;
  --light-purple:#9B59B6;
  --white:#ffffff;
  --muted:#6b7280;
}

/* Preloader Styles */
@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(91, 44, 138, 0.95), rgba(58, 159, 214, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 0.6s ease-in-out 2.4s forwards;
}

.preloader.hidden {
  display: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 2.5rem);
  animation: slideUp 0.8s ease-out;
}

.preloader-logo {
  width: clamp(120px, 25vw, 280px);
  height: auto;
  max-width: 100%;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.preloader-text {
  color: var(--white);
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.1em;
}

.preloader-spinner {
  width: clamp(40px, 10vw, 80px);
  height: clamp(40px, 10vw, 80px);
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--white);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

/* Responsive preloader adjustments */
@media (max-width: 768px) {
  .preloader-content {
    gap: 1.5rem;
    padding: 1rem;
  }

  .preloader-logo {
    width: clamp(100px, 20vw, 200px);
  }
}

@media (max-width: 480px) {
  .preloader {
    background: linear-gradient(135deg, rgba(91, 44, 138, 0.98), rgba(58, 159, 214, 0.98));
  }

  .preloader-content {
    gap: 1.2rem;
    padding: 1rem;
  }

  .preloader-text {
    font-size: 1rem;
  }

  .preloader-spinner {
    border-width: 3px;
  }
}

*{box-sizing:border-box}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;line-height:1.5;color:var(--purple);margin:0;background:var(--white)}
.container{max-width:1100px;margin:0 auto;padding:1rem}
.site-header{position:relative;background:linear-gradient(110deg,rgba(12,19,56,.98),rgba(36,22,84,.97));color:var(--white);border-bottom:1px solid rgba(255,255,255,.1);box-shadow:0 12px 36px rgba(15,23,42,.18);backdrop-filter:blur(18px)}
.site-header::before{content:"";position:absolute;inset:0 0 auto;height:3px;background:linear-gradient(90deg,var(--light-purple),var(--blue),#78d4ee)}
.site-header .inner{display:flex;align-items:center;justify-content:space-between;gap:clamp(1rem,2.4vw,2.5rem);padding:.85rem 1.5rem;max-width:1320px;margin:0 auto}
.header-right{display:flex;align-items:center;gap:clamp(.8rem,1.7vw,1.6rem);justify-content:flex-end;flex:1}
.sticky-header{position:sticky;top:0;z-index:1000}
.nav{list-style:none;margin:0;padding:0;display:flex;gap:.15rem;align-items:center}
.nav a{position:relative;display:block;color:rgba(255,255,255,.82);text-decoration:none;font-size:.92rem;font-weight:650;padding:.8rem .65rem;transition:color .2s ease,transform .2s ease}
.nav a::after{content:"";position:absolute;left:.65rem;right:.65rem;bottom:.42rem;height:2px;border-radius:999px;background:var(--blue);transform:scaleX(0);transform-origin:right;transition:transform .22s ease}
.nav a:hover,.nav a:focus-visible,.nav a.active{color:#fff}
.nav a:hover::after,.nav a:focus-visible::after,.nav a.active::after{transform:scaleX(1);transform-origin:left}
.nav a:focus-visible{outline:2px solid rgba(120,212,238,.8);outline-offset:3px;border-radius:5px}
.header-actions{display:flex;align-items:center;gap:.85rem;flex-shrink:0}
.header-contact{color:rgba(255,255,255,.82);font-size:.92rem;font-weight:650;text-decoration:none;transition:color .2s ease}
.header-contact:hover,.header-contact:focus-visible{color:#fff}
.header-actions .header-cta{display:inline-flex;align-items:center;gap:.55rem;padding:.75rem 1.05rem;border-radius:10px;background:linear-gradient(135deg,var(--blue),#247fc4);color:var(--white);border:1px solid rgba(255,255,255,.18);box-shadow:0 9px 24px rgba(27,128,197,.28);white-space:nowrap;transition:transform .2s ease,box-shadow .2s ease}
.header-actions .header-cta:hover{transform:translateY(-2px);box-shadow:0 13px 28px rgba(27,128,197,.38)}
.header-actions .header-cta:focus-visible{outline:2px solid #fff;outline-offset:3px}
.menu-toggle{display:none;align-items:center;gap:.55rem;padding:.65rem .8rem;color:#fff;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);border-radius:10px;font:inherit;font-weight:700;cursor:pointer}
.menu-toggle-icon,.menu-toggle-icon::before,.menu-toggle-icon::after{display:block;width:20px;height:2px;border-radius:2px;background:currentColor;transition:transform .2s ease,opacity .2s ease}
.menu-toggle-icon{position:relative}
.menu-toggle-icon::before,.menu-toggle-icon::after{content:"";position:absolute;left:0}
.menu-toggle-icon::before{top:-6px}
.menu-toggle-icon::after{top:6px}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon{background:transparent}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before{top:0;transform:rotate(45deg)}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after{top:0;transform:rotate(-45deg)}

.footer-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1rem;align-items:start}
.site-footer{background:#f8fafc;padding:1.25rem;margin-top:2rem;border-top:1px solid #e6e7ea}
.site-footer h4{margin:0 0 .5rem 0}
.site-footer ul{list-style:none;padding:0;margin:0}
.site-footer a{color:var(--purple);text-decoration:none}
.brand a{display:flex;align-items:center;gap:.75rem;color:var(--white);font-weight:700;text-decoration:none}
.brand a .site-logo{width:clamp(78px,8vw,108px);height:auto;max-width:100%;transition:transform .25s ease;filter:drop-shadow(0 5px 12px rgba(0,0,0,.18))}
.brand a:hover .site-logo{transform:scale(1.02)}
.brand-copy{display:flex;flex-direction:column;line-height:1.15}
.brand-copy strong{font-size:1rem;letter-spacing:.02em}
.brand-copy small{margin-top:.28rem;color:#79ccec;font-size:.66rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;white-space:nowrap}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.hero{position:relative;min-height:62vh;display:flex;align-items:center;color:var(--white);overflow:hidden}
.hero-bg{position:absolute;inset:0;background-image:linear-gradient(180deg,rgba(20,13,62,.28),rgba(20,13,62,.28)),url('../images/big banner.webp');background-size:cover;background-position:center;filter:contrast(.95);}
.hero-inner{position:relative;padding:4rem 1rem;text-align:center;max-width:960px;margin:0 auto}
.hero h1{font-size:clamp(1.4rem,3.6vw,2.6rem);line-height:1.05;margin:0 0 .5rem}
.subheadline{font-size:1.05rem;color:rgba(255,255,255,.9);margin-bottom:1rem}
.hero-ctas{display:flex;gap:0.75rem;justify-content:center;flex-wrap:wrap;margin:1rem 0}
.btn{display:inline-block;padding:0.65rem 1rem;border-radius:8px;border:none;cursor:pointer;text-decoration:none}
.btn.primary{background:var(--blue);color:var(--white);font-weight:600}
.btn:not(.primary){background:rgba(255,255,255,.15);color:var(--white);border:1px solid rgba(255,255,255,.18)}
.form-status{margin-top:1rem;font-weight:600;color:var(--purple)}
.hero-caption{margin-top:0.5rem;color:rgba(255,255,255,.85)}

/* Homepage action panel */
.home-action-panel{position:relative;z-index:2;margin-top:-2.75rem;padding-top:0}
.home-action-card{padding:1.6rem clamp(1rem,3vw,2rem);background:rgba(255,255,255,.97);border:1px solid rgba(91,44,138,.12);border-radius:18px;box-shadow:0 18px 45px rgba(25,20,64,.16);text-align:center;backdrop-filter:blur(12px)}
.home-action-card h2{margin:0;color:var(--purple);font-size:clamp(1.45rem,2.5vw,2rem)}
.home-action-intro{margin:.4rem auto 1.25rem;max-width:680px;color:var(--muted)}
.home-action-buttons{display:flex;align-items:stretch;justify-content:center;gap:.85rem}
.action-btn{display:inline-flex;align-items:center;justify-content:center;gap:.6rem;min-height:50px;padding:.78rem 1.25rem;border:2px solid transparent;border-radius:11px;font-weight:750;line-height:1.2;text-decoration:none;box-shadow:0 7px 18px rgba(35,27,75,.12);transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease,border-color .2s ease}
.action-btn:hover{transform:translateY(-3px);box-shadow:0 12px 25px rgba(35,27,75,.2)}
.action-btn:active{transform:translateY(-1px)}
.action-btn:focus-visible{outline:3px solid rgba(58,159,214,.5);outline-offset:3px}
.action-btn-icon{font-size:1.08rem;line-height:1}
.action-btn-primary{background:#a51f45;color:#fff;border-color:#a51f45}
.action-btn-primary:hover{background:#861937;border-color:#861937}
.action-btn-secondary{background:var(--purple);color:#fff;border-color:var(--purple)}
.action-btn-secondary:hover{background:#47206e;border-color:#47206e}
.action-btn-outline{background:#fff;color:#174b75;border-color:#287caf}
.action-btn-outline:hover{background:#eef8fd;border-color:#174b75}
.trust-indicators{display:flex;justify-content:center;gap:clamp(.75rem,2vw,1.8rem);flex-wrap:wrap;list-style:none;margin:1.25rem 0 0;padding:1rem 0 0;border-top:1px solid #e7e5ef;color:#514b65;font-size:.83rem;font-weight:650}
.trust-indicators li{display:flex;align-items:center;gap:.35rem}

/* Dedicated volunteer page */
.volunteer-page-hero{position:relative;min-height:620px;display:flex;align-items:center;overflow:hidden;background-color:#111947;background-image:linear-gradient(90deg,rgba(12,19,56,.98) 0%,rgba(27,22,78,.9) 48%,rgba(27,22,78,.22) 100%),url('../images/Viclappy_Mentoring_Peer_Support_Hero.webp');background-position:center;background-size:cover;color:#fff}
.volunteer-page-hero::after{content:"";position:absolute;inset:auto 0 0;height:5px;background:linear-gradient(90deg,var(--light-purple),var(--blue))}
.volunteer-page-hero-inner{width:100%}
.volunteer-hero-copy{position:relative;z-index:1;max-width:660px;padding:5rem 0}
.volunteer-eyebrow{margin:0 0 .65rem;color:#69c8ef;font-size:.78rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase}
.volunteer-hero-copy h1{max-width:620px;margin:0;font-size:clamp(2.5rem,5vw,4.6rem);line-height:1.02;letter-spacing:-.035em}
.volunteer-hero-copy>p:not(.volunteer-eyebrow){max-width:580px;margin:1.25rem 0 0;color:rgba(255,255,255,.88);font-size:1.12rem;line-height:1.7}
.volunteer-hero-actions{display:flex;gap:.85rem;flex-wrap:wrap;margin-top:1.75rem}
.volunteer-learn-link{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.72)}
.volunteer-learn-link:hover{background:#fff;color:#172052;border-color:#fff}
.volunteer-hero-trust{display:flex;gap:1.2rem;flex-wrap:wrap;list-style:none;margin:1.5rem 0 0;padding:0;color:rgba(255,255,255,.82);font-size:.86rem;font-weight:650}
.volunteer-hero-trust li{display:flex;align-items:center;gap:.35rem}
.volunteer-hero-trust span{display:grid;place-items:center;width:20px;height:20px;border-radius:50%;background:rgba(58,159,214,.24);color:#8edcff}
.volunteer-section-heading{max-width:720px;margin:0 auto 2rem;text-align:center}
.volunteer-section-heading h2{margin:0;color:var(--purple);font-size:clamp(1.8rem,3.5vw,2.7rem);line-height:1.12}
.volunteer-section-heading>p:last-child{margin:.75rem auto 0;color:var(--muted);line-height:1.7}
.volunteer-opportunities{padding-top:4.5rem;padding-bottom:4.5rem}
.volunteer-role-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.volunteer-role-card{padding:1.5rem;background:#fff;border:1px solid #e8e5ef;border-radius:16px;box-shadow:0 10px 28px rgba(30,23,70,.07);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.volunteer-role-card:hover{transform:translateY(-5px);border-color:rgba(58,159,214,.45);box-shadow:0 16px 32px rgba(30,23,70,.12)}
.volunteer-role-icon{display:grid;place-items:center;width:52px;height:52px;margin-bottom:1rem;border-radius:14px;background:linear-gradient(135deg,rgba(91,44,138,.13),rgba(58,159,214,.18));font-size:1.45rem}
.volunteer-role-card h3{margin:0;color:var(--purple);font-size:1.08rem}
.volunteer-role-card p{margin:.65rem 0 0;color:var(--muted);font-size:.94rem;line-height:1.6}
.volunteer-process{padding:4.5rem 0;background:linear-gradient(135deg,#f7f5fb,#eef8fc)}
.volunteer-process-list{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:1000px;margin:0 auto;padding:0;list-style:none;counter-reset:none}
.volunteer-process-list li{display:flex;gap:1rem;padding:1.4rem;background:#fff;border:1px solid rgba(91,44,138,.1);border-radius:15px}
.volunteer-process-list>li>span{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:50%;background:var(--purple);color:#fff;font-weight:800}
.volunteer-process-list h3{margin:0;color:var(--purple);font-size:1.05rem}
.volunteer-process-list p{margin:.45rem 0 0;color:var(--muted);font-size:.92rem;line-height:1.55}
.volunteer-application{padding-top:5rem;padding-bottom:5rem}
.volunteer-application-layout{display:grid;grid-template-columns:minmax(260px,.75fr) minmax(0,1.55fr);gap:2.5rem;align-items:start}
.volunteer-application-intro{position:sticky;top:120px;padding:2rem;background:linear-gradient(145deg,#171647,#39216d);border-radius:18px;color:#fff;box-shadow:0 15px 35px rgba(24,19,66,.18)}
.volunteer-application-intro h2{margin:0;font-size:clamp(1.8rem,3vw,2.5rem);line-height:1.1}
.volunteer-application-intro>p{color:rgba(255,255,255,.82);line-height:1.7}
.volunteer-note{margin-top:1.5rem;padding:1rem;border:1px solid rgba(255,255,255,.15);border-radius:12px;background:rgba(255,255,255,.06)}
.volunteer-note p{margin:.4rem 0 0;color:rgba(255,255,255,.76);font-size:.9rem;line-height:1.55}
.volunteer-page-form{max-width:none;margin:0;padding:2rem;border-radius:18px;box-shadow:0 14px 35px rgba(27,21,68,.09)}
.volunteer-interest-fieldset{margin:0 0 1.5rem;padding:0;border:0}
.volunteer-interest-fieldset legend{font-weight:700;color:var(--purple);font-size:.95rem}
.volunteer-page-form .checkbox-label{padding:.75rem;border:1px solid #e4e1ea;border-radius:9px;background:#fafafe;transition:border-color .2s ease,background .2s ease}
.volunteer-page-form .checkbox-label:hover{border-color:var(--blue);background:#f1f9fd}
.volunteer-submit{width:100%;border:0;cursor:pointer;font:inherit}
.volunteer-faq{padding:4.5rem 0;background:#f8fafc}

.section{padding:2rem 0}
.container{max-width:1100px;margin:0 auto;padding:0 1rem}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}
.card{background:#fff;border:1px solid #e6e7ea;padding:1.5rem;border-radius:16px;box-shadow:0 8px 24px rgba(2,6,23,.08);display:flex;flex-direction:column;gap:1rem;min-height:310px;cursor:pointer}
.card a{cursor:auto}
.service-card .icon{width:56px;height:56px;display:grid;place-items:center;border-radius:18px;background:rgba(58,157,214,.15);color:var(--purple);font-size:1.75rem}
.service-card h2{font-size:1.1rem;margin:0}
.service-card p{margin:0;color:var(--muted);flex:1}
.service-card .btn.secondary{margin-top:auto;background:var(--purple);color:var(--white);border:1px solid transparent}
.service-card-image-card{padding:0;overflow:hidden}
.service-card-image-card .service-card-image{width:100%;height:auto;display:block;object-fit:cover}
.service-card-image-card .service-card-copy{padding:1.5rem;display:flex;flex-direction:column;gap:0.8rem}
.service-card-image-card .service-card-copy h2{margin:0;font-size:1.15rem}
.service-card-image-card .service-card-copy p{margin:0;color:var(--muted);line-height:1.6}
.service-card .btn.secondary:hover{background:#4a1f7a}
.resource-grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem}
.featured-va-card{padding:0!important;min-height:auto;overflow:hidden}
.featured-va-card .card-image{width:100%;height:100%;display:block;object-fit:cover;border-radius:0}
.veteran-card{padding:0!important}
.service-card-image{width:100%;height:auto;display:block;border-radius:12px}
.resource-card .icon{width:56px;height:56px;display:grid;place-items:center;border-radius:18px;background:rgba(58,157,214,.15);color:var(--purple);font-size:1.75rem}
.resource-card h2{font-size:1.2rem;margin:0}
.resource-card p{margin:0;color:var(--muted);flex:1}
.features li{padding:.6rem 0;border-bottom:1px dashed #eef2f7}
.testimonials blockquote{background:#f8fafc;padding:1rem;border-left:4px solid var(--blue);margin:0 0 1rem}
.cta{background:linear-gradient(90deg,var(--purple),#3d1f5c);color:var(--white);padding:2.5rem 0;text-align:center}

.about-hero{display:grid;grid-template-columns:1fr;gap:2rem;padding:3rem 0;background:#f8fafc}
.about-hero-image{min-height:320px;background-image:linear-gradient(180deg,rgba(91,44,138,.45),rgba(91,44,138,.45)), url('../images/Viclappy_Holdings_Hero.webp');background-size:cover;background-position:center;border-radius:24px;}
.about-hero-copy{display:flex;flex-direction:column;justify-content:center;gap:1rem}
.about-hero-copy .eyebrow{font-size:.9rem;text-transform:uppercase;letter-spacing:.2em;color:var(--blue);margin:0}
.about-hero-copy h1{font-size:clamp(2rem,3.2vw,3.4rem);margin:0;line-height:1.05}
.about-hero-copy p{max-width:760px;color:var(--purple);margin:0}
.about-section{padding:2rem 0}
.about-row{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}
.values-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}
.team-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}
.partnership-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}
.team-card{gap:1rem;align-items:flex-start}
.team-image{width:100%;min-height:180px;border-radius:18px;background:linear-gradient(135deg,var(--purple),#8B4FB8);}
.partnership-card{display:flex;align-items:center;justify-content:center;min-height:120px;font-weight:600;color:var(--purple);background:#fff;border:1px solid #e6e7ea;}

.blog-header{padding:2rem 0;border-bottom:2px solid #e6e7ea;margin-bottom:2rem}
.blog-header h1{margin:0 0 .5rem}
.blog-controls{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;margin-bottom:2rem}
.blog-search{display:flex;gap:.5rem}
.blog-search input{flex:1;padding:0.6rem;border:1px solid #d1d5db;border-radius:6px}
.blog-categories{display:flex;gap:.75rem;flex-wrap:wrap;align-items:center}
.category-tag{display:inline-block;padding:0.5rem 1rem;border-radius:20px;background:#f8fafc;border:1px solid #d1d5db;color:var(--purple);text-decoration:none;font-size:.9rem}
.category-tag.active{background:var(--purple);color:var(--white)}
.category-tag:hover{background:#e6e7ea}
.blog-featured{margin-bottom:3rem}
.featured-grid{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.featured-card{position:relative;background:linear-gradient(135deg,#f8fafc,#fff);border-left:4px solid var(--blue)}
.featured-tag{position:absolute;top:0;right:0;background:var(--blue);color:var(--white);padding:0.3rem 0.8rem;font-size:.75rem;font-weight:600;border-radius:0 16px 0 4px}
.featured-card h3{margin-top:1rem;color:var(--purple)}
.category-label{font-size:.9rem;color:var(--blue);margin:.25rem 0;font-weight:600}
.article-grid{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.blog-card{gap:0.75rem}
.category-badge{display:inline-block;background:rgba(58,157,214,.15);color:var(--purple);padding:0.3rem 0.75rem;border-radius:12px;font-size:.8rem;font-weight:600}
.blog-card h3{margin:0.5rem 0 0;color:var(--purple)}
.blog-card p{margin:0.5rem 0;color:var(--muted);font-size:.95rem}
.blog-card time{display:block;font-size:.85rem;color:#999;margin:.5rem 0}
.read-link{color:var(--purple);font-weight:600;text-decoration:none}
.read-link:hover{color:var(--blue)}
.blog-post-content{max-width:900px;margin:0 auto;padding:2rem 0}
.blog-post-content article{margin-bottom:2rem}
.post-meta{display:flex;gap:1rem;align-items:center;margin-bottom:1rem}
.post-author{color:var(--muted);font-style:italic}
.post-body{line-height:1.8;color:var(--purple)}

.testimonials-page{margin-bottom:2rem}
.testimonials-carousel{margin:2rem 0}
.carousel{position:relative;background:#f8fafc;border-radius:24px;padding:3rem 4rem;overflow:hidden}
.carousel-inner{position:relative;display:flex;align-items:center;justify-content:center;min-height:380px}
.carousel-item{display:none;opacity:0;transition:opacity .6s ease-in-out;width:100%;text-align:center}
.carousel-item.active{display:block;opacity:1}
.testimonial-card{max-width:700px;margin:0 auto}
.testimonial-image{width:100px;height:100px;border-radius:50%;background:linear-gradient(135deg,var(--blue),#2E8BC0);margin:0 auto 1.5rem;box-shadow:0 4px 12px rgba(2,6,23,.12)}
.testimonial-card blockquote{font-size:1.2rem;line-height:1.6;color:var(--purple);font-style:italic;margin:0 0 1rem;padding:0}
.testimonial-author{font-weight:700;color:var(--purple);margin:0.5rem 0 0.25rem;font-size:1.05rem}
.testimonial-role{color:var(--blue);font-size:.9rem;margin:0}
.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:var(--purple);color:var(--white);border:none;width:44px;height:44px;border-radius:50%;cursor:pointer;font-size:1.2rem;display:flex;align-items:center;justify-content:center;transition:background .2s}
.carousel-btn:hover{background:#4a1f7a}
.carousel-btn.prev{left:1rem}
.carousel-btn.next{right:1rem}

/* Volunteer & Donate Page Styles */
.volunteer-hero{position:relative;min-height:55vh;display:flex;align-items:center;justify-content:center;color:var(--white);overflow:hidden;background:linear-gradient(135deg,var(--purple),#3d1f5c)}
.volunteer-hero .hero-bg{position:absolute;inset:0;background-image:linear-gradient(180deg,rgba(91,44,138,.7),rgba(91,44,138,.7)), url('images/Viclappy_Transition_Reentry_Support_Slider.webp');background-size:cover;background-position:center;filter:brightness(.95)}
.volunteer-hero .hero-inner{position:relative;z-index:2;text-align:center;max-width:900px;padding:3rem 2rem}
.volunteer-hero h1{font-size:clamp(2rem,4vw,3.2rem);margin:0 0 1rem;line-height:1.1;font-weight:700}
.volunteer-hero .subheadline{font-size:1.2rem;color:rgba(255,255,255,.95);margin:0 0 2rem;line-height:1.5}

/* Impact Section */
.impact-section{padding:3rem 0;background:#f8fafc;border-radius:16px;margin:3rem 0}
.impact-section h2{text-align:center;font-size:2rem;margin:0 0 3rem;color:var(--purple)}
.impact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem}
.impact-card{background:#fff;padding:2rem;border-radius:12px;text-align:center;border:1px solid #e6e7ea;box-shadow:0 4px 12px rgba(58,157,214,.08);transition:transform .3s,box-shadow .3s}
.impact-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(58,157,214,.15)}
.impact-stat{font-size:2.4rem;font-weight:700;color:var(--blue);margin:0 0 0.5rem}
.impact-card p{margin:0;color:var(--purple);font-weight:500}

/* Volunteer Section */
.volunteer-section{padding:3rem 0;margin:3rem 0}
.section-intro{text-align:center;margin:0 auto 2.5rem;max-width:800px}
.section-intro h2{font-size:2rem;margin:0 0 1rem;color:var(--purple)}
.section-intro p{color:var(--muted);font-size:1.05rem;line-height:1.6;margin:0}

.volunteer-form{max-width:800px;margin:0 auto;background:#fff;padding:2rem;border-radius:12px;border:1px solid #e6e7ea}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:1.5rem}
.form-row.full{grid-template-columns:1fr}
.form-group{display:flex;flex-direction:column}
.form-group label{font-weight:600;margin-bottom:0.5rem;color:var(--purple);font-size:0.95rem}
.form-group input[type="text"],.form-group input[type="email"],.form-group input[type="tel"],.form-group input[type="date"],.form-group input[type="number"],.form-group select,.form-group textarea{padding:0.75rem;border:1px solid #d1d5db;border-radius:6px;font-size:1rem;font-family:inherit;transition:border-color .2s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(58,157,214,.1)}
.form-group textarea{resize:vertical;line-height:1.5}

.checkbox-group{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin:1rem 0}
.checkbox-label{display:flex;align-items:center;cursor:pointer;font-weight:normal}
.checkbox-label input[type="checkbox"]{margin-right:0.5rem;cursor:pointer;width:18px;height:18px;accent-color:var(--blue)}

.btn-lg{padding:0.85rem 1.75rem;font-size:1rem;font-weight:600}

/* Donation Section */
.donate-section{padding:3rem 0;margin:3rem 0}
.donate-section h2{text-align:center;font-size:2rem;margin:0 0 0.5rem;color:var(--purple)}
.section-intro-text{text-align:center;color:var(--muted);font-size:1.05rem;margin:0 0 2.5rem;max-width:800px}

.donation-tiers{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;margin:2.5rem 0 3rem}
.donation-card{background:#fff;border:2px solid #e6e7ea;padding:2rem;border-radius:12px;display:flex;flex-direction:column;position:relative;transition:transform .3s,box-shadow .3s,border-color .3s}
.donation-card:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(91,44,138,.15);border-color:var(--blue)}
.donation-card.featured-tier{border-color:var(--blue);background:linear-gradient(135deg,#f0f4ff,#fff);box-shadow:0 8px 24px rgba(58,157,214,.2)}
.tier-badge{position:absolute;top:-12px;left:1rem;background:var(--blue);color:var(--white);padding:0.4rem 1rem;border-radius:20px;font-size:.8rem;font-weight:700}
.donation-card h3{font-size:1.4rem;color:var(--purple);margin:0.5rem 0 0}
.tier-amount{font-size:2.2rem;font-weight:700;color:var(--blue);margin:0.5rem 0 1.5rem}
.tier-benefits{list-style:none;padding:0;margin:0 0 1.5rem;flex:1}
.tier-benefits li{padding:0.6rem 0;color:var(--purple);border-bottom:1px solid #eef2f7}
.tier-benefits li:last-child{border:none}

.btn-donation{padding:0.75rem 1.5rem}
.donation-card .btn{width:100%}

.custom-donation{text-align:center;padding:1.5rem 0}
.custom-donation p{color:var(--muted);margin:0 0 1rem}
.custom-input-group{display:flex;align-items:center;gap:0;border:1px solid #d1d5db;border-radius:6px;overflow:hidden}
.currency{padding:0.75rem 1rem;background:#f3f4f6;color:var(--purple);font-weight:600}
.custom-input{flex:1;border:none;padding:0.75rem;font-size:1rem}

.donation-methods{margin:3rem 0;padding:2rem;background:#f8fafc;border-radius:12px}
.donation-methods h3{text-align:center;font-size:1.5rem;margin:0 0 2rem;color:var(--purple)}
.methods-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}
.method-card{background:#fff;padding:1.5rem;border-radius:8px;text-align:center;border:1px solid #e6e7ea}
.method-icon{font-size:2.5rem;margin-bottom:0.5rem}
.method-card h4{margin:0.5rem 0 0.5rem;font-size:1.1rem;color:var(--purple)}
.method-card p{margin:0;color:var(--muted);font-size:.9rem}

/* Sponsor Section */
.sponsor-section{padding:3rem 0;margin:3rem 0;background:#f8fafc;padding:3rem;border-radius:16px}
.sponsor-section h2{text-align:center;font-size:2rem;margin:0 0 0.5rem;color:var(--purple)}

.sponsor-levels{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin:2.5rem 0 3rem}
.sponsor-card{background:#fff;padding:2rem;border-radius:12px;border:2px solid #e6e7ea;display:flex;flex-direction:column}
.sponsor-card.highlighted{border-color:var(--blue);background:linear-gradient(135deg,#f0f4ff,#fff);box-shadow:0 8px 24px rgba(58,157,214,.15)}
.sponsor-card h3{font-size:1.3rem;color:var(--purple);margin:0 0 0.5rem}
.sponsor-amount{font-size:1.8rem;font-weight:700;color:var(--blue);margin:0.5rem 0 1.5rem}
.sponsor-benefits{list-style:none;padding:0;margin:0;flex:1}
.sponsor-benefits li{padding:0.6rem 0;color:var(--purple);border-bottom:1px solid #eef2f7}
.sponsor-benefits li:last-child{border:none}

.sponsor-cta{text-align:center;margin-top:2rem}
.sponsor-cta p{margin:0 0 1rem;color:var(--purple);font-size:1.05rem}

/* Partner Section */
.partners-section{padding:3rem 0;margin:3rem 0}
.partners-section h2{text-align:center;font-size:2rem;margin:0 0 0.5rem;color:var(--purple)}

.partners-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;margin:2.5rem 0 3rem}
.partner-card{background:linear-gradient(135deg,#f8fafc,#fff);border:1px solid #e6e7ea;padding:2rem;border-radius:12px;text-align:center;transition:transform .3s,box-shadow .3s}
.partner-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(11,35,64,.1)}
.partner-logo{font-size:3rem;margin-bottom:1rem}
.partner-card h3{font-size:1.2rem;color:var(--purple);margin:0 0 0.75rem}
.partner-card p{color:var(--muted);margin:0;line-height:1.6}

.partner-interest{text-align:center;margin-top:3rem;padding:2rem;background:var(--purple);color:var(--white);border-radius:12px}
.partner-interest h3{margin:0 0 0.5rem;font-size:1.5rem}
.partner-interest p{margin:0 0 1.5rem;color:rgba(255,255,255,.9)}

/* FAQ Section */
.faq-section{padding:3rem 0;margin:3rem 0}
.faq-section h2{text-align:center;font-size:2rem;margin:0 0 2rem;color:var(--purple)}

.faq-container{max-width:800px;margin:0 auto}
.faq-item{background:#f8fafc;padding:1.5rem;margin-bottom:1rem;border-radius:8px;border:1px solid #e6e7ea;cursor:pointer;transition:all .3s}
.faq-item:hover{background:#f3f4f6;box-shadow:0 4px 12px rgba(91,44,138,.05)}
.faq-item summary{font-weight:600;color:var(--purple);font-size:1.05rem;display:flex;justify-content:space-between;align-items:center;user-select:none;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"▼";color:var(--blue);transition:transform .3s;font-size:.8rem;margin-left:1rem}
.faq-item[open] summary::after{transform:rotate(180deg)}
.faq-item p{margin:1rem 0 0;color:var(--muted);line-height:1.6}

/* Final CTA Section */
.final-cta{background:linear-gradient(135deg,var(--purple),#3d1f5c);color:var(--white);padding:3rem 2rem;border-radius:16px;text-align:center;margin:3rem 0}
.cta-content h2{font-size:2rem;margin:0 0 1rem}
.cta-content p{font-size:1.1rem;margin:0 0 2rem;color:rgba(255,255,255,.95);line-height:1.6}
.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.cta-buttons .btn{display:inline-block}

/* Contact Page Styles */
.contact-hero{position:relative;min-height:48vh;display:flex;align-items:center;color:var(--white);overflow:hidden;background:linear-gradient(135deg,var(--purple),#3d1f5c)}
.contact-hero .hero-bg{position:absolute;inset:0;background-image:linear-gradient(180deg,rgba(91,44,138,.7),rgba(91,44,138,.7)), url('images/Viclappy_Transition_Reentry_Support_Slider.webp');background-size:cover;background-position:center;filter:brightness(.95)}
.contact-hero .hero-inner{position:relative;z-index:2;text-align:center;max-width:900px;padding:3rem 2rem;margin:0 auto}
.contact-hero h1{font-size:clamp(2rem,4vw,3.2rem);margin:0 0 1rem;line-height:1.1;font-weight:700}
.contact-hero .subheadline{font-size:1.2rem;color:rgba(255,255,255,.95);margin:0;line-height:1.5}

/* Contact Information Section */
.contact-info-section{padding:3rem 0;margin:3rem 0}
.contact-info-section h2{text-align:center;font-size:2rem;margin:0 0 2.5rem;color:var(--purple)}
.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}
.contact-card{background:#fff;border:2px solid #e6e7ea;padding:2rem;border-radius:12px;text-align:center;transition:transform .3s,box-shadow .3s,border-color .3s}
.contact-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(58,157,214,.15);border-color:var(--blue)}
.contact-icon{font-size:3rem;margin:0 0 1rem}
.contact-card h3{font-size:1.3rem;color:var(--purple);margin:0 0 1rem}
.contact-card p{margin:0.5rem 0;color:var(--muted);line-height:1.6}
.contact-card a{color:var(--blue);text-decoration:none;font-weight:600}
.contact-card a:hover{text-decoration:underline}

/* Business Hours Section */
.business-hours-section{padding:3rem 0;margin:3rem 0;background:#f8fafc;padding:3rem;border-radius:16px}
.business-hours-section h2{text-align:center;font-size:2rem;margin:0 0 2.5rem;color:var(--purple)}
.hours-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}
.hours-card{background:#fff;padding:2rem;border-radius:12px;border:1px solid #e6e7ea}
.hours-card h3{font-size:1.3rem;color:var(--purple);margin:0 0 1.5rem}
.hours-list{display:flex;flex-direction:column;gap:1rem}
.hours-item{display:flex;justify-content:space-between;align-items:center;padding:0.75rem 0;border-bottom:1px solid #eef2f7}
.hours-item:last-child{border-bottom:none}
.hours-item.full-width{justify-content:center}
.day{font-weight:600;color:var(--purple)}
.time{color:var(--blue);font-weight:600}

/* Contact Layout - Map and Form */
.contact-section{padding:3rem 0;margin:3rem 0}
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.map-container{display:flex;flex-direction:column}
.map-container h2{font-size:1.5rem;color:var(--purple);margin:0 0 1.5rem}
.google-map{border-radius:12px;box-shadow:0 8px 24px rgba(2,6,23,.12)}

.form-container{display:flex;flex-direction:column}
.form-container h2{font-size:1.5rem;color:var(--purple);margin:0 0 1.5rem}
.contact-form{background:#fff;border:1px solid #e6e7ea;padding:0}
.contact-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:1.5rem}
.contact-form .form-group{display:flex;flex-direction:column}
.contact-form label{font-weight:600;margin-bottom:0.5rem;color:var(--purple);font-size:0.95rem}
.contact-form input,.contact-form select,.contact-form textarea{padding:0.75rem;border:1px solid #d1d5db;border-radius:6px;font-size:1rem;font-family:inherit;transition:border-color .2s}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(58,157,214,.1)}
.contact-form textarea{resize:vertical;line-height:1.5;min-height:120px}
.contact-form .btn-lg{width:100%;margin-top:1rem;padding:0.85rem 1.75rem}

/* Social Media Section */
.social-section{padding:3rem 0;margin:3rem 0;text-align:center}
.social-section h2{font-size:2rem;margin:0 0 0.5rem;color:var(--purple)}
.section-subtitle{font-size:1.05rem;color:var(--muted);margin:0 0 2.5rem;line-height:1.6}
.social-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1.5rem;max-width:700px;margin:0 auto}
.social-link{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;padding:1.5rem;border-radius:12px;background:#f8fafc;border:2px solid #e6e7ea;text-decoration:none;transition:all .3s;gap:0.75rem;color:var(--purple)}
.social-link:hover{background:var(--blue);border-color:var(--blue);color:var(--white);transform:translateY(-4px);box-shadow:0 8px 24px rgba(58,157,214,.2)}
.social-icon{font-size:2rem;font-weight:700}
.social-name{font-weight:600;font-size:0.95rem}

/* Contact FAQ Section */
.contact-faq-section{padding:3rem 0;margin:3rem 0}
.contact-faq-section h2{text-align:center;font-size:2rem;margin:0 0 2.5rem;color:var(--purple)}
.faq-container{max-width:800px;margin:0 auto}
.faq-item{background:#f8fafc;padding:1.5rem;margin-bottom:1rem;border-radius:8px;border:1px solid #e6e7ea;cursor:pointer;transition:all .3s}
.faq-item:hover{background:#f3f4f6;box-shadow:0 4px 12px rgba(91,44,138,.05)}
.faq-item summary{font-weight:600;color:var(--purple);font-size:1.05rem;display:flex;justify-content:space-between;align-items:center;user-select:none;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"▼";color:var(--blue);transition:transform .3s;font-size:.8rem;margin-left:1rem}
.faq-item[open] summary::after{transform:rotate(180deg)}
.faq-item p{margin:1rem 0 0;color:var(--muted);line-height:1.6}

/* Contact CTA Section */
.contact-cta{background:linear-gradient(135deg,var(--purple),#3d1f5c);color:var(--white);padding:3rem 2rem;border-radius:16px;text-align:center;margin:3rem 0}
.contact-cta h2{font-size:2rem;margin:0 0 1rem}
.contact-cta p{font-size:1.1rem;margin:0 0 2rem;color:rgba(255,255,255,.95);line-height:1.6}
.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin:0}
.cta-buttons .btn{display:inline-block;padding:0.85rem 1.75rem}

/* Responsive Design */
@media(max-width:768px){
  .home-action-panel{margin-top:-1.5rem}
  .home-action-buttons{flex-direction:column}
  .action-btn{width:100%}
  .trust-indicators{align-items:center;flex-direction:column;gap:.65rem}
  .volunteer-page-hero{min-height:560px;background-image:linear-gradient(90deg,rgba(12,19,56,.96),rgba(27,22,78,.78)),url('../images/Viclappy_Mentoring_Peer_Support_Hero.webp');background-position:center}
  .volunteer-hero-copy{padding:4rem 0}
  .volunteer-role-grid{grid-template-columns:repeat(2,1fr)}
  .volunteer-process-list{grid-template-columns:1fr}
  .volunteer-application-layout{grid-template-columns:1fr;gap:1.5rem}
  .volunteer-application-intro{position:static}
  .form-row{grid-template-columns:1fr}
  .volunteer-hero h1{font-size:1.8rem}
  .impact-grid{grid-template-columns:1fr 1fr}
  .donation-tiers{grid-template-columns:1fr}
  .sponsor-levels{grid-template-columns:1fr}
  .partners-grid{grid-template-columns:1fr}
  .methods-grid{grid-template-columns:repeat(2,1fr)}
  .checkbox-group{grid-template-columns:1fr}
  .cta-buttons{flex-direction:column}
  .cta-buttons .btn{width:100%}
  .carousel{padding:2rem 1rem}
  .carousel-btn{width:40px;height:40px;font-size:1rem}
  .carousel-btn.prev{left:0.5rem}
  .carousel-btn.next{right:0.5rem}
  .contact-layout{grid-template-columns:1fr}
  .social-links{grid-template-columns:repeat(auto-fit,minmax(120px,1fr))}
  .hours-grid{grid-template-columns:1fr}
}


@media(max-width:480px){
  .volunteer-page-hero{min-height:530px}
  .volunteer-hero-copy h1{font-size:2.35rem}
  .volunteer-hero-actions{flex-direction:column}
  .volunteer-hero-actions .action-btn{width:100%}
  .volunteer-hero-trust{align-items:flex-start;flex-direction:column;gap:.65rem}
  .volunteer-role-grid{grid-template-columns:1fr}
  .volunteer-opportunities,.volunteer-application{padding-top:3.5rem;padding-bottom:3.5rem}
  .volunteer-process,.volunteer-faq{padding:3.5rem 0}
  .volunteer-page-form,.volunteer-application-intro{padding:1.3rem}
  .impact-grid{grid-template-columns:1fr}
  .methods-grid{grid-template-columns:1fr}
  .donate-section .container{padding:0 1rem}
  .volunteer-form{padding:1.5rem}
}
/* Services Carousel Slider */
.services-carousel-section{padding:4rem 0;margin:3rem 0;background:linear-gradient(135deg,rgba(91,44,138,.03),rgba(58,159,214,.03));border-radius:20px}
.services-carousel-section h2{text-align:center;font-size:2.2rem;color:var(--purple);margin:0 0 0.5rem}
.carousel-intro{text-align:center;color:var(--muted);font-size:1.1rem;margin:0 0 2.5rem}
.carousel-container{position:relative;margin:0 auto;max-width:1000px}
.carousel-wrapper{overflow:hidden;border-radius:16px;box-shadow:0 12px 40px rgba(91,44,138,.2)}
.carousel-track{display:flex;gap:0;transition:transform .6s cubic-bezier(.4,0,.2,1);transform:translateX(0)}
.carousel-track.transitioning{transition:transform .6s cubic-bezier(.4,0,.2,1)}
.carousel-slide{flex:0 0 100%;min-width:100%;display:flex;align-items:center;justify-content:center;background:var(--white)}
.carousel-slide img{width:100%;height:auto;display:block;max-height:600px;object-fit:cover}
.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(91,44,138,.85);color:var(--white);border:none;width:48px;height:48px;border-radius:50%;cursor:pointer;font-size:1.5rem;display:flex;align-items:center;justify-content:center;transition:background .3s,transform .3s;z-index:10;backdrop-filter:blur(4px)}
.carousel-btn:hover{background:rgba(91,44,138,1);transform:translateY(-50%) scale(1.1)}
.carousel-btn:active{transform:translateY(-50%) scale(0.95)}
.carousel-prev{left:1rem}
.carousel-next{right:1rem}
.carousel-indicators{display:flex;justify-content:center;gap:0.75rem;margin-top:2rem;flex-wrap:wrap}
.indicator{width:12px;height:12px;border-radius:50%;background:#d1d5db;border:2px solid transparent;cursor:pointer;transition:all .3s}
.indicator:hover{background:#b0b9c3;transform:scale(1.1)}
.indicator.active{background:var(--purple);width:32px;border-radius:6px;transform:scale(1.05)}

/* Responsive Carousel */
@media(max-width:768px){
  .carousel-btn{width:40px;height:40px;font-size:1.2rem}
  .carousel-prev{left:0.5rem}
  .carousel-next{right:0.5rem}
  .carousel-slide img{max-height:400px}
  .services-carousel-section h2{font-size:1.8rem}
  .carousel-intro{font-size:1rem}
}

@media(max-width:480px){
  .carousel-btn{width:36px;height:36px;font-size:1rem}
  .carousel-prev{left:0.25rem}
  .carousel-next{right:0.25rem}
  .carousel-slide img{max-height:280px}
  .services-carousel-section{padding:2rem 0;margin:2rem 0}
  .services-carousel-section h2{font-size:1.5rem}
  .carousel-indicators{gap:0.5rem;margin-top:1.5rem}
  .indicator{width:10px;height:10px}
  .indicator.active{width:24px}
}

.carousel-indicators{display:flex;justify-content:center;gap:.75rem;margin-top:1.5rem}
.indicator{width:10px;height:10px;border-radius:50%;background:#d1d5db;border:none;cursor:pointer;transition:background .2s}
.indicator.active{background:var(--gold);width:28px;border-radius:5px}

.cards{padding:2rem 1rem}
.contact{padding:2rem 1rem}
label{display:block;margin-top:0.75rem;font-weight:600}
input,select,textarea{width:100%;padding:0.6rem;border:1px solid #d1d5db;border-radius:6px;margin-top:0.25rem}
button.btn.primary{margin-top:1rem}
.site-footer{background:#f8fafc;padding:1rem;margin-top:2rem}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:0;top:0;width:auto;height:auto;padding:0.5rem;background:var(--purple);color:var(--white)}

.whatsapp-float{position:fixed;bottom:2rem;right:2rem;width:60px;height:60px;background-color:#25d366;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.75rem;box-shadow:0 4px 12px rgba(0,0,0,.15);transition:transform .2s ease,box-shadow .2s ease;z-index:999;text-decoration:none}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 16px rgba(37,211,102,.3)}
.whatsapp-float:active{transform:scale(0.95)}

@media (prefers-reduced-motion: no-preference){
  .card{transition:transform .18s ease,box-shadow .18s}
  .card:hover{transform:translateY(-6px);box-shadow:0 8px 20px rgba(2,6,23,.08)}
}

@media (prefers-reduced-motion: reduce){
  .action-btn{transition:none}
  .action-btn:hover,.action-btn:active{transform:none}
}

@media (max-width:1080px){
  .brand-copy{display:none}
  .site-header .inner{gap:1rem}
  .header-right{gap:.7rem}
  .nav a{padding:.75rem .48rem;font-size:.87rem}
  .nav a::after{left:.48rem;right:.48rem}
  .header-contact{display:none}
}

@media (max-width:860px){
  .site-header .inner{position:relative;padding:.7rem 1rem}
  .brand-copy{display:flex}
  .brand a .site-logo{width:80px}
  .menu-toggle{display:inline-flex}
  .header-right{display:none;position:absolute;top:calc(100% + 1px);left:1rem;right:1rem;align-items:stretch;flex-direction:column;padding:1rem;background:rgba(12,19,56,.99);border:1px solid rgba(255,255,255,.12);border-top:0;border-radius:0 0 16px 16px;box-shadow:0 20px 35px rgba(15,23,42,.28)}
  .header-right.is-open{display:flex}
  .nav{align-items:stretch;flex-direction:column;gap:.15rem}
  .nav a{padding:.75rem .85rem;border-radius:8px}
  .nav a::after{display:none}
  .nav a:hover,.nav a:focus-visible,.nav a.active{background:rgba(255,255,255,.09)}
  .header-actions{align-items:stretch;flex-direction:column;padding-top:.85rem;border-top:1px solid rgba(255,255,255,.1)}
  .header-contact{display:block;padding:.55rem .85rem}
  .header-actions .header-cta{justify-content:center}
}

@media (max-width:600px){
  .brand-copy strong{font-size:.9rem}
  .brand-copy small{font-size:.57rem}
  .menu-toggle-label{display:none}
  .hero{padding:2rem 1rem}
  .whatsapp-float{bottom:1.5rem;right:1.5rem;width:50px;height:50px;font-size:1.5rem}
}
footer .trademark {
    text-align: center;
}
