

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ---- CSS VARIABLES ---- */
:root {
  --ve-dark:     #0d1b2a;
  --ve-dark2:    #162032;
  --ve-navy:     #1a2f4b;
  --ve-gold:     #d4a017;
  --ve-gold2:    #e8b84b;
  --ve-light:    #f4f7fb;
  --ve-white:    #ffffff;
  --ve-text:     #4a5568;
  --ve-border:   #e2e8f0;
  --ve-radius:   12px;
  --ve-shadow:   0 8px 30px rgba(13,27,42,0.10);
  --ve-trans:    all 0.3s ease;
}

/* ---- RESET BODY FONTS ---- */
body { font-family: 'DM Sans', sans-serif; color: var(--ve-text); }
h1,h2,h3,h4,h5,h6 { font-family: 'Nunito', sans-serif; color: var(--ve-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
.ve-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--ve-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: var(--ve-trans);
}
.ve-header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
}
.ve-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}
/* =========================================================
   GAPA HEADER LOGO
   Keep the large logo fully inside the header
   ========================================================= */

.ve-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    max-width: 360px;
    padding-top: 0;
    padding-bottom: 0;
}

.ve-logo a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
}

.gapa-header-logo {
    display: block;
    width: auto;
    height: 224px;
    max-width: 100%;
    object-fit: contain;
}
/* =========================================================
   GAPA DESKTOP HEADER HEIGHT
   Provides enough vertical room for the 224px logo
   ========================================================= */

@media only screen and (min-width: 992px) {

    .ve-header {
        height: auto;
        min-height: 260px;
        overflow: visible;
    }

    .ve-header .container,
    .ve-header .container-fluid {
        height: auto;
        min-height: 260px;
        display: flex;
        align-items: center;
    }
}
@media only screen and (max-width: 1199px) {
    .ve-logo {
        max-width: 320px;
    }

    .gapa-header-logo {
        height: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .ve-logo {
        max-width: 275px;
    }

    .gapa-header-logo {
        height: 88px;
    }
}

@media only screen and (max-width: 767px) {
    .ve-logo {
        max-width: 230px;
    }

    .gapa-header-logo {
        height: 76px;
    }
}

@media only screen and (max-width: 480px) {
    .ve-logo {
        max-width: 195px;
    }

    .gapa-header-logo {
        height: 66px;
    }
}
/* Nav links */
.ve-nav ul { list-style:none; margin:0; padding:0; display:flex; gap:6px; }
.ve-nav ul li { position:relative; }
.ve-nav ul li a {
  display:block; padding:8px 14px; color:rgba(255,255,255,0.8);
  font-size:14px; font-weight:500; text-decoration:none;
  border-radius:6px; transition:var(--ve-trans);
}
.ve-nav ul li a:hover, .ve-nav ul li a.active { color:#fff; background:rgba(212,160,23,0.15); }
.ve-nav ul li a.active { color:var(--ve-gold); }

/* Dropdown */
.ve-nav .has-drop:hover .ve-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.ve-dropdown {
  position:absolute; top:100%; left:0; min-width:200px;
  background: var(--ve-dark2); border-radius:10px;
  padding:10px 0; opacity:0; visibility:hidden;
  transform:translateY(10px); transition:var(--ve-trans);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-dropdown li a { padding:10px 20px; border-radius:0; color:rgba(255,255,255,0.7); font-size:13px; }
.ve-dropdown li a:hover { color:#fff; background:rgba(212,160,23,0.12); }

/* CTA button */
.ve-nav-cta .ve-cta-btn {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--ve-gold); color: var(--ve-dark);
  padding:10px 22px; border-radius:8px;
  font-weight:700; font-size:14px; text-decoration:none;
  transition:var(--ve-trans);
}
.ve-cta-btn:hover { background:var(--ve-gold2); transform:translateY(-1px); }

/* Mobile toggle */
.ve-toggler { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.ve-toggler span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:var(--ve-trans); }

/* Mobile menu */
.ve-mobile-menu {
  display:none; background:var(--ve-dark2); padding:16px 20px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.ve-mobile-menu.open { display:block; }
.ve-mobile-menu ul { list-style:none; margin:0; padding:0; }
.ve-mobile-menu ul li a { display:block; padding:12px 8px; color:rgba(255,255,255,0.8); text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.05); }

/* ============================================================
   HERO
   ============================================================ */
.ve-hero {
  display:flex; min-height:100vh;
  padding-top:72px; background:var(--ve-dark);
  overflow:hidden;
}
.ve-hero-left {
  flex:0 0 55%; padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; z-index:2;
}
.ve-hero-badge {
  display:inline-block; background:rgba(212,160,23,0.15);
  color:var(--ve-gold); border:1px solid rgba(212,160,23,0.3);
  border-radius:50px; padding:6px 18px; font-size:13px; font-weight:600;
  margin-bottom:28px; letter-spacing:0.5px;
}
.ve-hero-left h1 {
  font-size:62px; line-height:1.1; color:#fff; font-weight:900;
  margin-bottom:22px;
}
.ve-hero-left h1 .ve-highlight { color:var(--ve-gold); }
.ve-hero-left p { font-size:17px; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:40px; max-width:480px; }

/* Hero buttons */
.ve-hero-btns { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:50px; }
.ve-btn-primary {
  display:inline-block; background:var(--ve-gold); color:var(--ve-dark);
  padding:14px 32px; border-radius:8px; font-weight:700; font-size:15px;
  text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-primary:hover { background:var(--ve-gold2); transform:translateY(-2px); box-shadow:0 8px 25px rgba(212,160,23,0.4); color:var(--ve-dark); }
.ve-btn-ghost {
  display:inline-block; border:2px solid rgba(255,255,255,0.25);
  color:#fff; padding:12px 30px; border-radius:8px;
  font-weight:600; font-size:15px; text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-ghost:hover { border-color:var(--ve-gold); color:var(--ve-gold); background:rgba(212,160,23,0.08); }

/* Hero stats */
.ve-hero-stats { display:flex; align-items:center; gap:24px; }
.ve-stat strong { display:block; font-size:28px; color:#fff; font-family:'Nunito',sans-serif; font-weight:900; }
.ve-stat span { font-size:12px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; }
.ve-stat-divider { width:1px; height:40px; background:rgba(255,255,255,0.15); }

/* Hero right */
.ve-hero-right {
  flex:0 0 45%; position:relative; overflow:hidden;
}
.ve-hero-img-main {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.ve-hero-img-main::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg, var(--ve-dark) 0%, transparent 40%); }
.ve-hero-img-accent {
  position:absolute; bottom:40px; right:40px;
  width:200px; height:140px; border-radius:14px;
  background-size:cover; background-position:center;
  border:3px solid var(--ve-gold); box-shadow:0 20px 50px rgba(0,0,0,0.4);
  z-index:3;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
  background: var(--ve-gold);
  padding: 14px 0;
  overflow:hidden;
  white-space:nowrap;
}
.ve-trust-inner {
  display:inline-flex; gap:60px;
  animation: ve-marquee 25s linear infinite;
}
.ve-trust-inner span { font-size:13px; font-weight:700; color:var(--ve-dark); display:inline-flex; align-items:center; gap:8px; }
.ve-trust-inner span i { font-size:14px; }
@keyframes ve-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.ve-section { padding: 100px 0; }
.ve-section-header { margin-bottom:60px; }
.ve-section-tag {
  display:inline-block; background:rgba(212,160,23,0.1);
  color:var(--ve-gold); border:1px solid rgba(212,160,23,0.25);
  border-radius:50px; padding:5px 16px; font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px;
}
.ve-section-header h2 { font-size:42px; font-weight:900; color:var(--ve-dark); margin-bottom:14px; line-height:1.2; }
.ve-section-header h2 span { color:var(--ve-gold); }
.ve-section-header p { font-size:16px; color:var(--ve-text); max-width:580px; margin:0 auto; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ve-services-section { background: var(--ve-light); }
.ve-services-grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.ve-service-card {
  background:#fff; border-radius:var(--ve-radius);
  padding:36px 30px; transition:var(--ve-trans);
  border:1px solid var(--ve-border);
  position:relative; overflow:hidden;
}
.ve-service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
  transform:scaleX(0); transform-origin:left; transition:var(--ve-trans);
}
.ve-service-card:hover { transform:translateY(-6px); box-shadow:var(--ve-shadow); }
.ve-service-card:hover::before { transform:scaleX(1); }
.ve-service-icon {
  width:60px; height:60px; background:linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; font-size:26px; color:var(--ve-gold);
}
.ve-service-card h4 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:10px; }
.ve-service-card p { font-size:14px; line-height:1.7; margin-bottom:20px; color:var(--ve-text); }
.ve-card-link { font-size:14px; font-weight:700; color:var(--ve-gold); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:var(--ve-trans); }
.ve-card-link:hover { gap:10px; color:var(--ve-dark); }

/* ============================================================
   WHY US
   ============================================================ */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge {
  position:absolute; bottom:0; right:0;
  background: var(--ve-gold); border-radius:14px; padding:22px 28px;
  text-align:center; min-width:160px;
}
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--ve-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }

.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--ve-gold); }
.ve-whyus-content > p { font-size:15px; line-height:1.8; margin-bottom:32px; }

.ve-checklist { display:flex; flex-direction:column; gap:22px; }
.ve-check-item { display:flex; align-items:flex-start; gap:16px; }
.ve-check-item > i { font-size:22px; color:var(--ve-gold); margin-top:2px; flex-shrink:0; }
.ve-check-item strong { display:block; font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-check-item p { font-size:14px; color:var(--ve-text); margin:0; line-height:1.6; }
.mt-30 { margin-top:30px; }

/* ============================================================
   COUNTERS
   ============================================================ */
.ve-counter-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding:70px 0;
}
.ve-counter-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.ve-counter-item { text-align:center; padding:30px 20px; border-right:1px solid rgba(255,255,255,0.1); }
.ve-counter-item:last-child { border-right:none; }
.ve-counter-item i { font-size:36px; color:var(--ve-gold); margin-bottom:14px; display:block; }
.ve-counter-item strong { font-size:46px; font-family:'Nunito',sans-serif; font-weight:900; color:#fff; line-height:1; }
.ve-counter-item span { font-size:24px; color:var(--ve-gold); font-weight:700; }
.ve-counter-item p { font-size:14px; color:rgba(255,255,255,0.55); margin-top:6px; text-transform:uppercase; letter-spacing:1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ve-testimonials-section { background:var(--ve-light); }
.ve-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.ve-testi-card {
  background:#fff; border-radius:var(--ve-radius); padding:32px 28px;
  box-shadow:var(--ve-shadow); border:1px solid var(--ve-border); transition:var(--ve-trans);
}
.ve-testi-card:hover { transform:translateY(-4px); }
.ve-testi-stars { font-size:18px; color:var(--ve-gold); margin-bottom:16px; letter-spacing:2px; }
.ve-testi-card > p { font-size:15px; line-height:1.8; color:var(--ve-text); margin-bottom:24px; font-style:italic; }
.ve-testi-author { display:flex; align-items:center; gap:14px; }
.ve-testi-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-testi-author strong { display:block; font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-testi-author span { font-size:13px; color:var(--ve-text); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.ve-cta-banner { position:relative; padding:90px 0; background-size:cover; background-position:center; }
.ve-cta-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(13,27,42,0.92) 60%, rgba(13,27,42,0.6)); }
.ve-cta-content { position:relative; z-index:2; }
.ve-cta-content h2 { font-size:38px; font-weight:900; color:#fff; margin-bottom:14px; }
.ve-cta-content h2 span { color:var(--ve-gold); }
.ve-cta-content p { font-size:16px; color:rgba(255,255,255,0.7); }
.ve-btn-white {
  display:inline-block; background:#fff; color:var(--ve-dark);
  padding:16px 34px; border-radius:8px; font-weight:800; font-size:15px;
  text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-white:hover { background:var(--ve-gold); color:var(--ve-dark); transform:translateY(-2px); }
.text-lg-right { text-align:right; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.ve-insights-section { background:#fff; }
.ve-insight-card { border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); transition:var(--ve-trans); background:#fff; }
.ve-insight-card:hover { transform:translateY(-5px); box-shadow:var(--ve-shadow); }
.ve-insight-img { height:220px; background-size:cover; background-position:center; }
.ve-insight-body { padding:26px; }
.ve-insight-cat { display:inline-block; background:rgba(212,160,23,0.1); color:var(--ve-gold); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; border-radius:4px; padding:4px 10px; margin-bottom:12px; }
.ve-insight-body h5 a { font-size:17px; font-weight:800; color:var(--ve-dark); text-decoration:none; line-height:1.4; display:block; margin-bottom:10px; }
.ve-insight-body h5 a:hover { color:var(--ve-gold); }
.ve-insight-body > p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:16px; }
.ve-insight-meta { display:flex; justify-content:space-between; align-items:center; }
.ve-insight-meta span { font-size:13px; color:#aaa; display:inline-flex; align-items:center; gap:6px; }
.ve-insight-meta a { font-size:13px; font-weight:700; color:var(--ve-gold); text-decoration:none; display:inline-flex; align-items:center; gap:5px; transition:var(--ve-trans); }
.ve-insight-meta a:hover { gap:10px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.ve-newsletter-section { background:linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%); padding:60px 0; }
.ve-newsletter-wrap { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.ve-nl-left { display:flex; align-items:center; gap:20px; }
.ve-nl-left i { font-size:42px; color:var(--ve-gold); flex-shrink:0; }
.ve-nl-left h3 { font-size:22px; color:#fff; font-weight:900; margin-bottom:4px; }
.ve-nl-left p { font-size:14px; color:rgba(255,255,255,0.55); margin:0; }
.ve-nl-form { display:flex; gap:0; border-radius:8px; overflow:hidden; border:2px solid rgba(212,160,23,0.3); }
.ve-nl-form input { background:rgba(255,255,255,0.08); border:none; padding:14px 20px; color:#fff; font-size:14px; width:300px; outline:none; }
.ve-nl-form input::placeholder { color:rgba(255,255,255,0.4); }
.ve-nl-form button { background:var(--ve-gold); color:var(--ve-dark); border:none; padding:14px 28px; font-weight:800; font-size:14px; cursor:pointer; transition:var(--ve-trans); }
.ve-nl-form button:hover { background:var(--ve-gold2); }

/* ============================================================
   FOOTER
   ============================================================ */
.ve-footer { background:var(--ve-dark); padding:80px 0 0; }
.mb-50 { margin-bottom:50px; }

.ve-footer-brand p { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.8; margin:18px 0 24px; }
.ve-footer-logo { display:inline-flex; align-items:center; gap:10px; text-decoration:none; margin-bottom:14px; }

.ve-social { display:flex; gap:10px; }
.ve-social a {
  width:38px; height:38px; border-radius:8px;
  background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.6);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; text-decoration:none; transition:var(--ve-trans);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-social a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

.ve-footer-title { font-size:15px; font-weight:800; color:#fff; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,0.08); text-transform:uppercase; letter-spacing:1px; }

.ve-footer-links { list-style:none; margin:0; padding:0; }
.ve-footer-links li { margin-bottom:10px; }
.ve-footer-links li a { font-size:14px; color:rgba(255,255,255,0.5); text-decoration:none; transition:var(--ve-trans); display:inline-flex; align-items:center; gap:6px; }
.ve-footer-links li a::before { content:'›'; color:var(--ve-gold); font-size:16px; }
.ve-footer-links li a:hover { color:var(--ve-gold); padding-left:4px; }

.ve-footer-contact { list-style:none; margin:0; padding:0; }
.ve-footer-contact li { font-size:14px; color:rgba(255,255,255,0.5); margin-bottom:12px; display:flex; align-items:flex-start; gap:10px; line-height:1.6; }
.ve-footer-contact li i { color:var(--ve-gold); margin-top:2px; flex-shrink:0; }

.ve-footer-bottom { background:rgba(0,0,0,0.3); border-top:1px solid rgba(255,255,255,0.06); margin-top:20px; padding:22px 0; }
.ve-footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.ve-footer-bottom-inner p { font-size:13px; color:rgba(255,255,255,0.35); margin:0; }
.ve-footer-bottom-inner ul { list-style:none; margin:0; padding:0; display:flex; gap:20px; }
.ve-footer-bottom-inner ul li a { font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; transition:var(--ve-trans); }
.ve-footer-bottom-inner ul li a:hover { color:var(--ve-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199px) {
  .ve-hero-left { padding:70px 40px; }
  .ve-hero-left h1 { font-size:50px; }
  .ve-services-grid { grid-template-columns:repeat(2,1fr); }
  .ve-counter-grid { grid-template-columns:repeat(2,1fr); }
  .ve-testi-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:991px) {
  .ve-hero { flex-direction:column; min-height:auto; }
  .ve-hero-left { flex:none; padding:100px 30px 60px; }
  .ve-hero-right { flex:none; height:350px; }
  .ve-nav, .ve-nav-cta { display:none; }
  .ve-toggler { display:flex; }
  .ve-whyus-content { padding-left:0; margin-top:40px; }
  .ve-newsletter-wrap { flex-direction:column; align-items:flex-start; }
  .ve-nl-form { width:100%; }
  .ve-nl-form input { flex:1; width:auto; }
}
@media (max-width:767px) {
  .ve-hero-left h1 { font-size:38px; }
  .ve-services-grid, .ve-testi-grid, .ve-counter-grid { grid-template-columns:1fr; }
  .ve-hero-stats { flex-wrap:wrap; gap:16px; }
  .ve-nav-wrap { padding:0 20px; }
  .ve-footer-bottom-inner { flex-direction:column; text-align:center; }
  .ve-cta-content h2 { font-size:28px; }
  .text-lg-right { text-align:left; margin-top:20px; }
  .ve-counter-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .ve-counter-item:last-child { border-bottom:none; }
}

/* ============================================================
   HIDE OLD HEADER (replaced by ve-header)
   ============================================================ */
.header-area { display:none !important; }

/* Ensure body offset for fixed navbar */
body { padding-top:0; }


/* ============================================================
   SERVICES PAGE
   ============================================================ */
.ve-process-section { background:var(--ve-dark); padding:90px 0; }
.ve-process-grid { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:50px; }
.ve-process-step { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:var(--ve-radius); padding:36px 28px; text-align:center; flex:1; min-width:180px; max-width:220px; transition:var(--ve-trans); }
.ve-process-step:hover { background:rgba(212,160,23,0.08); border-color:rgba(212,160,23,0.3); }
.ve-process-num { font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:rgba(212,160,23,0.3); margin-bottom:12px; line-height:1; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:#fff; margin-bottom:10px; }
.ve-process-step p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:rgba(212,160,23,0.4); flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:var(--ve-light); }
.ve-faq-list { display:flex; flex-direction:column; gap:12px; }
.ve-faq-item { background:#fff; border-radius:10px; border:1px solid var(--ve-border); overflow:hidden; }
.ve-faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 22px; cursor:pointer; gap:16px; }
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--ve-dark); }
.ve-faq-q i { color:var(--ve-gold); font-size:14px; flex-shrink:0; }
.ve-faq-a { padding:0 22px 18px; font-size:14px; color:var(--ve-text); line-height:1.8; display:none; }
.ve-faq-item.open .ve-faq-a { display:block; }
.ve-faq-item.open .ve-faq-q { border-bottom:1px solid var(--ve-border); }

/* ============================================================
   BLOG / POST
   ============================================================ */
.ve-pagination { display:flex; gap:8px; margin-top:40px; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; text-decoration:none; background:var(--ve-light); color:var(--ve-dark); transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-pagination a:hover, .ve-pagination a.active { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

.ve-sidebar { position:sticky; top:90px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--ve-radius); padding:28px; margin-bottom:24px; border:1px solid var(--ve-border); }
.ve-sidebar-title { font-size:16px; font-weight:900; color:var(--ve-dark); margin-bottom:20px; padding-bottom:12px; border-bottom:2px solid var(--ve-gold); display:inline-block; }
.ve-search-box { display:flex; border:1px solid var(--ve-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:12px 14px; font-size:14px; outline:none; font-family:'DM Sans',sans-serif; }
.ve-search-box button { background:var(--ve-gold); border:none; padding:0 18px; cursor:pointer; color:var(--ve-dark); font-size:14px; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li { border-bottom:1px solid var(--ve-border); }
.ve-cat-list li:last-child { border-bottom:none; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--ve-text); text-decoration:none; transition:var(--ve-trans); }
.ve-cat-list li a:hover { color:var(--ve-gold); }
.ve-cat-list li a span { background:var(--ve-light); border-radius:4px; padding:2px 8px; font-size:12px; font-weight:700; color:var(--ve-dark); }
.ve-recent-post { display:flex; gap:14px; margin-bottom:16px; padding-bottom:16px; border-bottom:1px solid var(--ve-border); }
.ve-recent-post:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.ve-rp-img { width:64px; height:54px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post a { font-size:13px; font-weight:700; color:var(--ve-dark); text-decoration:none; display:block; margin-bottom:4px; line-height:1.4; transition:var(--ve-trans); }
.ve-recent-post a:hover { color:var(--ve-gold); }
.ve-recent-post span { font-size:12px; color:#aaa; display:flex; align-items:center; gap:5px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--ve-light); color:var(--ve-text); border-radius:6px; padding:6px 12px; font-size:12px; font-weight:600; text-decoration:none; transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Single post */
.ve-article { background:#fff; border-radius:16px; padding:0; overflow:hidden; box-shadow:var(--ve-shadow); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:40px; }
.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--ve-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.85; color:var(--ve-text); margin-bottom:16px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--ve-dark); line-height:1.7; border-left:4px solid var(--ve-gold); padding-left:20px; margin-bottom:28px; }
.ve-blockquote { background:var(--ve-light); border-left:4px solid var(--ve-gold); border-radius:0 10px 10px 0; padding:24px 28px; margin:30px 0; }
.ve-blockquote p { font-size:18px; font-style:italic; font-weight:600; color:var(--ve-dark); margin-bottom:8px; }
.ve-blockquote cite { font-size:13px; color:var(--ve-text); font-style:normal; }
.ve-article-tags { margin-top:30px; padding-top:20px; border-top:1px solid var(--ve-border); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:13px; color:var(--ve-dark); font-weight:700; }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:13px; color:var(--ve-dark); font-weight:700; }
.ve-article-share a { width:36px; height:36px; border-radius:8px; background:var(--ve-light); color:var(--ve-text); display:flex; align-items:center; justify-content:center; text-decoration:none; transition:var(--ve-trans); }
.ve-article-share a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4, .ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--ve-border); }
.ve-comment.ve-comment-reply { margin-left:60px; }
.ve-comment:last-child { border-bottom:none; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; }
.ve-comment-meta { display:flex; gap:16px; align-items:center; margin-bottom:8px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-comment-meta span { font-size:12px; color:#aaa; }
.ve-comment-body p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:12px; font-weight:700; color:var(--ve-gold); text-decoration:none; text-transform:uppercase; letter-spacing:0.5px; }
.ve-comment-form-wrap { background:#fff; border-radius:16px; padding:40px; box-shadow:var(--ve-shadow); }


/* ============================================================
   PAGE-SPECIFIC COMPONENTS (all inner pages)
   ============================================================ */

/* Page Hero */
.ve-page-hero {
  position:relative;

  display:flex;
  align-items:flex-end;

  min-height:380px;

  padding:160px 0 60px;

  background-size:cover;
  background-position:center;

  overflow:hidden;
}
/* =========================================================
   INNER-PAGE HERO — FIXED GAPA HEADER CLEARANCE
   Keeps all inner-page heroes below the fixed header
   ========================================================= */

@media only screen and (min-width: 992px) {

  .ve-page-hero {
    margin-top:260px;
  }
}

@media only screen and (max-width: 991px) {

  .ve-page-hero {
    margin-top:88px;
  }
}

@media only screen and (max-width: 767px) {

  .ve-page-hero {
    margin-top:76px;
  }
}

@media only screen and (max-width: 480px) {

  .ve-page-hero {
    margin-top:66px;
  }
}
.ve-page-hero-sm { min-height:460px; }
.ve-page-hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.85) 100%); }
.ve-page-hero-content { position:relative; z-index:2; }
.ve-page-hero-content h1 { font-size:46px; font-weight:900; color:#fff; margin:10px 0 18px; line-height:1.15; }
.ve-page-hero-content h1 span { color:var(--ve-gold); }
.ve-post-meta-hero {
  display:flex;
  flex-wrap:wrap;
  gap:24px;

  margin-top:10px;
}
.ve-post-meta-hero span { font-size:14px; color:rgba(255,255,255,0.7); display:inline-flex; align-items:center; gap:6px; }

/* Breadcrumb */
.ve-breadcrumb {
  list-style:none;

  display:flex;
  align-items:center;
  gap:10px;

  margin:0;
  padding:0;
}
.ve-breadcrumb li { font-size:14px; color:rgba(255,255,255,0.6); }
.ve-breadcrumb li a { color:var(--ve-gold); text-decoration:none; }
.ve-breadcrumb li a:hover { color:#fff; }
.ve-breadcrumb li.active { color:rgba(255,255,255,0.5); }
.ve-breadcrumb li:not(:last-child)::after { content:'/'; margin-left:10px; color:rgba(255,255,255,0.3); }

/* About Page */
.ve-about-img-stack { position:relative; padding:0 40px 40px 0; }
.ve-about-img-1 { height:400px; border-radius:16px; background-size:cover; background-position:center; }
.ve-about-img-2 { position:absolute; bottom:0; right:0; width:55%; height:230px; border-radius:14px; background-size:cover; background-position:center; border:4px solid #fff; box-shadow:0 20px 50px rgba(0,0,0,0.2); }
.ve-about-ribbon {
  position:absolute;
  top:30px;
  left:-20px;
  background:var(--ve-gold);
  border-radius:12px;
  padding:18px 22px;
  text-align:center;
  box-shadow:0 10px 30px rgba(212,160,23,0.35);
}
.ve-about-ribbon strong { display:block; font-size:36px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-about-ribbon span { font-size:11px; font-weight:700; color:var(--ve-dark); text-transform:uppercase; letter-spacing:0.8px; }
.ve-about-text { padding-left:40px; }
.ve-about-text h2 {
  font-size:38px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:16px;
}
.ve-about-text h2 span { color:var(--ve-gold); }
.ve-lead { font-size:17px; font-weight:500; color:var(--ve-dark); margin-bottom:14px; line-height:1.7; }
.ve-about-text > p { font-size:15px; line-height:1.8; margin-bottom:24px; }
.ve-about-features {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:24px 0 10px;
}
.ve-af-item { display:flex; align-items:center; gap:12px; font-size:14px; color:var(--ve-dark); font-weight:500; }
.ve-af-item i { color:var(--ve-gold); font-size:14px; }

/* MVV Section */
.ve-mvv-section { background:linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%); padding:80px 0; }
.ve-mvv-section .ve-section-header h2 { color:#fff; }
.ve-mvv-section .ve-section-header p { color:rgba(255,255,255,0.6); }
.ve-mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.ve-mvv-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:var(--ve-radius); padding:36px 28px; text-align:center; transition:var(--ve-trans); }
.ve-mvv-card:hover {
  background:rgba(255,255,255,0.1);
  border-color:rgba(212,160,23,0.3);
  transform:translateY(-4px);
}
.ve-mvv-icon {
  width:64px;
  height:64px;

  background:
    linear-gradient(
      135deg,
      var(--ve-gold),
      var(--ve-gold2)
    );

  border:1px solid rgba(212,160,23,0.3);
  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin:0 auto 20px;

  font-size:26px;
  color:var(--ve-dark);
}
.ve-mvv-card h4 { font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; }
.ve-mvv-card p { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.8; margin:0; }

/* Team Cards */
.ve-team-section { background:var(--ve-light); }
.ve-team-card {
  background:#fff;

  border:1px solid var(--ve-border);
  border-radius:var(--ve-radius);

  overflow:hidden;

  box-shadow:var(--ve-shadow);

  transition:var(--ve-trans);

  margin-bottom:28px;
}
.ve-team-card:hover { transform:translateY(-5px); box-shadow:var(--ve-shadow); }
.ve-team-img { height:260px; background-size:cover; background-position:center top; }
.ve-team-info { padding:22px; text-align:center; }
.ve-team-info h5 { font-size:17px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-team-info span { font-size:13px; color:var(--ve-text); display:block; margin-bottom:14px; }
.ve-team-social { display:flex; justify-content:center; gap:8px; }
.ve-team-social a { width:34px; height:34px; border-radius:6px; background:var(--ve-light); color:var(--ve-navy); display:flex; align-items:center; justify-content:center; font-size:13px; text-decoration:none; transition:var(--ve-trans); }
.ve-team-social a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* Process Steps */
.ve-process-section { background:var(--ve-light); padding:80px 0; }
.ve-process-grid { display:flex; align-items:center; gap:0; margin-top:50px; flex-wrap:wrap; }
.ve-process-step { flex:1; min-width:200px; background:#fff; border-radius:var(--ve-radius); padding:32px 24px; text-align:center; border:1px solid var(--ve-border); }
.ve-process-num { font-size:42px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-gold); line-height:1; margin-bottom:14px; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:8px; }
.ve-process-step p { font-size:13px; color:var(--ve-text); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:var(--ve-gold); padding:0 16px; flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:#fff; }
.ve-faq-list { display:flex; flex-direction:column; gap:0; }
.ve-faq-item { border-bottom:1px solid var(--ve-border); }
.ve-faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 0; cursor:pointer; gap:16px; }
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--ve-dark); }
.ve-faq-q i { font-size:14px; color:var(--ve-gold); flex-shrink:0; transition:var(--ve-trans); }
.ve-faq-item.open .ve-faq-q i { transform:rotate(45deg); }
.ve-faq-a { font-size:14px; color:var(--ve-text); line-height:1.8; padding:0 0 16px; display:none; }
.ve-faq-item.open .ve-faq-a { display:block; }

/* Contact Cards */
.ve-contact-cards-section {
  background:var(--ve-light);
  padding:60px 0;
  margin-top:-1px;
}
.ve-contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ve-contact-info-card { background:#fff; border-radius:var(--ve-radius); padding:36px 28px; text-align:center; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-contact-info-card:last-child {
  border-right:none;
}
.ve-ci-icon {
  width:60px;
  height:60px;

  background:linear-gradient(135deg, var(--ve-dark), var(--ve-navy));

  border:1px solid rgba(212,160,23,0.3);
  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  color:var(--ve-gold);

  margin:0 auto 18px;
}
.ve-contact-info-card h5 { font-size:17px; font-weight:800; color:var(--ve-dark); margin-bottom:8px; }
.ve-contact-info-card p { font-size:14px; color:var(--ve-text); line-height:1.7; margin:0; }
.ve-contact-info-card small {
  font-size:12px;
  opacity:0.6;
}
/* Contact Form Wrap */
.ve-contact-form-wrap {
  background:#ffffff;

  border-radius:16px;

  padding:50px;

  box-shadow:var(--ve-shadow);
}
.ve-contact-form-wrap h2 { font-size:36px; font-weight:900; margin-bottom:10px; }
.ve-contact-form-wrap h2 span { color:var(--ve-gold); }
.ve-contact-form-wrap > p { font-size:15px; color:var(--ve-text); margin-bottom:28px; }
.ve-contact-form { display:flex; flex-direction:column; gap:18px; }
.ve-contact-form .ve-form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.ve-form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.ve-form-group {
  display:flex;
  flex-direction:column;

  gap:6px;
  margin-bottom:20px;
}
.ve-form-group label {
  margin-bottom:7px;

  font-size:13px;
  font-weight:700;

  color:var(--ve-dark);

  text-transform:uppercase;
  letter-spacing:0.5px;
}
.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea { border:2px solid var(--ve-border); border-radius:8px; padding:12px 16px; font-size:14px; font-family:'DM Sans',sans-serif; color:var(--ve-dark); background:#fff; outline:none; transition:var(--ve-trans); }
.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus { border-color:var(--ve-gold); box-shadow:0 0 0 3px rgba(212,160,23,0.1); }
.ve-form-group textarea { resize:vertical; }

/* Contact Aside */
.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:30px; }
.ve-ca-box { background:var(--ve-light); border-radius:var(--ve-radius); padding:28px; border:1px solid var(--ve-border); }
.ve-ca-box h4 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:18px; }
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.ve-ca-list li { font-size:14px; color:var(--ve-text); display:flex; align-items:center; gap:10px; }
.ve-ca-list li i { color:var(--ve-gold); }
.ve-ca-hours { background:var(--ve-dark); border-radius:var(--ve-radius); padding:24px; }
.ve-ca-hours h5 { font-size:15px; font-weight:700; color:var(--ve-gold); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.ve-ca-hours h5 i {
  color:var(--ve-gold);
}
.ve-ca-hours ul {
  list-style:none;
  margin:0;
  padding:0;

  display:flex;
  flex-direction:column;
  gap:10px;
}
.ve-ca-hours ul li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.07); font-size:14px; }
.ve-ca-hours ul li:last-child {
  border-bottom:none;
  padding-bottom:0;
}
.ve-ca-hours ul li span { color:rgba(255,255,255,0.5); }
.ve-ca-hours ul li strong {
  color:#fff;
  font-weight:700;
}
.ve-ca-social {
  background:#fff;
  border-radius:14px;
  padding:24px;
  border:1px solid var(--ve-border);
}
.ve-ca-social h5 { font-size:15px; font-weight:700; color:var(--ve-dark); margin-bottom:12px; }

/* Blog / Sidebar */
.ve-sidebar { display:flex; flex-direction:column; gap:30px; padding-left:20px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--ve-radius); padding:28px; border:1px solid var(--ve-border); }
.ve-sidebar-title { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:18px; padding-bottom:12px; border-bottom:2px solid var(--ve-gold); display:inline-block; }
.ve-search-box { display:flex; border:2px solid var(--ve-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:10px 14px; font-size:14px; outline:none; font-family:'DM Sans',sans-serif; }
.ve-search-box button { background:var(--ve-gold); border:none; padding:0 16px; color:var(--ve-dark); cursor:pointer; font-size:14px; transition:var(--ve-trans); }
.ve-search-box button:hover { background:var(--ve-dark); color:#fff; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--ve-text); text-decoration:none; border-bottom:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-cat-list li:last-child a { border-bottom:none; }
.ve-cat-list li a span { background:var(--ve-light); color:var(--ve-dark); font-size:12px; font-weight:700; padding:2px 8px; border-radius:20px; }
.ve-cat-list li a:hover { color:var(--ve-gold); }
.ve-recent-post { display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; }
.ve-recent-post:last-child { margin-bottom:0; }
.ve-rp-img { width:65px; height:50px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post div a { display:block; font-size:13px; font-weight:700; color:var(--ve-dark); text-decoration:none; margin-bottom:4px; line-height:1.4; }
.ve-recent-post div a:hover { color:var(--ve-gold); }
.ve-recent-post div span { font-size:12px; color:var(--ve-text); display:inline-flex; align-items:center; gap:4px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--ve-light); color:var(--ve-text); font-size:13px; padding:6px 14px; border-radius:20px; text-decoration:none; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Pagination */
.ve-pagination { display:flex; gap:8px; margin-top:40px; flex-wrap:wrap; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; background:var(--ve-light); border:1px solid var(--ve-border); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:600; color:var(--ve-text); text-decoration:none; transition:var(--ve-trans); }
.ve-pagination a.active, .ve-pagination a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Article */
.ve-article { background:#fff; border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:36px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--ve-dark); line-height:1.8; margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--ve-border); }
.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--ve-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.8; color:var(--ve-text); margin-bottom:16px; }
.ve-blockquote { background:var(--ve-light); border-left:4px solid var(--ve-gold); border-radius:0 10px 10px 0; padding:24px 28px; margin:28px 0; }
.ve-blockquote p { font-size:17px; font-style:italic; color:var(--ve-dark); font-weight:500; margin:0 0 8px; }
.ve-blockquote cite { font-size:13px; color:var(--ve-gold); font-weight:700; font-style:normal; }
.ve-article-tags { display:flex; align-items:center; gap:10px; margin-top:28px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:14px; color:var(--ve-dark); }
.ve-article-tags a { background:var(--ve-light); color:var(--ve-text); font-size:13px; padding:5px 12px; border-radius:20px; text-decoration:none; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-article-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:14px; color:var(--ve-dark); }
.ve-article-share a { width:34px; height:34px; border-radius:8px; background:var(--ve-light); color:var(--ve-navy); display:flex; align-items:center; justify-content:center; font-size:14px; text-decoration:none; transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-article-share a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; }
.ve-comment-reply { margin-left:50px; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; background:var(--ve-light); border-radius:10px; padding:18px; }
.ve-comment-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; flex-wrap:wrap; gap:6px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-comment-meta span { font-size:13px; color:var(--ve-text); }
.ve-comment-body p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:13px; font-weight:700; color:var(--ve-gold); text-decoration:none; }
.ve-reply-btn:hover { color:var(--ve-dark); }

/* Comment form */
.ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }

/* Elements page */
.ve-elements-section { background:#fff; }
.ve-el-block { margin-bottom:70px; }
.ve-el-title { font-size:22px; font-weight:900; color:var(--ve-dark); margin-bottom:28px; padding-bottom:14px; border-bottom:2px solid var(--ve-border); display:flex; align-items:center; gap:14px; }
.ve-el-title span { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:var(--ve-gold); color:var(--ve-dark); border-radius:8px; font-size:14px; font-weight:900; flex-shrink:0; }
.ve-el-demo { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* Why us section */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge { position:absolute; bottom:0; right:0; background:var(--ve-gold); border-radius:14px; padding:22px 28px; text-align:center; min-width:160px; }
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--ve-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--ve-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }
.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--ve-gold); }

/* Responsive extras */
@media(max-width:991px) {
.ve-page-hero-content h1 {
  font-size:36px;
}
  .ve-mvv-grid { grid-template-columns:1fr; }
  .ve-contact-cards-grid { grid-template-columns:1fr; }
  .ve-process-grid { flex-direction:column; }
  .ve-process-arrow { transform:rotate(90deg); }
  .ve-about-text, .ve-whyus-content { padding-left:0; margin-top:30px; }
  .ve-contact-aside { padding-left:0; margin-top:30px; }
  .ve-sidebar { padding-left:0; margin-top:40px; }
  .ve-form-row { grid-template-columns:1fr; }
}
@media(max-width:767px) {
  .ve-contact-form-wrap { padding:28px; }
  .ve-contact-form .ve-form-row {
  grid-template-columns:1fr;
}
  .ve-article-body {
  padding:24px;
}
	.ve-page-hero-content h1 { font-size:30px; }
  .ve-testi-grid { grid-template-columns:1fr; }
  .ve-nl-form { flex-direction:column; border-radius:8px; }
  .ve-nl-form input, .ve-nl-form button { width:100%; border-radius:8px !important; }

  .ve-about-img-stack {
    padding:0 30px 30px 0;
  }

  .ve-about-img-2 {
    display:none;
  }
}


/* =========================================================
   GAPA HOMEPAGE HERO — CONSOLIDATED PRODUCTION RULES
   Preserves the approved black background, large desktop
   header clearance, full-width wording, equal photographs,
   gold borders, and responsive stacked mobile layout
   ========================================================= */

/* GAPA black visual foundation */
:root {
    --gapa-logo-black: #000000;
    --ve-dark: #000000;
}

html,
body {
    background-color: var(--gapa-logo-black) !important;
}

.ve-header,
.ve-hero,
.ve-hero-left,
.ve-hero-right {
    background-color: var(--gapa-logo-black) !important;
}

/* Prevent the hero paragraph from being visually clipped */
.ve-hero-left p {
    padding-top: 8px;
    line-height: 1.7;
    overflow: visible;
}

/* Center the long introductory badge wording */
.ve-hero-badge {
    text-align: center;
    line-height: 1.5;
}

/* Shared photograph treatment */
.ve-hero-img-main,
.ve-hero-img-accent {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* =========================================================
   DESKTOP HERO
   Wording on the first row; equal photographs on second row
   ========================================================= */

@media only screen and (min-width: 992px) {

    .ve-hero {
        display: flex !important;
        flex-wrap: wrap !important;

        height: auto !important;
        min-height: auto !important;

        align-items: stretch;

        overflow: hidden;
    }

    /* Full-width hero wording beneath the enlarged header */
    .ve-hero-left {
        flex: 0 0 100% !important;

        width: 100% !important;
        max-width: 100% !important;

        justify-content: flex-start !important;

        padding:
            268px
            80px
            60px
            80px !important;

        box-sizing: border-box;
    }

    /* Full-width photograph row */
    .ve-hero-right {
        position: relative !important;

        flex: 0 0 100% !important;

        width: 100% !important;
        max-width: 100% !important;

        display: grid !important;
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 24px !important;

        padding:
            20px
            80px
            70px !important;

        height: auto !important;
        min-height: auto !important;

        overflow: visible !important;

        box-sizing: border-box;
    }

    /* Equal large photographs */
    .ve-hero-img-main,
    .ve-hero-img-accent {
        display: block !important;

        visibility: visible !important;
        opacity: 1 !important;

        position: relative !important;

        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        transform: none !important;

        width: 100% !important;
        height: auto !important;

        aspect-ratio: 1672 / 941 !important;

        border:
            4px
            solid
            var(--ve-gold) !important;

        border-radius: 20px !important;

        box-shadow:
            0
            16px
            34px
            rgba(0, 0, 0, 0.38);

        z-index: 2 !important;
    }
}

/* =========================================================
   TABLET AND PHONE HERO
   Photographs stack vertically without overlap
   ========================================================= */

@media only screen and (max-width: 991px) {

    .ve-hero-right {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 16px;

        padding: 16px !important;

        height: auto !important;
        min-height: auto !important;

        overflow: visible !important;

        box-sizing: border-box;
    }

    .ve-hero-img-main,
    .ve-hero-img-accent {
        display: block !important;

        visibility: visible !important;
        opacity: 1 !important;

        position: relative !important;

        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        transform: none !important;

        width: 100% !important;
        height: auto !important;

        aspect-ratio: 1672 / 941 !important;

        border:
            3px
            solid
            var(--ve-gold) !important;

        border-radius: 18px !important;

        box-shadow:
            0
            10px
            24px
            rgba(0, 0, 0, 0.30);

        z-index: 2 !important;
    }
}

/* =========================================================
   GAPA COMMUNITY COMMITMENT CARDS
   Replaces fictional testimonial avatars and star ratings
   with accessible GAPA program icons
   ========================================================= */

.ve-testimonials-section .gapa-testi-heading-icon {
    font-size: 27px;
    letter-spacing: 0;
    line-height: 1;
}

.ve-testimonials-section .gapa-testi-heading-icon i {
    line-height: 1;
}

.ve-testimonials-section .gapa-testi-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    background-color: var(--ve-gold);
    color: #000000;

    border-radius: 50%;

    font-size: 21px;
    line-height: 1;
}

.ve-testimonials-section .gapa-testi-icon i {
    line-height: 1;
}

.ve-testimonials-section .ve-testi-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ve-testimonials-section .ve-testi-author {
    align-items: center;
    margin-top: auto;
}

/* =========================================================
   GAPA RESOURCE CARDS — EQUAL HEIGHT AND BOTTOM ALIGNMENT
   Keeps all three cards level regardless of text length
   ========================================================= */

.ve-insights-section .row > [class*="col-"] {
    display: flex;
}

.ve-insights-section .ve-insight-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
}

.ve-insights-section .ve-insight-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ve-insights-section .ve-insight-meta {
    margin-top: auto;
}

/* =========================================================
   GAPA STAY-CONNECTED SECTION
   Replaces the inactive newsletter form with working links
   ========================================================= */

.gapa-newsletter-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 12px;
}

.gapa-newsletter-primary,
.gapa-newsletter-secondary,
.gapa-newsletter-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 22px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

/* Primary gold button */
.gapa-newsletter-primary {
    background-color: var(--ve-gold);
    color: #000000 !important;

    border: 2px solid var(--ve-gold);
}

.gapa-newsletter-primary:hover,
.gapa-newsletter-primary:focus {
    background-color: #ffffff;
    color: #000000 !important;

    border-color: #ffffff;

    transform: translateY(-2px);
}

/* Secondary outlined button */
.gapa-newsletter-secondary {
    background-color: transparent;
    color: #ffffff !important;

    border: 2px solid rgba(255, 255, 255, 0.75);
}

.gapa-newsletter-secondary:hover,
.gapa-newsletter-secondary:focus {
    background-color: #ffffff;
    color: #000000 !important;

    border-color: #ffffff;

    transform: translateY(-2px);
}

/* Facebook button */
.gapa-newsletter-facebook {
    gap: 8px;

    background-color: #1877f2;
    color: #ffffff !important;

    border: 2px solid #1877f2;
}

.gapa-newsletter-facebook:hover,
.gapa-newsletter-facebook:focus {
    background-color: #ffffff;
    color: #1877f2 !important;

    border-color: #ffffff;

    transform: translateY(-2px);
}

.gapa-newsletter-facebook i {
    font-size: 16px;
    line-height: 1;
}

/* Tablet and phone alignment */
@media only screen and (max-width: 991px) {

    .gapa-newsletter-actions {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

/* Small-phone button sizing */
@media only screen and (max-width: 575px) {

    .gapa-newsletter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gapa-newsletter-primary,
    .gapa-newsletter-secondary,
    .gapa-newsletter-facebook {
        width: 100%;
    }
}

/* =========================================================
   GAPA FOOTER
   Sizes the GAPA logo and improves footer-link readability
   ========================================================= */

/* GAPA footer logo container */
.gapa-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    width: auto;
    max-width: 280px;

    margin-bottom: 22px;

    text-decoration: none !important;
}

/* GAPA footer logo image */
.gapa-footer-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 250px;
    max-height: 170px;

    object-fit: contain;
}

/* Keep footer contact icons and wording aligned */
.ve-footer .ve-footer-contact li {
    display: flex;
    align-items: flex-start;

    gap: 10px;
}

/* Prevent icons from shrinking beside longer wording */
.ve-footer .ve-footer-contact li > i {
    flex: 0 0 18px;

    width: 18px;

    margin-top: 4px;

    text-align: center;
}

/* Footer contact links inherit the footer text color */
.ve-footer .ve-footer-contact a {
    color: inherit;
    text-decoration: none;
}

/* Gold hover and keyboard-focus treatment */
.ve-footer .ve-footer-contact a:hover,
.ve-footer .ve-footer-contact a:focus,
.ve-footer .ve-footer-links a:hover,
.ve-footer .ve-footer-links a:focus {
    color: var(--ve-gold);
}

/* Allow the bottom footer content to wrap safely */
.ve-footer-bottom-inner {
    gap: 20px;
}

/* Tablet and phone footer-logo sizing */
@media only screen and (max-width: 767px) {

    .gapa-footer-logo {
        max-width: 230px;
    }

    .gapa-footer-logo img {
        max-width: 220px;
        max-height: 150px;
    }
}

/* =========================================================
   GAPA ABOUT-PAGE HERO
   Clears the enlarged fixed header and preserves responsive
   inner-page hero positioning
   ========================================================= */

.gapa-about-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.gapa-about-hero-intro {
    max-width: 680px;
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.7;
}

/* Desktop clearance for the 260px fixed GAPA header */
@media only screen and (min-width: 992px) {

    .gapa-about-hero {
        margin-top: 260px;

        min-height: 440px;

        padding:
            90px
            0
            70px;
    }
}

/* Tablet clearance */
@media only screen and (max-width: 991px) {

    .gapa-about-hero {
        margin-top: 88px;

        min-height: 400px;

        padding:
            80px
            0
            60px;
    }
}

/* Phone clearance and heading scale */
@media only screen and (max-width: 767px) {

    .gapa-about-hero {
        margin-top: 76px;

        min-height: 360px;

        padding:
            70px
            0
            50px;
    }

    .gapa-about-hero-intro {
        font-size: 15px;
    }
}

/* Small-phone clearance */
@media only screen and (max-width: 480px) {

    .gapa-about-hero {
        margin-top: 66px;
    }
}

/* =========================================================
   ABOUT GAPA INTRODUCTION PHOTOGRAPHS
   Adds a gold 4px border to the large photograph while
   preserving the smaller photograph's existing white border
   ========================================================= */

.gapa-about-intro .ve-about-img-1 {
    border: 4px solid var(--ve-gold);
    box-sizing: border-box;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
/* =========================================================
   ABOUT GAPA — COMMUNITY SUPPORT CARDS
   Replaces fictional personnel profiles with accessible
   information about the people and families GAPA supports
   ========================================================= */

/* Make every Bootstrap card column stretch equally */
.gapa-community-grid > [class*="col-"] {
    display: flex;
}

/* Make all four community cards equal in height */
.gapa-community-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
}

/* Replace the fictional portrait area with a program icon */
.gapa-community-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 160px;

    background:
        linear-gradient(
            135deg,
            var(--ve-dark) 0%,
            var(--ve-navy) 100%
        );

    color: var(--ve-gold);

    font-size: 52px;
    line-height: 1;
}

/* Prevent inherited icon line-height from shifting the icon */
.gapa-community-card-icon i {
    line-height: 1;
}

/* Allow the card wording area to fill the remaining height */
.gapa-community-card .ve-team-info {
    display: flex;
    flex-direction: column;
    flex: 1;

    text-align: center;
}

/* Community-card description styling */
.gapa-community-card .ve-team-info p {
    margin: 12px 0 0;

    color: var(--ve-text);

    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   ABOUT GAPA COMMUNITY CARDS — FINAL HEIGHT ALIGNMENT
   Forces all four cards to share one equal desktop height
   and restores the full centered icon panel
   ========================================================= */

.gapa-community-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.gapa-community-grid > [class*="col-"] {
    display: flex !important;
    align-items: stretch;
}

.gapa-community-grid .gapa-community-card {
    display: flex !important;
    flex-direction: column;

    width: 100%;
    height: auto !important;
    min-height: 100%;

    margin-bottom: 30px;
}

.gapa-community-grid .gapa-community-card-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 160px;

    width: 100%;
    height: 160px;

    background:
        linear-gradient(
            135deg,
            var(--ve-dark) 0%,
            var(--ve-navy) 100%
        );

    color: var(--ve-gold);

    font-size: 52px;
    line-height: 1;
}

.gapa-community-grid .gapa-community-card-icon i {
    display: block;
    margin: 0;

    color: var(--ve-gold);

    font-size: 52px;
    line-height: 1;
}

.gapa-community-grid .gapa-community-card .ve-team-info {
    display: flex !important;
    flex-direction: column;
    flex: 1 1 auto;

    width: 100%;

    padding: 26px 22px;

    text-align: center;
}

.gapa-community-grid .gapa-community-card .ve-team-info h5 {
    min-height: 48px;
    margin-bottom: 12px;
}

.gapa-community-grid .gapa-community-card .ve-team-info p {
    flex: 1 1 auto;

    margin: 0;

    color: var(--ve-text);

    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   GAPA IN ACTION — GOLD TEXT CORRECTION
   Matches the action-area wording to the existing gold icons
   ========================================================= */

.gapa-action-section .gapa-action-item h3,
.gapa-action-section .gapa-action-item p {
    color: var(--ve-gold) !important;
}

/* =========================================================
   GAPA IN ACTION — GOLD SECTION HEADING
   Matches the main heading to the established site gold
   ========================================================= */

.gapa-action-section .gapa-action-heading h2,
.gapa-action-section .gapa-action-heading h2 span {
    color: var(--ve-gold) !important;
}

/* =========================================================
   ABOUT GAPA — COMMITMENT CHECKLIST TEXT
   Keeps checklist wording visible against the black
   GAPA background and matches the existing gold checkmarks
   ========================================================= */

.gapa-about-intro .ve-af-item,
.gapa-about-intro .ve-af-item span {
    color: var(--ve-gold) !important;
}

/* =========================================================
   GAPA CONTACT HERO — FINAL APPROVED BACKGROUND IMAGE
   Uses the approved GAPA couple image and keeps the
   composition clean across desktop, tablet, and phone
   ========================================================= */

.gapa-contact-hero {
    min-height: 520px;

    background-image: url("../img/community/gapa-contact-hero-final.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 42%;
}

/* Tablet */
@media only screen and (max-width: 991px) {
    .gapa-contact-hero {
        min-height: 470px;
        background-position: 60% center;
    }
}

/* Phone */
@media only screen and (max-width: 767px) {
    .gapa-contact-hero {
        min-height: 420px;
        background-position: 62% center;
    }
}

/* Small phone */
@media only screen and (max-width: 480px) {
    .gapa-contact-hero {
        min-height: 390px;
        background-position: 64% center;
    }
}

/* =========================================================
   GAPA CONTACT — FACEBOOK HEADING LINK
   Keeps the Connect With GAPA heading styled like a heading
   while making the wording itself clickable
   ========================================================= */

.ve-ca-social .gapa-facebook-heading {
    color: inherit;
    text-decoration: none;
}

.ve-ca-social .gapa-facebook-heading:hover,
.ve-ca-social .gapa-facebook-heading:focus {
    color: var(--ve-gold);
    text-decoration: none;
}

/* =========================================================
   GAPA HOMEPAGE HERO — DONATION QR REQUEST CARD
   Places the donation-request QR code to the right of the
   Strengthening Families Across Generations headline on
   desktop and stacks it safely on tablets and phones.
   ========================================================= */

/* Headline + donation card row */
.gapa-hero-title-donation {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        180px;

    align-items: center;

    gap: 36px;

    width: 100%;

    margin-bottom: 22px;

    box-sizing: border-box;
}


/* Preserve the existing hero headline styling */
.gapa-hero-title-donation h1 {
    min-width: 0;

    margin-top: 0;
    margin-bottom: 0;
}


/* Donation request card */
.gapa-donation-card {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 180px;

    padding: 14px;

    justify-self: end;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        2px
        solid
        var(--ve-gold);

    border-radius: 16px;

    box-sizing: border-box;

    text-align: center;
    text-decoration: none !important;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover treatment for desktop users */
.gapa-donation-card:hover {
    transform: translateY(-3px);

    background:
        rgba(255, 255, 255, 0.10);

    border-color:
        var(--ve-gold2);

    box-shadow:
        0
        12px
        28px
        rgba(0, 0, 0, 0.35);

    text-decoration: none !important;
}


/* Keyboard accessibility */
.gapa-donation-card:focus {
    outline:
        3px
        solid
        var(--ve-gold2);

    outline-offset: 4px;

    text-decoration: none !important;
}


/* SUPPORT GAPA wording */
.gapa-donation-heading {
    display: block;

    margin-bottom: 9px;

    color:
        var(--ve-gold);

    font-family:
        'Nunito',
        sans-serif;

    font-size: 14px;
    font-weight: 900;

    line-height: 1.2;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


/* QR image */
.gapa-donation-card img {
    display: block;

    width: 142px;
    height: 142px;

    max-width: 100%;

    margin:
        0
        auto
        9px;

    padding: 5px;

    background:
        #ffffff;

    border-radius: 7px;

    box-sizing: border-box;
}


/* Instructions beneath QR */
.gapa-donation-instruction {
    display: block;

    color:
        #ffffff;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;

    text-align: center;
}


/* =========================================================
   TABLET
   Stack donation card below the headline so the headline
   never becomes compressed.
   ========================================================= */

@media only screen and (max-width: 991px) {

    .gapa-hero-title-donation {
        display: block;

        margin-bottom: 22px;
    }

    .gapa-donation-card {
        width: 180px;

        margin:
            26px
            auto
            0;

        justify-self: auto;
    }

    .gapa-donation-card img {
        width: 142px;
        height: 142px;
    }

}


/* =========================================================
   PHONE
   Slightly reduces the card while maintaining a QR size
   large enough for normal smartphone scanning.
   ========================================================= */

@media only screen and (max-width: 767px) {

    .gapa-donation-card {
        width: 170px;

        margin-top: 22px;

        padding: 13px;
    }

    .gapa-donation-card img {
        width: 134px;
        height: 134px;
    }

}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media only screen and (max-width: 480px) {

    .gapa-donation-card {
        width: 164px;
    }

    .gapa-donation-card img {
        width: 128px;
        height: 128px;
    }

}

/* =========================================================
   GAPA DONATION CARD — DIRECT EMAIL FALLBACK
   Keeps the QR/action area clickable while also displaying
   a visible email address for visitors whose browser does
   not automatically open an email application.
   ========================================================= */

.gapa-donation-action {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 100%;

    color: inherit;

    text-align: center;
    text-decoration: none !important;
}

.gapa-donation-action:hover,
.gapa-donation-action:focus {
    color: inherit;
    text-decoration: none !important;
}


/* Keyboard focus for either link inside the donation card */
.gapa-donation-card:focus-within {
    outline: 3px solid var(--ve-gold2);
    outline-offset: 4px;
}


/* Visible email fallback */
.gapa-donation-fallback {
    width: 100%;

    margin-top: 10px;
    padding-top: 10px;

    border-top:
        1px
        solid
        rgba(255, 255, 255, 0.18);

    text-align: center;

    box-sizing: border-box;
}


/* Small explanatory wording */
.gapa-donation-fallback > span {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.35;
}


/* Direct email address */
.gapa-donation-fallback a {
    display: block;

    color: var(--ve-gold) !important;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.35;

    overflow-wrap: anywhere;

    text-decoration: underline !important;
}

.gapa-donation-fallback a:hover,
.gapa-donation-fallback a:focus {
    color: #ffffff !important;
}

/* =========================================================
   GAPA PROGRAMS — PROCESS CARD TOP ALIGNMENT
   Keeps all four process cards aligned evenly at the top
   and gives them a consistent equal-height presentation.
   ========================================================= */

.ve-process-section .ve-process-grid {
    align-items: stretch;
}

.ve-process-section .ve-process-step {
    display: flex;
    flex-direction: column;

    align-self: stretch;
}

.ve-process-section .ve-process-arrow {
    align-self: center;
}

/* =========================================================
   GAPA PROGRAMS CTA — ULTRA-WIDE PRODUCTION IMAGE
   Uses the dedicated wide-format photograph without the
   crop compensation required by the original source image.
   ========================================================= */

.gapa-programs-cta {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* =========================================================
   GAPA PROGRAMS CTA — MOBILE IMAGE OVERRIDE
   Uses the original community_nellie_pou image on phones
   because the ultra-wide CTA version crops too aggressively
   on narrow screens.
   ========================================================= */
@media only screen and (max-width: 767px) {

    .gapa-programs-cta {
        background-image: url('../img/community/community_nellie_pou.png') !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

}

/* =========================================================
   GAPA RESOURCES — QUICK ACCESS INTRODUCTION
   ========================================================= */

.gapa-resource-intro {
    max-width: 760px;

    margin:
        0
        0
        28px;

    color: var(--ve-text);

    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   GAPA RESOURCES — RESOURCE GUIDANCE CARD ALIGNMENT
   Keeps the title/subtitle area aligned evenly across all
   three Resource Guidance Highlight cards.
   ========================================================= */

.ve-elements-section .ve-testi-grid .ve-testi-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ve-elements-section .ve-testi-grid .ve-testi-card > p {
    flex: 1 1 auto;
}

.ve-elements-section .ve-testi-grid .ve-testi-author {
    margin-top: auto;
}

/* =========================================================
   GAPA RESOURCES — GUIDANCE CARD LOWER-BLOCK ALIGNMENT
   Gives each title/subtitle area the same height so all
   three headings begin on the same horizontal line.
   ========================================================= */

.ve-elements-section .ve-testi-grid .ve-testi-author {
    min-height: 72px;
    align-items: flex-start;
}

.ve-elements-section .ve-testi-grid .ve-testi-author > div {
    width: 100%;
}

/* =========================================================
   GAPA RESOURCES — RESOURCE CONNECTION PANEL
   ========================================================= */

.gapa-resource-connect-panel {
    display: flex;
    align-items: center;

    gap: 28px;

    padding: 34px;

    background: var(--ve-light);

    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);

    box-shadow: var(--ve-shadow);
}

.gapa-resource-connect-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    background:
        linear-gradient(
            135deg,
            var(--ve-dark),
            var(--ve-navy)
        );

    color: var(--ve-gold);

    border-radius: 16px;

    font-size: 30px;
}

.gapa-resource-connect-icon i {
    line-height: 1;
}

.gapa-resource-connect-content {
    flex: 1;
}

.gapa-resource-connect-content h4 {
    margin-bottom: 10px;

    color: var(--ve-dark);

    font-size: 22px;
    font-weight: 800;
}

.gapa-resource-connect-content p {
    max-width: 760px;

    margin-bottom: 20px;

    color: var(--ve-text);

    font-size: 15px;
    line-height: 1.8;
}


/* Phone layout */
@media only screen and (max-width: 767px) {

    .gapa-resource-connect-panel {
        flex-direction: column;

        align-items: flex-start;

        padding: 26px;
    }

}

/* =========================================================
   GAPA RESOURCES — GRANDPARENT CONCERNS
   Based on verified GAPA outreach information.
   ========================================================= */

.gapa-concerns-intro {
    max-width: 850px;
    margin: 0 0 32px;

    color: var(--ve-text);

    font-size: 15px;
    line-height: 1.8;
}

.gapa-concerns-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.gapa-concern-card {
    padding: 26px;

    background: #ffffff;

    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);

    box-shadow: var(--ve-shadow);
}

.gapa-concern-card > i {
    display: block;

    margin-bottom: 16px;

    color: var(--ve-gold);

    font-size: 26px;
    line-height: 1;
}

.gapa-concern-card h4 {
    margin-bottom: 10px;

    color: var(--ve-dark);

    font-size: 17px;
    font-weight: 800;
}

.gapa-concern-card p {
    margin: 0;

    color: var(--ve-text);

    font-size: 14px;
    line-height: 1.75;
}

.gapa-concerns-contact {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;

    margin-top: 28px;
    padding: 28px;

    background:
        linear-gradient(
            135deg,
            var(--ve-dark),
            var(--ve-navy)
        );

    border-radius: var(--ve-radius);
}

.gapa-concerns-contact strong {
    display: block;

    margin-bottom: 5px;

    color: var(--ve-gold);

    font-size: 18px;
    font-weight: 800;
}

.gapa-concerns-contact span {
    display: block;

    max-width: 650px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.7;
}

.gapa-concerns-phone {
    display: flex;
    flex-direction: column;

    gap: 9px;

    flex-shrink: 0;
}

.gapa-concerns-phone a {
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
}

.gapa-concerns-phone a i {
    width: 20px;

    color: var(--ve-gold);
}

.gapa-concerns-phone a:hover,
.gapa-concerns-phone a:focus {
    color: var(--ve-gold);
}


/* Tablet */
@media only screen and (max-width: 991px) {

    .gapa-concerns-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gapa-concerns-contact {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* Phone */
@media only screen and (max-width: 767px) {

    .gapa-concerns-grid {
        grid-template-columns: 1fr;
    }

    .gapa-concern-card {
        padding: 22px;
    }

}

/* =========================================================
   GAPA RESOURCES — PROCESS CARD ALIGNMENT
   Keeps all four Finding Information & Support cards
   aligned evenly at the top and bottom while keeping
   the arrows vertically centered.
   ========================================================= */

.ve-elements-section .ve-process-grid {
    align-items: stretch;
}

.ve-elements-section .ve-process-step {
    display: flex;
    flex-direction: column;

    align-self: stretch;
}

.ve-elements-section .ve-process-arrow {
    align-self: center;
}

/* =========================================================
   GAPA MEETINGS — EQUAL HEIGHT INFORMATION CARDS
   Keeps cards in each row aligned and places the
   bottom information/action row at a consistent height.
   ========================================================= */

/* Make each Bootstrap card column stretch */
.gapa-meetings-hero + .ve-section
.col-12.col-lg-8 > .row > [class*="col-"] {
    display: flex;
}


/* Make every meeting card occupy the full column height */
.gapa-meetings-hero + .ve-section
.ve-insight-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
}


/* Allow the text portion of each card to expand */
.gapa-meetings-hero + .ve-section
.ve-insight-body {
    display: flex;
    flex-direction: column;

    flex: 1 1 auto;
}


/* Push the icon/action row to the bottom */
.gapa-meetings-hero + .ve-section
.ve-insight-meta {
    margin-top: auto;
}

/* =========================================================
   GAPA MEETINGS — VERTICAL SPACE BETWEEN CARD ROWS
   Adds breathing room below each meeting/activity card.
   ========================================================= */

.gapa-meetings-hero + .ve-section
.col-12.col-lg-8 > .row > [class*="col-"] {
    padding-bottom: 32px;
}

/* =========================================================
   GAPA MEETINGS — CARD 5 IMAGE POSITION
   Moves the group photo slightly upward so the top is not cropped.
   ========================================================= */
.gapa-meeting-card5-img {
    background-position: center 12% !important;
}

/* =========================================================
   GAPA MEETINGS — CARD 6 PORTRAIT POSITION
   Anchors the portrait to the top so the subject's
   head and face remain visible.
   ========================================================= */

.gapa-meeting-card6-img {
    background-position: center top !important;
}

/* =========================================================
   GAPA MEETINGS — CARD 6 IMAGE / BODY GAP CORRECTION
   Removes the unwanted white strip directly beneath
   the portrait while leaving the rest of the card intact.
   ========================================================= */

.gapa-meeting-card6-img {
    margin-bottom: 0 !important;
}

/* =========================================================
   GAPA — VISIBLE GOOGLE TRANSLATE BUTTON
   Desktop: fixed floating button.
   Mobile: use Translate GAPA inside hamburger menu.
   ========================================================= */


/* Desktop and larger tablets */
@media only screen and (min-width: 992px) {

    .gapa-translate-wrap {
        display: block !important;

        position: fixed !important;

        right: 24px !important;
        bottom: 24px !important;

        margin: 0 !important;

        z-index: 10050 !important;
    }


    .gapa-translate-btn {
        display: inline-flex !important;

        align-items: center;
        justify-content: center;

        gap: 8px;

        padding: 12px 18px;

        background: #000000;

        border:
            2px
            solid
            var(--ve-gold);

        border-radius: 999px;

        color: var(--ve-gold) !important;

        font-size: 13px;
        font-weight: 800;

        line-height: 1;

        text-decoration: none !important;

        white-space: nowrap;

        box-shadow:
            0
            8px
            24px
            rgba(0, 0, 0, 0.28);
    }


    .gapa-translate-btn:hover,
    .gapa-translate-btn:focus {
        background: var(--ve-gold);

        color: #000000 !important;

        text-decoration: none;
    }


    .gapa-translate-btn i {
        font-size: 16px;
    }

}


/* Phones and smaller tablets */
@media only screen and (max-width: 991px) {

    .gapa-translate-wrap {
        display: none !important;
    }

}

/* =========================================================
   GAPA — ACCESSIBLE LANGUAGE SELECTOR
   One visible translation control for desktop and mobile.
   ========================================================= */

.gapa-language-selector {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 10050;

    font-family: inherit;
}


/* Main Translate / Traducir button */
.gapa-language-toggle {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 12px 18px;

    background: #000000;

    border:
        2px
        solid
        var(--ve-gold, #d4a017);

    border-radius: 999px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.2;

    cursor: pointer;

    box-shadow:
        0
        8px
        24px
        rgba(0, 0, 0, 0.30);
}


.gapa-language-toggle:hover,
.gapa-language-toggle:focus {
    background:
        var(--ve-gold, #d4a017);

    color: #000000;

    outline: none;
}


.gapa-language-toggle:focus-visible {
    outline:
        3px
        solid
        #ffffff;

    outline-offset: 3px;
}


.gapa-language-toggle .fa-language {
    font-size: 19px;
}


.gapa-language-chevron {
    font-size: 14px;
}


/* Drop-up language panel */
.gapa-language-menu {
    position: absolute;

    right: 0;
    bottom: calc(100% + 12px);

    width: 280px;

    padding: 14px;

    background: #ffffff;

    border:
        2px
        solid
        var(--ve-gold, #d4a017);

    border-radius: 16px;

    box-shadow:
        0
        12px
        32px
        rgba(0, 0, 0, 0.28);
}


.gapa-language-menu[hidden] {
    display: none !important;
}


/* Language panel heading */
.gapa-language-heading {
    margin:
        2px
        4px
        12px;

    color: #000000;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.3;

    text-align: center;
}


/* Individual language choices */
.gapa-language-choice {
    display: block;

    width: 100%;

    min-height: 50px;

    margin-bottom: 8px;

    padding: 11px 14px;

    background: #ffffff;

    border: 1px solid #cfcfcf;
    border-radius: 10px;

    color: #000000;

    font-family: inherit;
    font-size: 17px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


.gapa-language-choice:last-child {
    margin-bottom: 0;
}


.gapa-language-choice:hover,
.gapa-language-choice:focus {
    background: #f4e7bd;

    border-color:
        var(--ve-gold, #d4a017);

    outline: none;
}


.gapa-language-choice:focus-visible {
    outline:
        3px
        solid
        var(--ve-gold, #d4a017);

    outline-offset: 2px;
}


/* Arabic choice remains right-to-left */
.gapa-language-choice[dir="rtl"] {
    text-align: right;
}


/* Smaller screens */
@media only screen and (max-width: 575px) {

    .gapa-language-selector {
        right: 12px;
        bottom: 12px;
    }


    .gapa-language-toggle {
        min-height: 50px;

        padding: 11px 15px;

        font-size: 15px;
    }


    .gapa-language-menu {
        width:
            min(
                290px,
                calc(100vw - 24px)
            );
    }

}