:root{
  --header:#008080;
  --text:#000000;
  --navy:#000080;
  --gold:#F7C600;

  /* Global heading sizes */
  --h1: clamp(28px, 3vw, 44px);
  --h2: clamp(22px, 2.2vw, 32px);
  --h3: clamp(18px, 1.8vw, 24px);
  --h4: clamp(16px, 1.4vw, 20px);
  --p: 16px;

  --maxw: 1100px;
  --border: rgba(0,0,0,.15);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:#fff;
  text-align: center;
}


h1{ font-size: var(--h1); color: var(--navy); margin: 0 0 10px; }
h2{ font-size: var(--h2); color: var(--gold); margin: 22px 0 10px; }
h3{ font-size: var(--h3); margin: 18px 0 8px; }
h4{ font-size: var(--h4); margin: 16px 0 6px; }
p{ font-size: var(--p); margin: 0 0 12px; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--header);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}


/* Rows */
.header-row{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 12px;
  display:flex;
  align-items:center;
  justify-content: flex-start; /* ✅ important */
  gap: 12px;
}


.logo img{ display:block; height:auto; }

.social{
  display:flex;
  gap: 8px;
  align-items:center;
}
.social-link{
  text-decoration:none;
  color: var(--text);
  font-weight: 700;
  padding: 6px 8px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 10px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link.icon{
  width: 36px;
  height: 36px;
  padding: 0;
  background: #fff;
}


.social-link.icon svg{
  width: 18px;
  height: 18px;
  display:block;
}
.social-link.icon svg path{
  fill:#000;
}

.menu{
  display:flex;
  align-items:center;
  gap: 18px;          /* more breathing room */
  margin-left: auto;
}


.menu a,
.dropbtn{
  color: var(--text);
  text-decoration:none;
  font-weight: 600;
  font-size: 15px;        /* smaller and cleaner */
  padding: 2px 4px;      /* more breathing space */
  display: inline-flex;
  align-items: center;
}


/* =========================
   DESKTOP DROPDOWNS
   ========================= */
.menu { align-items: center; }

.dropdown{
  position: relative;
  display: inline-flex;
}


/* IMPORTANT: hide submenu by default */
.dropdown-content{
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 12px;
  padding: 6px;
  z-index: 10000;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

/* Right aligned dropdown for “More” */
.dropdown-right{
  left: auto;
  right: 0;
}

/* Submenu container */
.dropdown-sub{
  position: relative;
}

/* Submenu trigger link */
.submenu-title{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}

/* Hide submenu panel by default */
.dropdown-sub-content{
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  z-index: 10001;
}

/* Show submenu on hover/focus */
.dropdown-sub:hover .dropdown-sub-content,
.dropdown-sub:focus-within .dropdown-sub-content{
  display: block;
}

/* Hover effect for submenu title */
.submenu-title:hover{
  background: rgba(0,0,0,.06);
}


.dropdown-content a{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.dropdown-content a:hover{
  background: rgba(0,0,0,.06);
}

/* Show dropdown on hover (desktop) + keyboard focus */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content{
  display: block;
}


.search{
  position: relative;
  min-width: 240px;
  flex: 0 0 280px; /* ✅ fixed width on desktop */
}

.search-input{
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.35);
  outline: none;
  font-family: inherit;
  color: var(--text);
}
.search-results{
  position:absolute;
  left:0; right:0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 12px;
  overflow: hidden;
  display:none;
}
.search-results a{
  display:block;
  padding: 10px 12px;
  text-decoration:none;
  color: #000;
  border-top: 1px solid rgba(0,0,0,.08);
}
.search-results a:first-child{ border-top: none; }
.search-results a:hover{ background: rgba(0,0,0,.05); }
.search-results .hint{
  padding: 10px 12px;
  color: rgba(0,0,0,.65);
  font-size: 14px;
}

/* Desktop layout rule: Logo > Social > Search > Menu */
.header-desktop .menu{ margin-left: 0; }
.header-desktop{ }
.header-desktop .search{ max-width: 420px; }

/* Mobile */
.header-mobile{ display:none; }
.hamburger{
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(0,0,0,.35);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 18px;
  color: var(--text);
}

.mobile-menu{
  display:none;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 12px 12px;
}
.mobile-menu a{
  display:block;
  padding: 10px 10px;
  text-decoration:none;
  color: var(--text);
  font-weight: 700;
  border-top: 1px solid rgba(0,0,0,.18);
}

/* =========================
   MOBILE DROPDOWNS (details/summary)
   ========================= */
.m-drop{
  border-top: 1px solid rgba(0,0,0,.18);
}

.m-drop summary{
  list-style: none;
  cursor: pointer;
  padding: 10px 10px;
  font-weight: 800;
  color: var(--text);
}

.m-drop summary::-webkit-details-marker{
  display: none;
}

.m-drop summary::after{
  content: "▾";
  float: right;
}

.m-drop[open] summary::after{
  content: "▴";
}

.m-drop a{
  padding-left: 22px; /* indent submenu items */
  border-top: 1px solid rgba(0,0,0,.12);
}


/* Page spacing accounts for sticky header */
.page{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 12px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.site-title-line{
  margin: 12px 0 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-title-line .site-name{
  font-weight: 800;
  letter-spacing: 2px;
  font-size: clamp(26px, 3.2vw, 44px);
  color: var(--navy);
  line-height: 1.05;
  text-transform: uppercase;
}

.site-title-line .site-tag{
  font-weight: 800;
  letter-spacing: 3px;
  font-size: clamp(11px, 1.2vw, 14px);
  color: #c40000;
  text-transform: uppercase;
}


/* Responsive breakpoints */
@media (max-width: 860px){
  .header-desktop{ display:none; }
  .header-mobile{ display:flex; }
  .header-mobile.layer1{ padding-bottom: 6px; }
  .header-mobile.layer2{ padding-top: 6px; padding-bottom: 10px; }
  .header-mobile .search{ min-width: 0; }
  .header-mobile.layer1 .social{ margin-left: auto; }
}

/* Small tweaks */
@media (max-width: 420px){
  .social-link{ padding: 6px 7px; }
  .hamburger{ padding: 8px 9px; }
}

.search-results a,
.search-results .hint{
  text-align: center;
}

/* =========================================
   HERO 6-IMAGE SHOWCASE
   ========================================= */

.hero-showcase{
  width: 100%;
  max-width: var(--maxw);
  margin: 10px auto 18px;
  padding: 0 12px;
}

.hero-grid{
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr); /* Default = mobile */
}

.hero-item{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
}

.hero-item img{
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;     /* Square images */
  object-fit: cover;
  display: block;
}

/* =========================================
   SMALL DEVICES (2 columns)
   ========================================= */

@media (max-width: 640px){
  .hero-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   DESKTOP CUSTOM LAYOUT
   ========================================= */

@media (min-width: 1024px){

  .hero-grid{
    grid-template-columns: 1fr 2fr 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
  }

  /* Large center images */
  .hero-item:nth-child(2),
  .hero-item:nth-child(3){
    grid-row: span 2;
  }

  /* Remove square restriction on tall items */
  .hero-item:nth-child(2) img,
  .hero-item:nth-child(3) img{
    aspect-ratio: auto;
    height: 100%;
  }

}


/* Reusable: first-into-after-hero-section */
.first-into-after-hero-section{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 12px 30px;
}

.first-into-after-hero-section .intro{
  max-width: 900px;
  margin: 0 auto 18px;
}

.first-into-after-hero-section .service-cards{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 columns on large screens */
  gap: 12px;
}

.first-into-after-hero-section .service-card{
  background: var(--header);            /* same color as header (#008080) */
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 0px;
  padding: 30px 20px 30px;
}

.first-into-after-hero-section .service-card h2{
  margin: 0 0 8px;
}

.first-into-after-hero-section .service-card p{
  margin: 0;
}

/* Mobile: single column */
@media (max-width: 640px){
  .first-into-after-hero-section .service-cards{
    grid-template-columns: 1fr;
  }
}

/* ============ Modern Footer (Vahako) ============ */
.vv-footer {
  background: #0E8282; /* bluish/teal from your image */
  color: rgba(255,255,255,0.92);
  margin-top: 60px;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.vv-footer__accent {
  height: 10px;
  background: #FDD035; /* yellow from your image */
}

.vv-footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 18px 18px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.4fr 1fr 0.9fr;
}

@media (max-width: 900px) {
  .vv-footer__wrap {
    grid-template-columns: 1fr;
    padding: 22px 16px 10px;
  }
}

.vv-footer__block {
  min-width: 0;
}

.vv-footer__title {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.vv-footer__tagline {
  margin: 0;
  line-height: 1.55;
  font-size: 15px;
}

.vv-footer__tagline--yellow {
  color: #FDD035; /* yellow text */
  font-weight: 600;
}

.vv-footer__by {
  display: inline-block;
  margin-top: 8px;
}

.vv-footer__by--blue {
  color: #1D4ED8; /* SmackDown-style blue */
  font-weight: 700;
}

.vv-footer__by--red {
  color: #DC2626; /* RAW-style red */
  font-weight: 800;
}

.vv-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vv-footer__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}

.vv-footer__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  color: rgba(255,255,255,0.95);
}

.vv-footer__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.vv-footer__link {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.vv-footer__link:hover {
  border-bottom-color: rgba(255,255,255,0.7);
}

.vv-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vv-footer__socialLink {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.vv-footer__socialLink:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
}

.vv-footer__socialLink svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.vv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 14px 18px;
}

.vv-footer__bottom p {
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* Screen-reader only */
.vv-footer__sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ===== Back To Top Button ===== */

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

#backToTop svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* Show state */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect (desktop only) */
@media (hover: hover) {
  #backToTop:hover {
    transform: translateY(-3px);
    background: #111;
  }
}

/* Slightly smaller on mobile */
@media (max-width: 600px) {
  #backToTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== Quick Contact Buttons ===== */

/* ===== Quick Contact (two different layouts) ===== */
/* ===== Quick Contact (Premium UI) ===== */

.vv-quick-contact{
  position: fixed;
  right: 22px;
  bottom: 98px; /* sits ABOVE backToTop */
  z-index: 9998;
  pointer-events: none; /* only children clickable */
}

.vv-quick-contact a { pointer-events: auto; }

/* Default: show mobile/tablet set */
.vv-qc--mobile{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vv-qc--desktop{ display: none; }

/* --- MOBILE/TABLET floating buttons --- */
.vv-fab{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  transform: translateZ(0);
  will-change: transform, filter;

  /* Premium layered shadow (gives “HD” look) */
  box-shadow:
    0 10px 25px rgba(0,0,0,0.22),
    0 4px 10px rgba(0,0,0,0.16);

  /* Subtle ring + edge highlight */
  border: 1px solid rgba(255,255,255,0.18);
  outline: 1px solid rgba(0,0,0,0.10);
  outline-offset: -2px;
}

/* glossy highlight */
.vv-fab::before{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.20),
    rgba(255,255,255,0.05) 35%,
    rgba(0,0,0,0.08) 100%
  );
  opacity: 0.75;
  pointer-events:none;
}

/* soft inner sparkle */
.vv-fab::after{
  content:"";
  position:absolute;
  top: 10px;
  left: 10px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  filter: blur(1px);
  opacity: 0.45;
  pointer-events:none;
}

/* SVG sizing & crisp rendering */
.vv-fab svg{
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: relative; /* above highlight layers */
  z-index: 1;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.15));
}

/* Colors (with subtle depth) */
.vv-fab--call{
  background: linear-gradient(180deg, #2B63FF, #1D4ED8);
}
.vv-fab--wa{
  background: linear-gradient(180deg, #2CE06F, #25D366);
}
.vv-fab--sms{
  background: linear-gradient(180deg, #FF4A4A, #DC2626);
}

/* --- Premium sequential attention animation --- */
/* Not a harsh bounce: micro-lift + slight scale + glow */
@keyframes vvPop {
  0%, 78%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
  }
  84%{
    transform: translateY(-5px) scale(1.03);
    filter: drop-shadow(0 14px 18px rgba(0,0,0,0.18));
  }
  88%{
    transform: translateY(-2px) scale(1.015);
  }
}

.vv-fab--call{ animation: vvPop 3.9s infinite; animation-delay: 0s; }
.vv-fab--wa  { animation: vvPop 3.9s infinite; animation-delay: 1.3s; }
.vv-fab--sms { animation: vvPop 3.9s infinite; animation-delay: 2.6s; }

/* Hover/Press polish */
@media (hover:hover){
  .vv-fab{
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  }
  .vv-fab:hover{
    transform: translateY(-3px) scale(1.03);
    box-shadow:
      0 14px 34px rgba(0,0,0,0.26),
      0 6px 14px rgba(0,0,0,0.18);
  }
  .vv-fab:active{
    transform: translateY(-1px) scale(0.99);
  }
}

/* Small screens tweaks */
@media (max-width: 600px){
  .vv-quick-contact{ right: 18px; bottom: 88px; }
  .vv-fab{
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
  .vv-fab svg{ width: 22px; height: 22px; }
}

/* ===== DESKTOP layout: show bars + WhatsApp icon ===== */
@media (min-width: 992px){
  .vv-qc--mobile{ display: none; }

  .vv-qc--desktop{
    display: grid;
    gap: 10px;
    justify-items: end;
  }

  /* email/hotline bars (footer teal + footer yellow) */
  .vv-bar{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    text-decoration: none;
    white-space: nowrap;
    max-width: 420px;

    background: linear-gradient(180deg, #0F8F8F, #0E8282);
    color: #FDD035;

    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
      0 12px 28px rgba(0,0,0,0.20),
      0 5px 12px rgba(0,0,0,0.14);

    position: relative;
    transform: translateZ(0);
  }

  /* glossy highlight on bars */
  .vv-bar::before{
    content:"";
    position:absolute;
    inset: 1px;
    border-radius: 15px;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.04) 45%,
      rgba(0,0,0,0.06) 100%
    );
    pointer-events:none;
    opacity: 0.9;
  }

  .vv-bar__icon{
    width: 18px;
    height: 18px;
    display: inline-flex;
    color: #FDD035;
    position: relative;
    z-index: 1;
  }
  .vv-bar__icon svg{ width: 18px; height: 18px; }

  .vv-bar__text{
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  .vv-bar__text strong{
    font-weight: 800;
  }

  .vv-waDesk{
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    text-decoration: none;
    justify-self: end;

    background: linear-gradient(180deg, #2CE06F, #25D366);
    color: #fff;

    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
      0 12px 28px rgba(0,0,0,0.20),
      0 5px 12px rgba(0,0,0,0.14);

    position: relative;
    transform: translateZ(0);
  }

  .vv-waDesk::before{
    content:"";
    position:absolute;
    inset: 1px;
    border-radius: 17px;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.05) 45%,
      rgba(0,0,0,0.08) 100%
    );
    pointer-events:none;
    opacity: 0.85;
  }

  .vv-waDesk svg{
    width: 24px;
    height: 24px;
    fill: currentColor;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.14));
  }

  @media (hover:hover){
    .vv-bar, .vv-waDesk{ transition: transform .18s ease, box-shadow .18s ease; }
    .vv-bar:hover{
      transform: translateY(-2px);
      box-shadow:
        0 16px 36px rgba(0,0,0,0.24),
        0 7px 16px rgba(0,0,0,0.16);
    }
    .vv-waDesk:hover{
      transform: translateY(-3px) scale(1.03);
      box-shadow:
        0 16px 36px rgba(0,0,0,0.24),
        0 7px 16px rgba(0,0,0,0.16);
    }
    .vv-bar:active, .vv-waDesk:active{
      transform: translateY(-1px) scale(0.99);
    }
  }
}

/* ===== Modern SMS Text Styling for floating button ===== */

.vv-fab--sms {
  display: grid;
  place-items: center;
}

/* Modern condensed badge style */
.vv-sms-text {
 font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;

  /* subtle depth */
  text-shadow: 
    0 1px 1px rgba(0,0,0,0.25),
    0 0 6px rgba(255,255,255,0.15);

  /* micro background badge */
  padding: 2px 6px;
  border-radius: 6px;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(2px);
}

/* Keep desktop quick-contact readable + clickable (no performance impact) */
@media (min-width: 992px){
  .vv-bar{
    background: #0E8282; /* teal/greenish */
    color: #FDD035;      /* yellow text */
  }
  .vv-bar strong{ color: #FDD035; } /* ensure number stays yellow */
}


/* ===== DESKTOP MENU YELLOW ONLY ===== */
@media (min-width: 861px){

  .header-desktop .menu a,
  .header-desktop .dropbtn{
    color: #F7C600 !important;
  }

}

/* Speed optimization: render only when visible */
.service-cards,
.vv-footer,
.first-into-after-hero-section {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

/* =========================
   SUBPAGE HERO (Reusable)
   ========================= */

/* =========================
   SUBPAGE HERO (Reusable)
   ========================= */

.subpage-hero{
  padding:18px 14px;
  max-width:1100px;
  margin:0 auto;
}

.subpage-hero__title{
  text-align:center;
  margin:10px 0 16px;
}

/* ✅ DEFAULT = DESKTOP (image left, text right) */
.subpage-hero__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:16px;
  align-items:center;
}

.subpage-hero__text{
  text-align:left;
}

.subpage-hero__media img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 3 / 2;
  object-fit:cover;
  border-radius:10px;
}

/* ✅ ONLY small devices stack + center */
@media (max-width: 859px){
  .subpage-hero__grid{
    grid-template-columns: 1fr;
  }
  .subpage-hero__text{
    text-align:center;
  }
}


/* =========================
   SUBPAGE GALLERY SECTION
   ========================= */
.gallery-section {
  padding: 22px 16px;
}

.gallery-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-title {
  text-align: center;
  margin: 0 0 16px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
}

.gallery-title__sep {
  opacity: 0.6;
  margin: 0 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.gallery-card {
  margin: 0;
}

.gallery-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #f4f4f4;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.gallery-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2 / 3; /* updated */
  object-fit: cover;
}

.gallery-label {
  margin: 10px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}


/* =========================
   FULL-WIDTH MESSAGE BANNER
   Teal background + Yellow accent
   ========================= */

.vv-message-banner{
  /* Full width background */
  width: 100%;
  background: linear-gradient(135deg, #007a7a 0%, #004f4f 100%);
  color: #fff;

  /* Gives that "full banner" feel */
  padding: 44px 16px;
  position: relative;
  overflow: hidden;
}

/* Yellow accent strip */
.vv-message-banner::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:10px;
  background:#ffd200; /* yellow */
}

/* Subtle yellow glow circle (optional) */
.vv-message-banner::after{
  content:"";
  position:absolute;
  right:-140px;
  top:-140px;
  width:320px;
  height:320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,210,0,0.22) 0%, rgba(255,210,0,0) 70%);
  pointer-events:none;
}

.vv-message-banner__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 14px; /* breathing room after yellow strip */
}

.vv-message-banner__title{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.vv-message-banner__text{
  margin: 10px 0 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  opacity: 0.95;
}

/* Optional: separate each language nicely */
.vv-message-banner__text + .vv-message-banner__text{
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 14px;
}


/* =========================
   CONTACT SECTION RESPONSIVE
   - Mobile: icons only (bigger)
   - Desktop: icons + text (smaller icons, bigger text)
   ========================= */

/* MOBILE FIRST (default) */
/* CONTACT ROW LAYOUT */
.vv-contact-lite__grid{
  display: flex;
  justify-content: center;   /* center whole row */
  align-items: center;
  gap: 15px;                 /* equal spacing between items */
  flex-wrap: wrap;
}

.vv-contact-lite__item{
  display: flex;
  align-items: center;
  justify-content: center; /* center icon on mobile */
  padding: 16px;
}

/* Icon wrapper (IMPORTANT: make width/height work) */
.vv-icon{
  display: inline-flex;      /* ✅ required */
  width: 36px;               /* mobile icon size */
  height: 36px;
  flex: 0 0 auto;
}

/* Make SVG fill the icon wrapper */
.vv-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* Hide text on mobile */
.vv-text{
  display: none;
}

/* DESKTOP & LARGER SCREENS */
@media (min-width: 820px){

  .vv-contact-lite__item{
    justify-content: flex-start; /* icon + text alignment */
    padding: 14px 16px;
    gap: 12px; /* spacing between icon and text */
  }

  /* Smaller icons on desktop */
  .vv-icon{
    width: 22px;
    height: 22px;
  }

  /* Show text on desktop */
  .vv-text{
    display: block;
  }

  /* Larger text for desktop */
  .vv-text strong{
    font-size: 18px;
  }

  .vv-text small{
    font-size: 15px;
  }
}

/* =========================
   Mobile Icon Red Circle
   ========================= */
@media (max-width: 819px){

  .vv-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    background: #e10600;     /* red circle */
    border-radius: 50%;
    color: #ffffff;          /* icon color white */
  }

  .vv-icon svg{
    width: 24px;
    height: 24px;
  }

}



/* =========================
   SOCIAL SECTION
   ========================= */

.vv-social-section{
  padding: 50px 16px;
  background: #f8f9fa;
  text-align: center;
}

.vv-social-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.vv-social-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
}

.vv-social-sub{
  margin: 0 0 30px;
  color: #666;
}

.vv-social-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 820px){
  .vv-social-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.vv-social-card{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  background: #ffffff;
  transition: transform .2s ease, border-color .2s ease;
}

.vv-social-card:hover{
  transform: translateY(-3px);
  border-color: #008080;
}

.vv-social-icon{
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.vv-social-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.vv-social-text strong{
  display: block;
  font-size: 17px;
}

.vv-social-text small{
  display: block;
  font-size: 14px;
  color: #666;
}


/* =========================
   FAQ SECTION (Modern + Collapsible)
   ========================= */
.vv-faq{
  padding: 44px 16px;
  background: #ffffff;
}

.vv-faq__inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center; /* center align for all devices */
}

.vv-faq__heading{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
}

.vv-faq__sub{
  margin: 0 auto 22px;
  max-width: 70ch;
  color: rgba(0,0,0,.65);
  line-height: 1.6;
  font-size: 14px;
}

.vv-faq__list{
  text-align: left;            /* questions/answers align nicely */
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.vv-faq__item{
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

/* Clickable question */
.vv-faq__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Hide default marker */
.vv-faq__q::-webkit-details-marker{ display:none; }

.vv-faq__qtext{
  font-weight: 800;  /* question bold 800 */
  color: #000;
  font-size: 16px;
  line-height: 1.25;
}

.vv-faq__icon{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ededed;
  font-weight: 900;
  color: #000;
  flex: 0 0 auto;
}

/* Answer */
.vv-faq__a{
  margin: 0;
  padding: 0 16px 16px;
  font-weight: 400; /* answer weight 400 */
  color: #000;
  line-height: 1.75;
  font-size: 15px;
}

/* Open state: icon becomes minus */
.vv-faq__item[open] .vv-faq__icon{
  content: "";
}
.vv-faq__item[open] .vv-faq__icon{
  font-weight: 900;
}
.vv-faq__item[open] .vv-faq__icon::before{
  content: "–";
}
.vv-faq__icon::before{
  content: "+";
}

/* Subtle hover */
.vv-faq__q:hover{
  background: #fafafa;
}
