/*
Theme Name: Greek IPTV Hub
Theme URI: https://greekiptvhub.com/
Author: Greek IPTV Hub
Author URI: https://greekiptvhub.com/
Description: Σύγχρονο, γρήγορο και υψηλής μετατροπής WordPress theme για το Greek IPTV Hub — premium IPTV Greek εμπειρία για ελληνικά κανάλια, ταινίες, σειρές και αθλητικά. Futuristic 2026-grade UI/UX με ελληνική/αιγαιοπελαγίτικη ταυτότητα.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gih
Tags: business, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, two-columns, right-sidebar
*/

/* ==========================================================================
   1. DESIGN TOKENS — FLAG-CODED GREECE
   ========================================================================== */
:root {
  /* Backgrounds */
  --gih-bg: #FFFFFF;
  --gih-bg-soft: #F4F8FC;
  --gih-bg-soft-2: #EAF3FA;

  /* Headings & text */
  --gih-heading: #061B3A;
  --gih-heading-alt: #031126;
  --gih-text: #333333;
  --gih-text-soft: #4A5568;
  --gih-text-muted: #6B7280;

  /* Brand actions */
  --gih-blue: #0D5EAF;
  --gih-blue-dark: #084985;
  --gih-aegean: #00AEEF;
  --gih-aegean-dark: #008EC4;
  --gih-gold: #FFD166;
  --gih-gold-dark: #E8B84A;
  --gih-wa: #25D366;
  --gih-wa-dark: #1FB955;

  /* Utilities */
  --gih-border: #E2E8F0;
  --gih-border-soft: #EDF0F5;
  --gih-success: #16A34A;
  --gih-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --gih-shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --gih-shadow-md: 0 8px 28px rgba(0,0,0,0.10);
  --gih-shadow-lg: 0 20px 55px rgba(0,0,0,0.16);
  --gih-shadow-blue: 0 10px 28px rgba(13, 94, 175, 0.28);
  --gih-shadow-aegean: 0 10px 28px rgba(0, 174, 239, 0.28);

  /* Radii */
  --gih-r-xs: 6px;
  --gih-r-sm: 10px;
  --gih-r-md: 16px;
  --gih-r-lg: 24px;
  --gih-r-xl: 34px;

  /* Layout */
  --gih-max: 1220px;
  --gih-t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --gih-font-display: 'Manrope', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --gih-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--gih-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gih-text);
  background: var(--gih-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

a {
  color: var(--gih-blue);
  text-decoration: none;
  transition: color var(--gih-t);
}
a:hover { color: var(--gih-blue-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gih-font-display);
  color: var(--gih-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }
strong, b { color: var(--gih-heading); font-weight: 700; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: 0.4em; }

blockquote {
  margin: 0 0 1.2em;
  padding: 1em 1.4em;
  border-left: 4px solid var(--gih-aegean);
  background: var(--gih-bg-soft);
  border-radius: 0 var(--gih-r-sm) var(--gih-r-sm) 0;
  color: var(--gih-text-soft);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--gih-bg-soft-2);
  padding: 0.15em 0.45em;
  border-radius: var(--gih-r-xs);
  font-size: 0.9em;
}

::selection { background: var(--gih-aegean); color: #fff; }

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--gih-max);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.section-sm { padding: clamp(38px, 5vw, 60px) 0; position: relative; }
.section.bg-soft { background: var(--gih-bg-soft); }
.section.bg-soft-2 { background: var(--gih-bg-soft-2); }

.sect-heading { max-width: 760px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; }
.sect-heading.left { margin-inline: 0; text-align: left; }
.sect-heading h2 { margin-bottom: 0.35em; }
.sect-heading p { color: var(--gih-text-soft); font-size: 1.075rem; margin: 0; }

.sect-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gih-font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gih-blue);
  background: var(--gih-bg-soft-2);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sect-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gih-aegean);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.18);
}

.skip-link:focus {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 9999;
  background: var(--gih-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--gih-r-sm);
  clip: auto !important;
  width: auto; height: auto;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--gih-font-body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  transition: transform var(--gih-t), box-shadow var(--gih-t), background var(--gih-t), color var(--gih-t);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 140%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gih-blue), var(--gih-aegean));
  color: #fff;
  box-shadow: var(--gih-shadow-blue);
}
.btn-primary:hover { color: #fff; box-shadow: 0 16px 34px rgba(13,94,175,0.38); }

.btn-outline {
  background: transparent;
  color: var(--gih-heading);
  border-color: rgba(6,27,58,0.22);
}
.btn-outline:hover { color: var(--gih-blue); border-color: var(--gih-blue); background: var(--gih-bg-soft); }

.btn-yellow {
  background: linear-gradient(135deg, var(--gih-gold), var(--gih-gold-dark));
  color: var(--gih-heading-alt);
  box-shadow: 0 10px 28px rgba(232,184,74,0.32);
}
.btn-yellow:hover { color: var(--gih-heading-alt); }

.btn-wa {
  background: linear-gradient(135deg, var(--gih-wa), var(--gih-wa-dark));
  color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.32);
}
.btn-wa:hover { color: #fff; }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); color: #fff; }

.btn-lg { padding: 18px 36px; font-size: 1.06rem; }
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }
.btn-block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   5. HERO — homepage
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(54px, 8vw, 104px) 0 clamp(60px, 8vw, 110px);
  background:
    radial-gradient(820px 520px at 12% -8%, rgba(0,174,239,0.16), transparent 60%),
    radial-gradient(720px 560px at 92% 6%, rgba(13,94,175,0.16), transparent 60%),
    radial-gradient(900px 600px at 50% 120%, rgba(6,27,58,0.05), transparent 60%),
    var(--gih-bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230D5EAF' stroke-width='1' stroke-opacity='0.05'%3E%3Cpath d='M0 30h12v-12h12v12h12v-12h12v12h12'/%3E%3Cpath d='M30 0v12h-12v12h12v12h12v-12h-12v-12'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--gih-border);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  box-shadow: var(--gih-shadow-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gih-text-soft);
  margin-bottom: 22px;
}
.hero-pill .stars { display: inline-flex; gap: 2px; color: var(--gih-gold-dark); }
.hero-pill .stars svg { width: 15px; height: 15px; }
.hero-pill strong { color: var(--gih-heading); }

.hero h1 { margin-bottom: 0.5em; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gih-blue), var(--gih-aegean));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gih-blue);
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--gih-text-soft);
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--gih-heading);
  margin: 0;
}
.hero-checks svg { width: 19px; height: 19px; color: var(--gih-success); flex-shrink: 0; }

/* Hero media */
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -10% -8% -8% -8%;
  background: radial-gradient(closest-side, rgba(0,174,239,0.35), transparent 72%);
  filter: blur(28px);
  z-index: 0;
}
.hero-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--gih-r-lg);
  overflow: hidden;
  box-shadow: var(--gih-shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--gih-r-md);
  box-shadow: var(--gih-shadow-md);
}
.hero-badge .ico {
  width: 40px; height: 40px;
  border-radius: var(--gih-r-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gih-blue), var(--gih-aegean));
  color: #fff;
  flex-shrink: 0;
}
.hero-badge .ico svg { width: 21px; height: 21px; }
.hero-badge b { display: block; font-family: var(--gih-font-display); font-size: 1.02rem; color: var(--gih-heading); line-height: 1.1; }
.hero-badge span { font-size: 0.78rem; color: var(--gih-text-muted); }
.hero-badge.top-left { top: 22px; left: -18px; animation: gih-float 5s ease-in-out infinite; }
.hero-badge.bottom-right { bottom: 24px; right: -16px; animation: gih-float 5s ease-in-out infinite 1.4s; }

@keyframes gih-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ==========================================================================
   6. PAGE HERO — inner pages
   ========================================================================== */
.page-hero {
  position: relative;
  padding: clamp(54px, 7vw, 92px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
  background:
    radial-gradient(700px 420px at 18% 0%, rgba(0,174,239,0.14), transparent 60%),
    radial-gradient(700px 460px at 86% 12%, rgba(13,94,175,0.14), transparent 60%),
    var(--gih-bg-soft);
  overflow: hidden;
}
.page-hero h1 { margin: 12px 0 0.4em; }
.page-hero p { color: var(--gih-text-soft); font-size: 1.1rem; max-width: 680px; margin: 0 auto; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--gih-text-muted);
}
.breadcrumbs a { color: var(--gih-text-soft); font-weight: 600; }
.breadcrumbs a:hover { color: var(--gih-blue); }
.breadcrumbs .sep { color: var(--gih-border); }
.breadcrumbs [aria-current="page"] { color: var(--gih-blue); font-weight: 600; }

/* ==========================================================================
   7. TRUST BAR
   ========================================================================== */
.trust-bar { background: var(--gih-heading); padding: 18px 0; }
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
}
.trust-bar .ti {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
  font-weight: 600;
}
.trust-bar .ti svg { width: 18px; height: 18px; color: var(--gih-aegean); }
.trust-bar .ti strong { color: #fff; }
.trust-bar .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.28); }
@media (max-width: 640px){ .trust-bar .dot { display: none; } }

/* ==========================================================================
   8. PRICING CARDS
   ========================================================================== */
.pricing-cards .pcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-lg);
  padding: 30px 26px;
  box-shadow: var(--gih-shadow-sm);
  transition: transform var(--gih-t), box-shadow var(--gih-t);
  overflow: hidden;
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gih-blue), var(--gih-aegean));
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--gih-shadow-md); }

.pcard-name { font-family: var(--gih-font-display); font-size: 1.18rem; font-weight: 800; color: var(--gih-heading); margin-bottom: 4px; }
.pcard-tag { font-size: 0.85rem; color: var(--gih-text-muted); margin-bottom: 18px; }
.pcard-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pcard-price .cur { font-family: var(--gih-font-display); font-size: 1.4rem; font-weight: 800; color: var(--gih-blue); }
.pcard-price .amt { font-family: var(--gih-font-display); font-size: 2.6rem; font-weight: 800; color: var(--gih-heading); line-height: 1; letter-spacing: -0.03em; }
.pcard-price .per { font-size: 0.9rem; color: var(--gih-text-muted); }
.pcard-save {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gih-success);
  background: rgba(22,163,74,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pcard-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pcard-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.93rem; color: var(--gih-text-soft); margin-bottom: 11px; }
.pcard-features svg { width: 18px; height: 18px; color: var(--gih-success); flex-shrink: 0; margin-top: 1px; }

.pcard.best {
  border: none;
  transform: scale(1.04);
  box-shadow: var(--gih-shadow-lg);
  background:
    linear-gradient(var(--gih-bg), var(--gih-bg)) padding-box,
    linear-gradient(135deg, var(--gih-gold), var(--gih-gold-dark)) border-box;
  border: 2px solid transparent;
  z-index: 2;
}
.pcard.best::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--gih-r-lg);
  box-shadow: 0 18px 50px rgba(232,184,74,0.30);
  pointer-events: none;
  z-index: -1;
}
.pcard.best::before { background: linear-gradient(90deg, var(--gih-gold-dark), var(--gih-gold)); }
.pcard.best:hover { transform: scale(1.04) translateY(-6px); }
.pcard-ribbon {
  position: absolute;
  top: 18px; right: -34px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gih-gold), var(--gih-gold-dark));
  color: var(--gih-heading-alt);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 42px;
  box-shadow: var(--gih-shadow-sm);
}
@media (max-width: 980px){
  .pricing-cards .pcards { grid-template-columns: repeat(2, 1fr); }
  .pcard.best { transform: none; }
  .pcard.best:hover { transform: translateY(-6px); }
}
@media (max-width: 560px){
  .pricing-cards .pcards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   9. ICON GRID
   ========================================================================== */
.icon-grid .ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ig-card {
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-md);
  padding: 26px 22px;
  box-shadow: var(--gih-shadow-xs);
  transition: transform var(--gih-t), box-shadow var(--gih-t);
}
.ig-card:hover { transform: translateY(-4px); box-shadow: var(--gih-shadow-md); }
.ig-icon {
  width: 52px; height: 52px;
  border-radius: var(--gih-r-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(13,94,175,0.12), rgba(0,174,239,0.12));
  color: var(--gih-blue);
  margin-bottom: 16px;
}
.ig-icon svg { width: 26px; height: 26px; }
.ig-card h3 { font-size: 1.12rem; margin-bottom: 7px; }
.ig-card p { font-size: 0.92rem; color: var(--gih-text-soft); margin: 0; }
@media (max-width: 900px){ .icon-grid .ig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .icon-grid .ig-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   10. SPLIT — image + text
   ========================================================================== */
.split .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--gih-r-lg);
  overflow: hidden;
  box-shadow: var(--gih-shadow-md);
}
.split-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split-media .glow {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(0,174,239,0.3), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
.split-body h2 { margin-bottom: 0.5em; }
.split-body p { color: var(--gih-text-soft); }
.split-list { list-style: none; padding: 0; margin: 20px 0 26px; }
.split-list li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; color: var(--gih-text-soft); }
.split-list svg { width: 22px; height: 22px; color: var(--gih-aegean); flex-shrink: 0; margin-top: 1px; }
.split-list b { display: block; color: var(--gih-heading); }
@media (max-width: 860px){
  .split .split-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ==========================================================================
   11. STEPS ROW
   ========================================================================== */
.steps-row .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-md);
  padding: 30px 26px 26px;
  box-shadow: var(--gih-shadow-xs);
}
.step-num {
  position: absolute;
  top: -22px; left: 26px;
  width: 46px; height: 46px;
  border-radius: var(--gih-r-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gih-blue), var(--gih-aegean));
  color: #fff;
  font-family: var(--gih-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--gih-shadow-blue);
}
.step h3 { margin: 16px 0 8px; font-size: 1.15rem; }
.step p { font-size: 0.93rem; color: var(--gih-text-soft); margin: 0; }
@media (max-width: 820px){ .steps-row .steps { grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   12. DEVICE ROW
   ========================================================================== */
.device-row .devices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.device {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: 100px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gih-heading);
  box-shadow: var(--gih-shadow-xs);
  transition: transform var(--gih-t), border-color var(--gih-t);
}
.device:hover { transform: translateY(-3px); border-color: var(--gih-aegean); }
.device svg { width: 21px; height: 21px; color: var(--gih-blue); }

/* ==========================================================================
   13. CHANNEL SHOWCASE
   ========================================================================== */
.channel-showcase .cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cs-card {
  position: relative;
  border-radius: var(--gih-r-md);
  overflow: hidden;
  box-shadow: var(--gih-shadow-sm);
  background: var(--gih-heading);
  transition: transform var(--gih-t), box-shadow var(--gih-t);
}
.cs-card:hover { transform: translateY(-5px); box-shadow: var(--gih-shadow-md); }
.cs-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; opacity: 0.92; transition: transform 0.5s ease; }
.cs-card:hover img { transform: scale(1.06); }
.cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,17,38,0.92) 4%, rgba(3,17,38,0.35) 45%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.cs-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,174,239,0.85);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.cs-card h3 { color: #fff; font-size: 1.18rem; margin: 0 0 5px; }
.cs-card p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin: 0; }
@media (max-width: 880px){ .channel-showcase .cs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .channel-showcase .cs-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   14. STATS STRIP
   ========================================================================== */
.stats-strip .stats-panel {
  position: relative;
  border-radius: var(--gih-r-lg);
  padding: clamp(34px, 5vw, 52px) clamp(24px, 4vw, 44px);
  background:
    radial-gradient(600px 320px at 10% 0%, rgba(0,174,239,0.28), transparent 60%),
    radial-gradient(620px 360px at 92% 110%, rgba(13,94,175,0.40), transparent 60%),
    linear-gradient(135deg, var(--gih-heading-alt), var(--gih-heading));
  box-shadow: var(--gih-shadow-lg);
  overflow: hidden;
}
.stats-strip .stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat .num {
  font-family: var(--gih-font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff, var(--gih-aegean));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.stat .lbl { color: rgba(255,255,255,0.75); font-size: 0.92rem; font-weight: 600; margin-top: 4px; }
.stats-strip .stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 720px){
  .stats-strip .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .stats-strip .stat + .stat { border-left: none; }
}

/* ==========================================================================
   15. COMPARISON TABLE
   ========================================================================== */
.cmp .cmp-wrap { overflow-x: auto; border-radius: var(--gih-r-lg); box-shadow: var(--gih-shadow-sm); border: 1px solid var(--gih-border); }
.cmp table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--gih-bg); }
.cmp th, .cmp td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--gih-border-soft); }
.cmp thead th { font-family: var(--gih-font-display); font-weight: 800; color: var(--gih-heading); font-size: 1rem; background: var(--gih-bg-soft); }
.cmp thead th.hl { background: linear-gradient(135deg, var(--gih-blue), var(--gih-aegean)); color: #fff; border-radius: var(--gih-r-md) var(--gih-r-md) 0 0; }
.cmp tbody th { font-weight: 600; color: var(--gih-text-soft); }
.cmp td { text-align: center; }
.cmp td.feature { text-align: left; font-weight: 600; color: var(--gih-heading); }
.cmp td.col-hl { background: rgba(0,174,239,0.05); font-weight: 700; color: var(--gih-heading); }
.cmp .yes { color: var(--gih-success); }
.cmp .no { color: #CBD5E0; }
.cmp svg { width: 21px; height: 21px; display: inline-block; vertical-align: middle; }
.cmp tr:last-child td, .cmp tr:last-child th { border-bottom: none; }

/* ==========================================================================
   16. TESTIMONIAL GRID
   ========================================================================== */
.t-grid .tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tcard {
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-md);
  padding: 26px 24px;
  box-shadow: var(--gih-shadow-xs);
  display: flex;
  flex-direction: column;
}
.tcard .stars { display: flex; gap: 2px; color: var(--gih-gold-dark); margin-bottom: 14px; }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard p { color: var(--gih-text-soft); font-size: 0.96rem; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gih-blue), var(--gih-aegean));
  color: #fff;
  font-family: var(--gih-font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.tcard .who b { display: block; color: var(--gih-heading); font-size: 0.96rem; }
.tcard .who span { font-size: 0.82rem; color: var(--gih-text-muted); }
@media (max-width: 880px){ .t-grid .tg { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .t-grid .tg { grid-template-columns: 1fr; } }

/* ==========================================================================
   17. FAQ BLOCK (accordion)
   ========================================================================== */
.faq-block .faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-cat-title { font-size: 1.2rem; margin: 28px 0 14px; color: var(--gih-blue); }
.faq-cat-title:first-child { margin-top: 0; }
.faq-item {
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--gih-shadow-xs);
  transition: box-shadow var(--gih-t);
}
.faq-item.open { box-shadow: var(--gih-shadow-sm); border-color: rgba(0,174,239,0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--gih-font-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--gih-heading);
}
.faq-q .chev {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--gih-blue);
  transition: transform var(--gih-t);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 22px 20px; color: var(--gih-text-soft); }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   18. CTA BANNER
   ========================================================================== */
.cta-banner { padding: clamp(48px, 7vw, 80px) 0; }
.cta-inner {
  position: relative;
  border-radius: var(--gih-r-xl);
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(560px 320px at 14% 8%, rgba(0,174,239,0.34), transparent 60%),
    radial-gradient(520px 300px at 88% 96%, rgba(255,209,102,0.22), transparent 60%),
    linear-gradient(135deg, var(--gih-heading-alt), var(--gih-heading));
  box-shadow: var(--gih-shadow-lg);
}
.cta-inner h2 { color: #fff; margin-bottom: 0.5em; }
.cta-inner p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 620px; margin: 0 auto 28px; }
.cta-inner .btn-row { justify-content: center; }

/* ==========================================================================
   19. VALUES ROW (about)
   ========================================================================== */
.values-row .vg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vcard {
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-top: 4px solid var(--gih-aegean);
  border-radius: var(--gih-r-md);
  padding: 28px 24px;
  box-shadow: var(--gih-shadow-xs);
  transition: transform var(--gih-t), box-shadow var(--gih-t);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--gih-shadow-md); }
.vcard .ig-icon { background: linear-gradient(135deg, rgba(0,174,239,0.14), rgba(13,94,175,0.14)); }
.vcard h3 { font-size: 1.18rem; margin-bottom: 8px; }
.vcard p { font-size: 0.94rem; color: var(--gih-text-soft); margin: 0; }
@media (max-width: 860px){ .values-row .vg { grid-template-columns: 1fr; } }

/* ==========================================================================
   20. BIG QUOTE
   ========================================================================== */
.big-quote { text-align: center; }
.big-quote .container { max-width: 920px; }
.big-quote .qmark {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  color: var(--gih-aegean);
}
.big-quote blockquote {
  border: none;
  background: none;
  padding: 0;
  font-family: var(--gih-font-display);
  font-size: clamp(1.4rem, 3vw, 2.05rem);
  font-weight: 700;
  line-height: 1.32;
  color: var(--gih-heading);
  letter-spacing: -0.02em;
}
.big-quote cite { display: block; margin-top: 22px; font-style: normal; font-weight: 700; color: var(--gih-blue); }
.big-quote cite span { display: block; font-weight: 500; color: var(--gih-text-muted); font-size: 0.9rem; }

/* ==========================================================================
   21. HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow var(--gih-t);
}
.site-header.scrolled { box-shadow: var(--gih-shadow-sm); }
.header-bar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.site-logo img { height: 46px; width: auto; }
.site-logo .txt { font-family: var(--gih-font-display); font-weight: 800; font-size: 1.15rem; color: var(--gih-heading); letter-spacing: -0.02em; }
.site-logo .txt span { color: var(--gih-blue); }

.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: block;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--gih-heading);
  border-radius: var(--gih-r-sm);
  transition: background var(--gih-t), color var(--gih-t);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--gih-blue); background: var(--gih-bg-soft); }
.primary-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
}
.primary-nav .sub-menu {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-md);
  box-shadow: var(--gih-shadow-md);
  padding: 8px;
  min-width: 210px;
  display: none;
  flex-direction: column;
  margin-top: 8px;
}
.primary-nav li { position: relative; }
.primary-nav li:hover > .sub-menu { display: flex; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--gih-border);
  background: #fff;
  border-radius: var(--gih-r-sm);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--gih-heading);
  border-radius: 2px;
  transition: transform var(--gih-t), opacity var(--gih-t), top var(--gih-t);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 980px){
  .primary-nav, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.open { display: block; }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 90px;
  left: 16px; right: 16px;
  background: #fff;
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-lg);
  box-shadow: var(--gih-shadow-lg);
  padding: 16px;
  z-index: 99;
}
.mobile-nav ul { list-style: none; margin: 0 0 12px; padding: 0; }
.mobile-nav a { display: block; padding: 12px 14px; font-weight: 600; color: var(--gih-heading); border-radius: var(--gih-r-sm); }
.mobile-nav a:hover, .mobile-nav .current-menu-item > a { background: var(--gih-bg-soft); color: var(--gih-blue); }
.mobile-nav .sub-menu { padding-left: 12px; }
.mobile-nav .btn { width: 100%; }

/* ==========================================================================
   22. FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--gih-heading-alt);
  color: rgba(255,255,255,0.75);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gih-blue), var(--gih-aegean) 55%, var(--gih-gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--gih-r-md);
  margin-bottom: 18px;
}
.footer-logo-chip img { height: 40px; width: auto; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col p { font-size: 0.92rem; line-height: 1.7; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gih-aegean); }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gih-aegean); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--gih-r-sm);
  color: #fff;
}
.footer-social a:hover { background: var(--gih-blue); color: #fff; }
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.86rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--gih-aegean); }
.footer-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.5); padding-bottom: 22px; max-width: 920px; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gih-wa), var(--gih-wa-dark));
  color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  transition: transform var(--gih-t);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gih-wa);
  z-index: -1;
  animation: gih-pulse 2.4s ease-out infinite;
}
@keyframes gih-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ==========================================================================
   23. BLOG
   ========================================================================== */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-md);
  overflow: hidden;
  box-shadow: var(--gih-shadow-xs);
  transition: transform var(--gih-t), box-shadow var(--gih-t);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--gih-shadow-md); }
.blog-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gih-bg-soft-2); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 10px; align-items: center; font-size: 0.8rem; color: var(--gih-text-muted); margin-bottom: 10px; }
.blog-cat { color: var(--gih-blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.blog-card h3 a { color: var(--gih-heading); }
.blog-card h3 a:hover { color: var(--gih-blue); }
.blog-card p { font-size: 0.92rem; color: var(--gih-text-soft); flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; margin-top: 8px; }
.read-more svg { width: 16px; height: 16px; transition: transform var(--gih-t); }
.read-more:hover svg { transform: translateX(4px); }
@media (max-width: 880px){ .blog-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .blog-cards { grid-template-columns: 1fr; } }

/* Single post */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: start;
}
.post-featured { border-radius: var(--gih-r-lg); overflow: hidden; margin-bottom: 28px; box-shadow: var(--gih-shadow-md); }
.post-featured img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-meta-row { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; color: var(--gih-text-muted); font-size: 0.88rem; margin-bottom: 22px; }
.post-meta-row .pm { display: inline-flex; align-items: center; gap: 7px; }
.post-meta-row svg { width: 16px; height: 16px; color: var(--gih-blue); }
.prose { font-size: 1.04rem; line-height: 1.75; color: var(--gih-text); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose img { border-radius: var(--gih-r-md); margin: 1.4em 0; }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gih-border); }
.post-tags a {
  font-size: 0.82rem; font-weight: 600;
  background: var(--gih-bg-soft);
  border: 1px solid var(--gih-border);
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--gih-text-soft);
}
.post-tags a:hover { border-color: var(--gih-blue); color: var(--gih-blue); }

.post-sidebar { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-cta {
  border-radius: var(--gih-r-md);
  padding: 26px 22px;
  background: linear-gradient(135deg, var(--gih-heading-alt), var(--gih-heading));
  color: #fff;
  text-align: center;
}
.sidebar-cta h4 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-bottom: 18px; }
.sidebar-widget { background: var(--gih-bg); border: 1px solid var(--gih-border); border-radius: var(--gih-r-md); padding: 22px; }
.sidebar-widget h4 { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget li { padding: 8px 0; border-bottom: 1px solid var(--gih-border-soft); }
.sidebar-widget li:last-child { border-bottom: none; }

.related-posts { margin-top: 56px; }
@media (max-width: 900px){
  .single-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

/* ==========================================================================
   24. CONTACT & FORMS
   ========================================================================== */
.contact-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; align-items: start; }
.contact-info-card {
  background: linear-gradient(160deg, var(--gih-heading-alt), var(--gih-heading));
  color: #fff;
  border-radius: var(--gih-r-lg);
  padding: 38px 32px;
}
.contact-info-card h2 { color: #fff; }
.contact-info-card > p { color: rgba(255,255,255,0.78); }
.contact-info-list { list-style: none; padding: 0; margin: 26px 0 0; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-list .ci-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--gih-r-sm);
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  color: var(--gih-aegean);
}
.contact-info-list .ci-ico svg { width: 21px; height: 21px; }
.contact-info-list b { display: block; color: #fff; }
.contact-info-list a, .contact-info-list span { color: rgba(255,255,255,0.8); }
.contact-info-list a:hover { color: var(--gih-aegean); }

.contact-form-card { background: var(--gih-bg); border: 1px solid var(--gih-border); border-radius: var(--gih-r-lg); padding: 38px 32px; box-shadow: var(--gih-shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--gih-heading); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-sm);
  font-family: var(--gih-font-body);
  font-size: 0.96rem;
  color: var(--gih-text);
  background: var(--gih-bg);
  transition: border-color var(--gih-t), box-shadow var(--gih-t);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gih-blue);
  box-shadow: 0 0 0 3px rgba(13,94,175,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.map-placeholder {
  margin-top: 30px;
  border-radius: var(--gih-r-lg);
  overflow: hidden;
  border: 1px solid var(--gih-border);
  background: var(--gih-bg-soft-2);
  aspect-ratio: 21 / 7;
  display: grid;
  place-items: center;
  color: var(--gih-text-muted);
  position: relative;
}
.map-placeholder svg { width: 38px; height: 38px; color: var(--gih-blue); margin-bottom: 8px; }
@media (max-width: 820px){ .contact-split { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   25. LEGAL PAGES
   ========================================================================== */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-card {
  background: var(--gih-bg);
  border: 1px solid var(--gih-border);
  border-radius: var(--gih-r-lg);
  padding: 52px;
  box-shadow: var(--gih-shadow-sm);
}
.legal-meta {
  background: var(--gih-bg-soft);
  border-left: 4px solid var(--gih-blue);
  border-radius: 0 var(--gih-r-sm) var(--gih-r-sm) 0;
  padding: 18px 22px;
  margin-bottom: 34px;
  font-size: 0.92rem;
  color: var(--gih-text-soft);
}
.legal-meta b { color: var(--gih-heading); }
.legal-card h2 { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--gih-border); font-size: 1.5rem; }
.legal-card h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-card h3 { margin-top: 26px; }
.legal-card ul { color: var(--gih-text-soft); }
@media (max-width: 600px){ .legal-card { padding: 30px 22px; } }

/* ==========================================================================
   26. PAGINATION
   ========================================================================== */
.gih-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.gih-pagination a, .gih-pagination span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  justify-content: center;
  border-radius: var(--gih-r-sm);
  border: 1px solid var(--gih-border);
  font-weight: 600;
  color: var(--gih-heading);
  background: var(--gih-bg);
}
.gih-pagination a:hover { border-color: var(--gih-blue); color: var(--gih-blue); }
.gih-pagination .current { background: linear-gradient(135deg, var(--gih-blue), var(--gih-aegean)); color: #fff; border-color: transparent; }

/* ==========================================================================
   27. UTILITIES
   ========================================================================== */
.gih-text-center { text-align: center; }
.gih-mt-0 { margin-top: 0 !important; }
.gih-mb-0 { margin-bottom: 0 !important; }
.gih-mw-720 { max-width: 720px; margin-inline: auto; }
.gih-hide-mobile { }
@media (max-width: 768px){
  .gih-hide-mobile { display: none !important; }
  .hero-badge { display: none !important; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin: 0 auto; }
}

.gih-searchrow { display: flex; gap: 10px; margin: 0; }
.gih-mt-1 { margin-top: 22px; }
.gih-mt-2 { margin-top: 28px; }
.gih-mt-3 { margin-top: 48px; }
.gih-text-left { text-align: left; }
.gih-fine { color: var(--gih-text-muted); font-size: 0.9rem; }
.btn-row.center { justify-content: center; }

/* Comments */
.comments-area { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gih-border); }
.comments-title { font-size: 1.4rem; }
.comment-list { list-style: none; padding: 0; }
.comment-notes { color: var(--gih-text-muted); font-size: 0.9rem; }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; color: var(--gih-text-soft); }
.checklist svg { width: 22px; height: 22px; color: var(--gih-success); flex-shrink: 0; margin-top: 1px; }
.checklist b { color: var(--gih-heading); }

.lead { font-size: 1.12rem; color: var(--gih-text-soft); }
.eager-img { }

/* Scroll reveal (fail-safe: visible by default) */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* WP core helpers */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0;
  position: absolute; word-wrap: normal !important;
}
.aligncenter { display: block; margin-inline: auto; }
.alignleft { float: left; margin: 0 1.4em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.4em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gih-text-muted); text-align: center; margin-top: 6px; }
.sticky, .gallery-caption, .bypostauthor { }

@media print {
  .site-header, .site-footer, .wa-float, .cta-banner { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
