/* =============================================================
   HOMEPAGE — matches current site's 3-col grid layout
   ============================================================= */

/* ===== HERO ===== */
.tgvc-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: none; /* shown on desktop only */
}
.tgvc-hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.tgvc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,48,66,0.05) 0%,
    rgba(20,48,66,0.18) 20%,
    rgba(20,48,66,0.48) 50%,
    rgba(20,48,66,0.68) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8%;
  padding-left: 60px;
  padding-right: 60px;
}
.tgvc-hero__text {
  max-width: 1100px;
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
}
.tgvc-hero__text p {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  margin: 0;
}
.tgvc-hero__text p strong { font-weight: 600; }
.tgvc-hero__text p + p {
  margin-top: 8px;
  font-size: 20px;
  opacity: 0.85;
}

/* ===== 3-COL GRID ===== */
.tgvc-grid {
  display: none; /* shown on desktop only */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1340px;
  margin: -60px auto 0;
  padding: 0 40px 60px;
  position: relative;
  z-index: 2;
  align-items: stretch;
  font-family: var(--font-body);
  color: var(--navy);
}
@media (max-width: 1100px) {
  .tgvc-grid { max-width: 100%; padding: 0 24px 60px; gap: 12px; }
}

/* ===== SIDEBAR ===== */
.tgvc-sidebar {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ===== GALLERY COLS ===== */
.tgvc-gallery-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  border-radius: 6px;
}
.tgvc-gal-item {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}
.tgvc-gal-item--grow {
  flex-grow: 1;
  min-height: 80px;
  max-height: 400px;
}
.tgvc-gal-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  object-fit: cover;
}
.tgvc-gal-item--grow img {
  height: 100%;
  object-fit: cover;
}
.tgvc-gal-item:hover img {
  transform: scale(1.015);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.tgvc-gal-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(20,48,66,0.82);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  pointer-events: none;
}

/* ===== SPECS ===== */
.tgvc-spec {
  max-width: 100%;
  margin: 0;
  border: none;
  padding: 28px 20px 12px;
  box-sizing: border-box;
}
.tgvc-spec-title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
  display: block;
  line-height: 1.3;
}
.tgvc-spec-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}
.tgvc-spec-row:last-of-type { border-bottom: none; }
.tgvc-spec-label {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  min-width: 90px;
  width: 90px;
  flex-shrink: 0;
}
.tgvc-spec-value {
  flex-grow: 1;
  text-align: left;
  color: #e2e8f0;
  line-height: 1.5;
  font-size: 13px;
}
.tgvc-opt-hdr {
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}
.tgvc-flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  margin-left: 4px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1px;
}
.tgvc-flag-gb { background-image: url('https://flagcdn.com/w40/gb.png'); }
.tgvc-flag-nl { background-image: url('https://flagcdn.com/w40/nl.png'); }

/* Veranda quick links */
.tgvc-veranda-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.tgvc-vlink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.tgvc-vlink:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(253,202,33,0.35);
}
.tgvc-vlink img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.tgvc-vlink__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.tgvc-vlink__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.tgvc-vlink__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.tgvc-vlink__arrow {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.tgvc-btn-wrap { text-align: center; margin-top: 20px; padding-bottom: 8px; }
.tgvc-btn {
  background-color: #2b98ff;
  color: #fff;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.tgvc-btn:hover { background-color: #0084ff; transform: translateY(-1px); }

/* ===== CONTACT ===== */
.tgvc-contact {
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 22px 20px;
  box-sizing: border-box;
}
.tgvc-gold-hdr {
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  margin-bottom: 18px;
  display: block;
  line-height: 1.3;
}
.tgvc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 20px auto;
  width: 80%;
}
.tgvc-sched {
  color: var(--gold);
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}
.tgvc-methods {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.tgvc-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  transition: background 0.25s, border-color 0.25s;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}
.tgvc-method:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
}
.tgvc-m-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tgvc-m-icon svg { width: 14px; height: 14px; }
.tgvc-m-icon.ph { background: rgba(43,152,255,0.15); }
.tgvc-m-icon.em { background: rgba(253,202,33,0.15); }
.tgvc-m-icon.wa { background: rgba(37,211,102,0.15); }
.tgvc-m-text { display: flex; flex-direction: column; min-width: 0; }
.tgvc-m-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9baa;
  margin-bottom: 1px;
  line-height: 1.2;
}
.tgvc-m-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== BLOG SECTION ===== */
.tgvc-blog {
  padding: 18px 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tgvc-blog-heading {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin: 0 0 4px;
}
.tgvc-blog-sub {
  text-align: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.7;
  margin: 0 0 14px;
  display: block;
}
.tgvc-blog-placeholder {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  flex: 1;
  margin-bottom: 14px;
}
.tgvc-blog-placeholder p { margin: 0; }
.tgvc-blog-footer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.tgvc-blog-footer a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.tgvc-blog-footer a:hover { text-decoration: underline; opacity: 0.8; }

/* ===== MOBILE CONTENT (hidden on desktop) ===== */
.mobile-content { display: none; }

.mob-hero { position: relative; }
.mob-hero img { width: 100%; display: block; }
.mob-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,48,66,0.1) 0%, rgba(20,48,66,0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 20px 24px;
  text-align: center;
  color: #fff;
}
.mob-hero__overlay p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.mob-hero__overlay p + p { margin-top: 4px; font-size: 13px; opacity: 0.85; }

.mob-ctas {
  padding: 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-ctas .btn { text-align: center; width: 100%; }
.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
}

.mob-products { padding: 24px 16px; }
.mob-products__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}
.mob-products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mob-prod-card {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}
.mob-prod-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.mob-prod-card span {
  position: absolute;
  bottom: 8px;
  left: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.mob-contact {
  background: var(--navy);
  color: #fff;
  padding: 28px 20px 100px; /* extra bottom for tab bar */
  text-align: center;
}
.mob-contact h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.mob-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.mob-contact__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-contact__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s;
}
.mob-contact__links a:hover { background: rgba(255,255,255,0.14); }

/* ===== MOBILE FIXED BOTTOM TABS ===== */
.mob-bottom-tabs {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.mob-bottom-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  gap: 3px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mob-bottom-tab svg { width: 22px; height: 22px; display: block; }
.mob-tab-quote { background: #0185ff; color: #fff; }
.mob-tab-quote svg { fill: #fff; }
.mob-tab-contact { background: var(--navy); color: #fff; }

/* ===== DESKTOP: show grid/hero, hide mobile content ===== */
@media (min-width: 921px) {
  .tgvc-hero { display: block; }
  .tgvc-grid { display: grid; }
  .mobile-content { display: none !important; }
  .mob-bottom-tabs { display: none !important; }
}

/* ===== MOBILE: hide grid/hero, show mobile content ===== */
@media (max-width: 920px) {
  .tgvc-hero { display: none !important; }
  .tgvc-grid { display: none !important; }
  .mobile-content { display: block; }
  .mob-bottom-tabs {
    display: flex;
    aria-hidden: false;
  }
}
