/*
Theme Name: ROHS
Theme URI: https://www.rohs.ro
Author: Romania HidroService
Author URI: https://www.rohs.ro
Description: Tema oficială Romania HidroService – componente hidraulice și pneumatice de calitate.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: rohs
*/

/* ============================================================
   GOOGLE FONTS
   Loaded via wp_enqueue_style() in functions.php (rohs-fonts)
   with preconnect + display=swap — non-render-blocking.
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --navy:      #0F172A;
  --navy-2:    #1E2D45;
  --navy-3:    #1E3A8A;
  --blue:      #1D4ED8;
  --blue-2:    #3B82F6;
  --blue-3:    #DBEAFE;
  --blue-dark: #1E3A8A;
  --gold:      #F59E0B;
  --gold-2:    #FCD34D;
  --white:     #FFFFFF;
  --bg:        #F0F6FF;
  --text:      #0F172A;
  --muted:     #475569;
  --border:    #C7D7F5;
  --card-bg:   #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(30,74,216,.08), 0 1px 2px rgba(30,74,216,.06);
  --shadow-md: 0 4px 16px rgba(30,74,216,.10), 0 2px 6px rgba(30,74,216,.07);
  --shadow-lg: 0 10px 40px rgba(30,74,216,.14), 0 4px 12px rgba(30,74,216,.09);
  --shadow-xl: 0 24px 64px rgba(30,74,216,.18), 0 8px 24px rgba(30,74,216,.12);

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  /* Spacing (8px grid) */
  --sp-1:  0.5rem;   /*  8px */
  --sp-2:  1rem;     /* 16px */
  --sp-3:  1.5rem;   /* 24px */
  --sp-4:  2rem;     /* 32px */
  --sp-6:  3rem;     /* 48px */
  --sp-8:  4rem;     /* 64px */
  --sp-12: 6rem;     /* 96px */
  --sp-16: 8rem;     /* 128px */

  /* Layout */
  --container: 1200px;
  --container-wide: 1400px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --transition: .25s var(--ease);
  --transition-slow: .45s var(--ease);
}

/* ============================================================
   CSS RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* Visible keyboard focus for interactive elements (mouse clicks stay clean) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue-2);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

p {
  margin-bottom: var(--sp-2);
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.section {
  padding-block: var(--sp-16);
}

.section-sm {
  padding-block: var(--sp-8);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 2px;
  width: 28px;
  background: var(--gold);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}

.section-heading span {
  color: var(--blue);
}

.section-heading-light {
  color: var(--white);
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.text-center .section-subheading {
  margin-inline: auto;
}

.text-center .section-label {
  justify-content: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  min-height: 48px;            /* comfortable tap target (WCAG) */
  line-height: 1.2;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

/* No lift on touch devices — avoids sticky :hover after tap */
@media (hover: none) {
  .btn:hover { transform: none; }
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,86,219,.35);
}

.btn-primary:hover {
  background: var(--blue-2);
  box-shadow: 0 8px 24px rgba(26,86,219,.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(245,158,11,.30);
}

.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 8px 24px rgba(245,158,11,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}

.btn-outline:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}

.btn-ghost::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-ghost:hover {
  color: var(--blue-2);
  transform: none;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Static content — no scroll-triggered fade/slide animations */
.reveal,
.reveal.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4,
.reveal-delay-5,
.reveal-delay-6 { transition-delay: 0s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-slow), box-shadow var(--transition-slow), padding var(--transition);
  padding-block: 1rem;
  background: transparent;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,14,28,.82) 0%, rgba(7,14,28,.34) 62%, rgba(7,14,28,0) 100%),
    radial-gradient(circle at top right, rgba(59,130,246,.16), transparent 36%);
  opacity: 1;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.site-header.scrolled {
  background: rgba(7,14,28,.92);
  box-shadow: 0 18px 50px rgba(7,14,28,.22);
  padding-block: .7rem;
  backdrop-filter: blur(18px);
}

.site-header.scrolled::before {
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  max-width: var(--container-wide);
  margin-inline: auto;
  padding: .95rem 1.35rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(9,17,33,.44);
  box-shadow: 0 18px 44px rgba(7,14,28,.20);
  backdrop-filter: blur(18px);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
  text-decoration: none;
}

/* ── Logo ring (header) ─────────────────────────────── */
.logo-ring {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 3px 12px rgba(0,0,0,.40);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.header-logo:hover .logo-ring {
  border-color: rgba(245,158,11,.60);
  box-shadow: 0 0 0 3px rgba(245,158,11,.18), 0 5px 18px rgba(0,0,0,.45);
  transform: translateY(-1px);
}
.logo-ring img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  pointer-events: none;
}

/* ── Footer logo ────────────────────────────────────── */
.logo-mark-wrap,
.logo-mark-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo-mark-wrap img,
.logo-mark-footer img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: left center;
  border: 2px solid rgba(255,255,255,.18);
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* ── Logo text (header) ─────────────────────────────── */
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: .61rem;
  font-weight: 600;
  color: rgba(255,255,255,.50);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.nav-list li a {
  display: block;
  padding: .65rem .95rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a,
.nav-list li.current-page-ancestor a {
  color: var(--white);
  background: rgba(255,255,255,.10);
}

.nav-list li.current-menu-item a {
  color: var(--gold);
  background: rgba(245,158,11,.14);
  box-shadow: inset 0 0 0 1px rgba(245,158,11,.18);
}

.header-nav .menu-item-language,
.header-nav .lang-item,
.header-nav .pll-parent-menu-item,
.header-nav .nav-list > li:has(img),
.mobile-nav-list .lang-item,
.mobile-nav-list .menu-item-language,
.mobile-nav-list .pll-parent-menu-item {
  display: none !important;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  cursor: pointer;
}

.mobile-toggle:hover {
  background: rgba(255,255,255,.15);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.mobile-toggle span:nth-child(1) { width: 100%; }
.mobile-toggle span:nth-child(2) { width: 75%; }
.mobile-toggle span:nth-child(3) { width: 100%; }

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.mobile-nav.open {
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-list {
  padding: var(--sp-2) var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mobile-nav-list li a {
  display: block;
  padding: .75rem 1rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-list li a:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.rohs.ro/wp-content/uploads/2020/12/S2.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.90) 0%,
    rgba(30,58,138,.70) 50%,
    rgba(29,78,216,.50) 100%
  );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,17,31,.70) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
  padding-top: 7rem;
  padding-bottom: var(--sp-12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.35);
  color: var(--gold-2);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .375rem 1rem;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--sp-3);
  max-width: 800px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 500;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--white);
  padding-block: var(--sp-16);
}

.services-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26,86,219,.20);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,17,31,.50) 0%, transparent 60%);
  pointer-events: none;
}

.service-card-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: var(--blue);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: 4px;
}

.service-card-body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
  transition: color var(--transition);
}

.service-card:hover .service-card-title {
  color: var(--blue);
}

.service-card-desc {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-3);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--blue);
  transition: color var(--transition), gap var(--transition);
  font-family: var(--font-heading);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card:hover .service-card-link {
  color: var(--blue-2);
  gap: .625rem;
}

.service-card:hover .service-card-link svg {
  transform: translateX(3px);
}

/* ============================================================
   STATS / COUNTERS SECTION
   ============================================================ */
.stats-section {
  background: var(--navy-2);
  padding-block: var(--sp-12);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,86,219,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(245,158,11,.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: rgba(255,255,255,.025);
  padding: var(--sp-8) var(--sp-4);
  text-align: center;
  transition: background var(--transition);
}

.stat-item:hover {
  background: rgba(255,255,255,.05);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .125rem;
  margin-bottom: .75rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: .9375rem;
  color: rgba(255,255,255,.60);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.4;
}

.stat-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--gold));
  border-radius: 2px;
  margin: .75rem auto 0;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--bg);
  padding-block: var(--sp-16);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--blue), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-quote-icon {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  opacity: .07;
  color: var(--blue);
}

.testimonial-quote-icon svg {
  width: 64px;
  height: 64px;
}

.testimonial-stars {
  display: flex;
  gap: .25rem;
  margin-bottom: var(--sp-2);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: currentColor;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-4);
}

.testimonial-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--blue);
  opacity: .25;
  line-height: 0;
  vertical-align: -1rem;
  margin-right: .125rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info {}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.testimonial-author-role {
  font-size: .8125rem;
  color: var(--muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--blue) 50%, var(--navy-3) 100%);
  padding-block: var(--sp-16);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-eyebrow {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: var(--sp-2);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}

.cta-description {
  color: rgba(255,255,255,.75);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.80);
  font-size: 1rem;
  font-weight: 600;
  padding: .875rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.20);
  transition: background var(--transition), border-color var(--transition);
}

.cta-phone:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.40);
  color: var(--white);
}

.cta-phone svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.18), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #081426 100%);
  color: rgba(255,255,255,.75);
  position: relative;
}

.site-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(to right, var(--blue), var(--gold), var(--blue));
}

.footer-top {
  padding-block: 5.5rem 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-bottom: 1.1rem;
  text-decoration: none;
}

.site-footer .logo-mark-wrap {
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.site-footer .logo-mark-wrap img,
.site-footer .logo-mark-footer img {
  height: 78px;
  width: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.footer-about {
  font-size: .98rem;
  line-height: 1.8;
  color: rgba(255,255,255,.66);
  margin-bottom: 1.6rem;
}

.footer-facebook-cta {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.1rem;
  background: #1877F2;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.footer-facebook-cta:hover {
  background: #0f5fcc;
  transform: translateY(-2px);
}

.footer-facebook-cta > svg:first-child {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.footer-facebook-cta-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  line-height: 1.3;
}

.footer-facebook-cta-text strong {
  font-size: .9375rem;
  font-weight: 700;
}

.footer-facebook-cta-text small {
  font-size: .8125rem;
  color: rgba(255,255,255,.85);
}

.footer-facebook-cta-arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: .85;
}

.footer-youtube-cta {
  margin-top: .7rem;
  background: #a92222;
}

.footer-youtube-cta:hover {
  background: #8c1a1a;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--sp-3);
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-nav-list li {
  margin-bottom: .625rem;
}

.footer-nav-list a {
  font-size: .9375rem;
  color: rgba(255,255,255,.60);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--transition), gap var(--transition);
}

.footer-nav-list a::before {
  content: '→';
  font-size: .75rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.footer-nav-list a:hover {
  color: var(--white);
  gap: .75rem;
}

.footer-nav-list a:hover::before {
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(26,86,219,.20);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  color: var(--blue-2);
}

.footer-contact-text {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

.footer-contact-text a {
  color: rgba(255,255,255,.80);
  transition: color var(--transition);
}

.footer-contact-text a:hover {
  color: var(--gold);
}

.footer-schedule-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer-schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9375rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer-schedule-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-schedule-day {
  color: rgba(255,255,255,.60);
}

.footer-schedule-time {
  color: var(--gold-2);
  font-weight: 600;
  font-size: .875rem;
}

.footer-schedule-time.closed {
  color: rgba(255,255,255,.35);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 1.35rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: .875rem;
  color: rgba(255,255,255,.40);
}

.footer-copyright a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-copyright a:hover {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-4);
}

.footer-bottom-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.40);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,.70);
}

.footer-urgent-box {
  margin-top: 1.5rem;
  padding: 1.1rem 1.15rem;
  background: rgba(26,86,219,.13);
  border-radius: 16px;
  border: 1px solid rgba(59,130,246,.18);
}

.footer-urgent-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .55rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.footer-urgent-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 9rem var(--sp-4) var(--sp-8);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231A56DB' fill-opacity='0.06'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
}

.page-hero-layout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero-copy {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: rgba(255,255,255,.30);
}

.breadcrumb-current {
  color: var(--gold);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.page-hero-subtitle {
  margin-top: 1rem;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content-section {
  background: var(--white);
  padding-block: var(--sp-12);
}

.page-content-inner {
  max-width: 800px;
  margin-inline: auto;
}

.page-content-inner-about {
  max-width: 900px;
}

.page-featured-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-6);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-featured-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.page-entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
}

.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4 {
  font-family: var(--font-heading);
  color: var(--text);
  margin: var(--sp-6) 0 var(--sp-2);
}

.page-entry-content h2 { font-size: 1.875rem; }
.page-entry-content h3 { font-size: 1.5rem; }
.page-entry-content h4 { font-size: 1.25rem; }

.page-entry-content p { margin-bottom: var(--sp-3); }

.page-entry-content ul,
.page-entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: var(--sp-3);
}

.page-entry-content ul { list-style: disc; }
.page-entry-content ol { list-style: decimal; }

.page-entry-content li {
  margin-bottom: .5rem;
  color: var(--text);
}

.page-entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-entry-content a:hover {
  color: var(--blue-2);
}

.page-entry-content img {
  border-radius: var(--radius-md);
  margin-block: var(--sp-4);
  box-shadow: var(--shadow-md);
}

.page-entry-content blockquote {
  border-left: 4px solid var(--blue);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(26,86,219,.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: var(--sp-4);
  font-style: italic;
  color: var(--muted);
}

.page-hero-about {
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.15), transparent 24%),
    linear-gradient(135deg, #07111f 0%, #13305d 62%, #1d4ed8 100%);
}

.page-hero-gallery {
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(59,130,246,.16), transparent 28%),
    linear-gradient(135deg, #08111f 0%, #14345f 56%, #2156b8 100%);
}

.page-hero-layout-about,
.page-hero-layout-contact {
  align-items: flex-end;
}

.page-hero-layout-gallery {
  align-items: flex-end;
}

.page-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  min-width: 360px;
}

.page-hero-fact {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.page-hero-fact strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: .25rem;
}

.page-hero-fact span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  line-height: 1.45;
}

.about-intro-section {
  padding: 4.75rem 0 1rem;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.about-intro-copy,
.about-intro-points {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(199,215,245,.7);
  box-shadow: 0 18px 44px rgba(15,23,42,.07);
}

.about-intro-points {
  display: grid;
  gap: 1rem;
}

.about-intro-point {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.about-intro-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-intro-point h3 {
  font-size: 1rem !important;
  margin-bottom: .35rem !important;
}

.about-intro-point p {
  color: #64748b !important;
  font-size: .92rem !important;
}

.page-content-section-about {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding-top: 2rem;
}

.gallery-intro-section {
  padding: 4.5rem 0 1rem;
  background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%);
}

.gallery-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-intro-copy,
.gallery-intro-notes {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(199,215,245,.72);
  box-shadow: 0 18px 44px rgba(15,23,42,.07);
}

.gallery-intro-notes {
  display: grid;
  gap: 1rem;
}

.gallery-intro-note {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.gallery-intro-note:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gallery-intro-note h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}

.gallery-intro-note p {
  color: #64748b;
  font-size: .94rem;
  line-height: 1.7;
}

.page-content-section-gallery {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding-top: 2rem;
}

.page-content-inner-gallery {
  max-width: 1080px;
}

.page-content-inner-gallery .page-entry-content {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(199,215,245,.72);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(15,23,42,.06);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
}

.page-content-inner-gallery .page-entry-content > h2,
.page-content-inner-gallery .page-entry-content > h3,
.page-content-inner-gallery .page-entry-content > h4 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.35rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.page-content-inner-gallery .page-entry-content > h2:not(:first-child),
.page-content-inner-gallery .page-entry-content > h3:not(:first-child),
.page-content-inner-gallery .page-entry-content > h4:not(:first-child) {
  margin-top: 3.25rem;
}

.page-content-inner-gallery .page-entry-content > h2::after,
.page-content-inner-gallery .page-entry-content > h3::after,
.page-content-inner-gallery .page-entry-content > h4::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin: .9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.page-content-inner-gallery .page-entry-content p {
  color: #475569;
}

.page-content-inner-gallery .page-entry-content img {
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(15,23,42,.12);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.page-content-inner-gallery .page-entry-content a:hover img {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(15,23,42,.16);
  filter: saturate(1.04);
}

.page-content-inner-gallery .gallery,
.page-content-inner-gallery .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .8rem;
  margin: 1.5rem 0 2.5rem;
}

.page-content-inner-gallery .gallery-item,
.page-content-inner-gallery .wp-block-image,
.page-content-inner-gallery .blocks-gallery-item {
  margin: 0;
}

.page-content-inner-gallery .gallery img,
.page-content-inner-gallery .wp-block-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content-inner-about .page-entry-content {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(199,215,245,.72);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(15,23,42,.06);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
}

.page-content-inner-about .page-entry-content > p:first-of-type {
  font-size: 1.08rem;
  color: #475569;
}

.page-content-inner-about .page-entry-content > h2,
.page-content-inner-about .page-entry-content > h3 {
  margin-top: 2.75rem;
}

.page-content-inner-about .page-entry-content iframe,
.page-content-inner-about .page-entry-content video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
  margin: 1.25rem 0 2rem;
}

/* Other services (inner pages) */
.other-services-section {
  background: var(--bg);
  padding-block: var(--sp-12);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.other-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.other-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.other-service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(26,86,219,.10), rgba(26,86,219,.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: background var(--transition);
}

.other-service-card:hover .other-service-icon {
  background: linear-gradient(135deg, rgba(26,86,219,.18), rgba(26,86,219,.10));
}

.other-service-name {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.other-service-card:hover .other-service-name {
  color: var(--blue);
}

/* ============================================================
   BLOG / SINGLE
   ============================================================ */
.single-post-content {
  max-width: 760px;
  margin-inline: auto;
  padding-block: var(--sp-12);
  padding-inline: var(--sp-4);
}

.post-meta {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  color: var(--muted);
}

.post-meta-item svg {
  width: 16px;
  height: 16px;
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) var(--sp-4);
}

.error-404-number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy-3), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}

.error-404-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.error-404-desc {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 420px;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}

/* ============================================================
   INDEX / ARCHIVE
   ============================================================ */
.archive-section {
  padding-block: var(--sp-12);
  background: var(--bg);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.archive-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.archive-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.archive-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.06);
}

.archive-card-body {
  padding: var(--sp-3);
}

.archive-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
  transition: color var(--transition);
}

.archive-card:hover .archive-card-title {
  color: var(--blue);
}

.archive-card-excerpt {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}

/* ============================================================
   MISC
   ============================================================ */
#page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#page-wrapper > *:not(.site-footer) {
  flex: 1;
}

.wp-caption,
.wp-caption-text { max-width: 100%; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .gallery-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-16: 5rem;
    --sp-12: 4rem;
  }

  .site-footer .logo-mark-wrap img,
  .site-footer .logo-mark-footer img {
    height: 70px;
  }

  .site-header {
    top: .65rem;
    padding-inline: .7rem;
  }

  .header-inner {
    gap: .9rem;
    padding: .85rem 1rem;
    border-radius: 18px;
  }

  .header-nav { display: none; }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .btn.btn-gold.header-cta-desktop {
    display: none;
  }

  .logo-tagline {
    display: none;
  }

  .page-hero {
    padding: 8.5rem var(--sp-3) 4.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: var(--sp-4);
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-2);
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  .cta-phone {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .page-hero-layout,
  .page-hero-layout-about,
  .page-hero-layout-contact,
  .page-hero-layout-gallery {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
  }

  .page-hero-facts {
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .page-hero-title {
    line-height: 1.08;
  }

  .page-hero-subtitle {
    max-width: none;
    font-size: .975rem;
    line-height: 1.7;
  }

  .page-content-inner-gallery .page-entry-content,
  .page-content-inner-about .page-entry-content {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .page-content-inner-gallery .gallery,
  .page-content-inner-gallery .wp-block-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container,
  .container-wide {
    padding-inline: var(--sp-2);
  }

  .site-header {
    top: .45rem;
    padding-inline: .4rem;
  }

  .header-inner {
    padding: .75rem .85rem;
    gap: .75rem;
  }

  .header-logo {
    min-width: 0;
  }

  .logo-name {
    font-size: 1.15rem;
  }

  .page-hero {
    padding: 7.75rem var(--sp-2) 4rem;
  }

  .breadcrumb {
    font-size: .78rem;
    gap: .35rem;
  }

  .page-hero-title {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .page-hero-subtitle {
    font-size: .94rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-md);
  }

  .testimonial-card {
    padding: var(--sp-3);
  }

  .hero-stats {
    display: none;
  }

  .hero-actions .btn,
  .page-cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-cta-strip-actions {
    width: 100%;
  }

  .footer-schedule-list {
    gap: .875rem;
  }
}

/* ============================================================
   DROPDOWN SUBMENUS
   ============================================================ */
.nav-list > li {
  position: relative;
}

.nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--blue-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 36px rgba(0,0,0,.30), 0 2px 8px rgba(0,0,0,.15);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition),
              visibility var(--transition);
  z-index: 200;
  border: 1px solid rgba(255,255,255,.10);
}

.nav-list .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 1.25rem;
  width: 10px;
  height: 10px;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,.10);
  border-left: 1px solid rgba(255,255,255,.10);
  transform: rotate(45deg);
}

.nav-list > li:hover > .sub-menu,
.nav-list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list .sub-menu li a {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background var(--transition), color var(--transition),
              padding-left var(--transition);
  white-space: nowrap;
}

.nav-list .sub-menu li a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding-left: 1.25rem;
}

.nav-list li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-list li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: .1rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-list li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg) translateY(1px);
}

/* Mobile sub-menu */
.mobile-nav-list .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-list .sub-menu {
  padding-left: 1rem;
  padding-bottom: .375rem;
  border-left: 2px solid rgba(255,255,255,.12);
  margin-left: .75rem;
  margin-top: .25rem;
}

.mobile-nav-list .sub-menu li a {
  padding: .5rem 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}

.mobile-nav-list .sub-menu li a:hover {
  color: var(--white);
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-switcher ul,
.lang-switcher .pll-parent-menu-item {
  display: flex;
  align-items: center;
  gap: .125rem;
  padding: .25rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  list-style: none;
}

.lang-switcher li {
  list-style: none;
}

.lang-switcher li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: .25rem .625rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: 1;
  min-width: 32px;
  text-align: center;
}

.lang-switcher li.current-lang a,
.lang-switcher li a:hover {
  background: var(--blue);
  color: var(--white);
}

.lang-switcher li img {
  display: inline;
  width: 16px;
  height: auto;
  border-radius: 2px;
  margin: 0;
}

@media (max-width: 768px) {
  .lang-switcher {
    display: none;
  }
  .mobile-lang-switcher {
    padding: 1rem 1rem .75rem;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: .25rem;
  }
  .mobile-lang-switcher ul,
  .mobile-lang-switcher .pll-parent-menu-item {
    display: flex;
    gap: .5rem;
    list-style: none;
  }
  .mobile-lang-switcher li {
    flex: 1;
  }
  .mobile-lang-switcher li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .6rem 1rem;
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
  }
  .mobile-lang-switcher li a img {
    display: none;
  }
  .mobile-lang-switcher li.current-lang a,
  .mobile-lang-switcher li a:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
  }
}

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.cookie-notice.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-notice-inner {
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 -4px 32px rgba(30,58,138,.15), 0 -1px 8px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 1.125rem var(--sp-4);
  max-width: 100%;
  flex-wrap: wrap;
}

.cookie-notice-icon {
  flex-shrink: 0;
  line-height: 1;
}

.cookie-notice-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  color: var(--gold);
}

.cookie-notice-text {
  flex: 1;
  min-width: 240px;
}

.cookie-notice-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .25rem;
}

.cookie-notice-text p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.cookie-notice-text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice-text a:hover {
  color: var(--blue-dark);
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .625rem 1.375rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition),
              transform var(--transition);
  box-shadow: 0 2px 12px rgba(29,78,216,.30);
}

.cookie-btn-accept:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 18px rgba(29,78,216,.40);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  display: inline-flex;
  align-items: center;
  padding: .625rem 1.125rem;
  background: transparent;
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition);
}

.cookie-btn-decline:hover {
  background: var(--bg);
  color: var(--text);
  border-color: var(--muted);
}

.cookie-notice-close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.cookie-notice-close:hover {
  background: var(--bg);
  color: var(--text);
}

.cookie-notice-close svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .cookie-notice-inner {
    padding: 1rem var(--sp-2);
    gap: var(--sp-2);
  }
  .cookie-notice-icon {
    display: none;
  }
  .cookie-notice-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .cookie-notice-close {
    top: .5rem;
    right: .5rem;
  }
}

/* ============================================================
   SERVICES SECTION — blue accent on bg
   ============================================================ */
.services-section {
  background: var(--white);
}

.testimonials-section {
  background: var(--bg);
}

.stats-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--navy-3) 100%);
}

.stats-section::before {
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(245,158,11,.08) 0%, transparent 60%);
}

/* ============================================================
   SERVICE PAGE — SIDEBAR LAYOUT
   ============================================================ */
.service-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-8);
  align-items: start;
  padding-top: var(--sp-8);
}

.service-sidebar {
  position: sticky;
  top: 90px;
}

.service-sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-3);
}

.service-sidebar-title {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-dark);
  padding: .875rem 1.25rem;
  margin: 0;
}

.service-sidebar-nav {
  list-style: none;
  padding: .5rem 0;
}

.service-sidebar-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .625rem 1.25rem;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
  transition: background var(--transition), color var(--transition),
              padding-left var(--transition);
  border-left: 3px solid transparent;
}

.service-sidebar-nav li a:hover {
  background: var(--bg);
  color: var(--blue);
  padding-left: 1.5rem;
}

.service-sidebar-nav li.active a {
  border-left-color: var(--blue);
  color: var(--blue);
  background: rgba(29,78,216,.05);
  font-weight: 700;
}

.service-sidebar-nav li a svg {
  width: 12px;
  height: 12px;
  opacity: .4;
  flex-shrink: 0;
}

.service-sidebar-cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  color: var(--white);
}

.service-sidebar-cta-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: .375rem;
}

.service-sidebar-cta-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0;
}

.service-sidebar-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--gold-2);
  transition: color var(--transition);
}

.service-sidebar-phone:hover {
  color: var(--white);
}

.service-main-content {
  min-width: 0;
  padding-top: var(--sp-8);
}

/* Gallery in service pages */
.service-gallery {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

.service-gallery-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.service-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.service-gallery-item:hover img {
  transform: scale(1.08);
}

/* Page CTA strip */
.page-cta-strip {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
  padding: 3rem 0;
}

.page-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-cta-strip-label {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.page-cta-strip-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.page-cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive for service sidebar */
@media (max-width: 1024px) {
  .service-page-layout {
    grid-template-columns: 240px 1fr;
    gap: var(--sp-6);
  }
}

@media (max-width: 768px) {
  .service-page-layout {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
  .service-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Info strip — dark, cohesive cu header/footer ── */
.contact-info-section {
  background: #071525;
  padding-block: var(--sp-10);
  border-top: 1px solid rgba(255,255,255,.06);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform .25s, background .25s, border-color .25s;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(96,165,250,.3);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: rgba(29,78,216,.18);
  border: 1px solid rgba(96,165,250,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: #60a5fa;
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: .55rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  margin-bottom: .35rem;
}

.contact-info-value a {
  color: #60a5fa;
  transition: color var(--transition);
}

.contact-info-value a:hover {
  color: #93c5fd;
}

.contact-info-sub {
  font-size: .7875rem;
  color: rgba(255,255,255,.32);
  line-height: 1.5;
  margin: 0;
}

/* ── Map + Form section ── */
.contact-main-section {
  background: #f1f5f9;
  padding-block: var(--sp-14);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .25rem;
  line-height: 1.2;
}

.contact-panel {
  padding: 1.75rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
}

.contact-panel-head {
  margin-bottom: 1.25rem;
}

/* ── Hero badge (Program) ── */
.contact-hero-badge {
  display: grid;
  gap: .3rem;
  min-width: 220px;
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
}

.contact-hero-badge strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
}

/* ── Map ── */
.contact-map-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--blue);
  margin-top: .875rem;
  transition: color var(--transition);
}

.contact-map-link:hover {
  color: var(--blue-dark);
}

/* ── Form: ascunde info redundante din the_content() ── */
.contact-form-inner > p,
.contact-form-inner > h3,
.contact-form-inner > h4,
.contact-form-inner > ul:not([class*="wpcf7"]),
.contact-form-inner > div:not([class*="wpcf7"]) {
  display: none;
}

.contact-form-inner .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.contact-form-inner input[type="text"],
.contact-form-inner input[type="email"],
.contact-form-inner input[type="tel"],
.contact-form-inner textarea {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  background: #f8fafc;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29,78,216,.10);
  outline: none;
}

.contact-form-inner textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-inner input[type="submit"],
.contact-form-inner .wpcf7-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: .95rem 2rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform .15s;
  box-shadow: 0 4px 14px rgba(29,78,216,.30);
}

.contact-form-inner input[type="submit"]:hover,
.contact-form-inner .wpcf7-submit:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(29,78,216,.40);
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: .875rem;
  }

  .contact-hero-badge {
    min-width: 0;
    width: 100%;
  }

  .contact-panel {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .contact-map-frame iframe {
    height: 280px;
  }

  /* grid, nu flex: label/valoare/descriere sunt frati si ar deveni coloane */
  .contact-info-card {
    border-radius: 16px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    align-items: start;
    padding: 1.25rem;
  }

  .contact-info-icon {
    margin: 0;
    grid-row: 1 / span 3;
  }

  .contact-info-label,
  .contact-info-value,
  .contact-info-sub {
    grid-column: 2;
  }
}

/* Hide Cookie Notice plugin bar — we use our own GDPR notice */
#cookie-notice,
#cookie-notice.cookie-notice-hidden,
#cookie-notice.cn-position-bottom {
  display: none !important;
  visibility: hidden !important;
}

/* ============================================================
   ECHIPA (TEAM) PAGE
   ============================================================ */
.team-hero {
  padding: 10.5rem var(--sp-4) 6rem;
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.14), transparent 24%),
    linear-gradient(135deg, #081427 0%, #12305f 64%, #1d4ed8 100%);
}

.team-hero::before {
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

.team-hero-inner {
  max-width: 1160px;
}

.team-hero-copy {
  max-width: 760px;
}

.team-hero-kicker,
.team-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.1rem;
}

.team-hero-kicker::before,
.team-section-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.team-hero-title {
  margin-bottom: 1rem;
}

.team-hero-subtitle {
  max-width: 62ch;
  font-size: 1.03rem;
  color: rgba(255,255,255,.74);
}

.team-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.team-hero-stat {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.team-hero-stat strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: .3rem;
}

.team-hero-stat span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .84rem;
  line-height: 1.45;
}

.team-page {
  background: linear-gradient(180deg, #edf4ff 0%, #f7fbff 100%);
}

.team-intro-section,
.team-directory-section {
  padding: 4.75rem 0;
}

.team-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.team-section-title {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  color: var(--navy);
  margin-bottom: .9rem;
}

.team-section-text {
  max-width: 62ch;
  font-size: 1rem;
  color: #516277;
}

.team-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #07111f 0%, #0a1730 100%);
}

.team-section-heading {
  margin-bottom: 2rem;
}

.team-section-heading .team-section-title,
.team-section-heading .team-section-text {
  color: var(--white);
}

.team-section-heading .team-section-text {
  color: rgba(255,255,255,.64);
}

.team-section-heading-light .team-section-title,
.team-section-heading-light .team-section-text {
  color: var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.team-directory-grid {
  margin-top: 2rem;
}

/* ── Department team photos (wide group shots) ── */
.team-departments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.team-department-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.team-department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 66px rgba(0,0,0,.28);
  border-color: rgba(245,158,11,.32);
}

.team-department-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29,78,216,.18), rgba(15,23,42,.4));
}

.team-department-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.team-department-card:hover .team-department-photo img {
  transform: scale(1.05);
}

.team-department-info {
  padding: 1.4rem 1.5rem 1.6rem;
}

.team-department-info h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--white);
}

.team-department-info p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.66);
}

@media (max-width: 880px) {
  .team-departments-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.team-card {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(199,215,245,.72);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15,23,42,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.team-card-featured {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 66px rgba(0,0,0,.24);
  border-color: rgba(245,158,11,.3);
}

.team-card-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(29,78,216,.08), rgba(245,158,11,.12));
}

.team-directory-grid .team-card-photo {
  aspect-ratio: 4 / 5;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}

.team-card:hover .team-card-photo img {
  transform: scale(1.05);
}

.team-card-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(15,23,42,.24);
  letter-spacing: .05em;
  background: linear-gradient(135deg, rgba(29,78,216,.12), rgba(245,158,11,.15));
}

.team-card-info {
  padding: 1.2rem 1.15rem 1.3rem;
}

.team-card-pos {
  color: var(--blue-dark) !important;
  font-size: .76rem !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .55rem !important;
}

.team-card-featured .team-card-pos {
  color: var(--gold-2) !important;
}

.team-card-name {
  color: var(--navy) !important;
  font-size: 1rem !important;
  margin-bottom: .65rem !important;
  line-height: 1.3 !important;
}

.team-card-featured .team-card-name {
  color: var(--white) !important;
}

.team-card-contacts {
  display: grid;
  gap: .42rem;
}

.team-card-contact {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  color: #5f7187;
  font-size: .82rem;
  word-break: break-word;
  width: fit-content;
}

.team-card-featured .team-card-contact {
  color: rgba(255,255,255,.72);
}

.team-card-contact:hover {
  color: var(--blue);
}

@media (max-width: 1180px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .team-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .team-hero {
    padding: 9.5rem var(--sp-2) 5rem;
  }

  .team-section,
  .team-intro-section,
  .team-directory-section {
    padding: 4rem 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card-info {
    padding: 1rem;
  }

  .team-card-name {
    font-size: 1.12rem;
  }

  .team-card-contact {
    font-size: .845rem;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 540px) {
  .header-inner {
    padding: .8rem .9rem;
    border-radius: 18px;
  }

  .team-hero {
    padding: 8rem .7rem 4rem;
  }

  .team-hero-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .team-hero-subtitle,
  .team-section-text {
    font-size: .96rem;
    line-height: 1.72;
  }

  .team-hero-stats,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-section-heading {
    gap: .8rem;
  }
}

/* ============================================================
   CINE SUNTEM PAGE
   ============================================================ */

/* Shared helpers */
.cs-eyebrow {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.cs-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
.cs-section-title span { color: var(--gold); }
.cs-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── Intro split ── */
.cs-intro {
  padding: 5rem 0 4rem;
  background: var(--navy, #06111F);
}
.cs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cs-intro-text p {
  color: rgba(255,255,255,.70);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cs-intro-text p strong { color: rgba(255,255,255,.92); }
.cs-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  background: rgba(26,86,219,.15);
  border: 1px solid rgba(26,86,219,.28);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.80);
}
.cs-badge svg { color: var(--gold); flex-shrink: 0; }

/* Stacked images */
.cs-img-stack {
  position: relative;
  padding: .9rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20,41,78,.88), rgba(11,24,48,.94));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 60px rgba(0,0,0,.34);
}
.cs-img-stack::before {
  content: '';
  position: absolute;
  inset: .9rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.cs-img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  object-position: center center;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

/* ── Stats bar ── */
.cs-stats-bar {
  background: linear-gradient(90deg, #0a1f3c 0%, #0e2748 100%);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 2.25rem 0;
}
.cs-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}
.cs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .5rem 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.cs-stat:last-child { border-right: none; }
.cs-stat-number {
  font-family: var(--font-heading);
  font-size: 2.125rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.cs-stat-number small {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
}
.cs-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.50);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ── Capability cards ── */
.cs-capabilities {
  padding: 5rem 0;
  background: #07141f;
}
.cs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cs-cap-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.cs-cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,.30);
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
}
.cs-cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(26,86,219,.18);
  border: 1px solid rgba(26,86,219,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--gold);
  transition: background .25s ease;
}
.cs-cap-card:hover .cs-cap-icon {
  background: rgba(245,158,11,.15);
  border-color: rgba(245,158,11,.30);
}
.cs-cap-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .65rem;
}
.cs-cap-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
  margin: 0;
}

/* ── Video section ── */
.cs-video-section {
  padding: 5rem 0;
  background: var(--navy, #06111F);
  border-top: 1px solid rgba(255,255,255,.06);
}
.cs-video-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.cs-video-text p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cs-video-wrap {}
.cs-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.50);
  border: 1px solid rgba(255,255,255,.08);
}
.cs-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Photo row ── */
.cs-photo-row {
  padding: 0 0 5rem;
  background: var(--navy, #06111F);
}
.cs-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cs-photo-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.07);
}
.cs-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.cs-photo-item:hover img {
  transform: scale(1.05);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cs-intro-grid,
  .cs-video-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cs-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cs-stat:nth-child(3) { border-right: none; }
  .cs-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cs-intro-grid,
  .cs-video-grid,
  .cs-photo-grid {
    grid-template-columns: 1fr;
  }
  .cs-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
  .cs-stat:nth-child(2),
  .cs-stat:nth-child(4) { border-right: none; }
  .cs-cards-grid {
    grid-template-columns: 1fr;
  }
  .cs-img-stack {
    padding: .8rem;
    border-radius: 24px;
  }

  .cs-intro,
  .cs-capabilities,
  .cs-video-section,
  .cs-photo-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cs-intro-text p,
  .cs-video-text p,
  .cs-cap-card p {
    font-size: .96rem;
    line-height: 1.72;
  }

  .cs-photo-item {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .cs-stats-grid {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .cs-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .9rem 0;
  }

  .cs-stat:last-child {
    border-bottom: none;
  }

  .cs-stat:nth-child(3) {
    border-right: none;
  }

  .cs-section-title,
  .contact-section-title,
  .team-section-title {
    line-height: 1.15;
  }

  .cs-video-frame iframe {
    min-height: 240px;
  }

  .cs-photo-item {
    min-height: 190px;
  }
}

.team-card-contact,
.contact-info-value a,
.footer-contact-text a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================================
   Visual Builder Compatibility
   ============================================================ */
.rohs-visual-page {
  min-height: 40vh;
  background: #f4f7fc;
}

.rohs-visual-page > .elementor,
.rohs-visual-page > .entry-content,
.rohs-visual-page > article,
.rohs-visual-page > div {
  width: 100%;
}

.rohs-visual-page .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

.rohs-visual-page .elementor-widget-theme-post-content {
  color: inherit;
}

body.rohs-elementor-page #page-wrapper,
body.rohs-elementor-template #page-wrapper {
  background: transparent;
}

body.rohs-elementor-page .rohs-visual-page > .elementor,
body.rohs-elementor-template .rohs-visual-page > .elementor {
  position: relative;
  z-index: 1;
}

.rohs-visual-page .elementor-widget-shortcode,
.rohs-visual-page .elementor-widget-container {
  width: 100%;
}

.rohs-visual-page .elementor img {
  max-width: 100%;
  height: auto;
}

.rohs-visual-page--template {
  background: #fff;
}

body.rohs-homepage .rohs-visual-page--front {
  background: #fff;
}

@media (max-width: 767px) {
  .rohs-visual-page .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================================================
   Gallery + Contact Polish
   ============================================================ */
.page-content-inner-gallery .envira-gallery-wrap,
.page-content-inner-gallery .envira-gallery-public,
.page-content-inner-gallery .rohs-envira-gallery-fallback {
  margin: 1.4rem 0 3.75rem;
}

.rohs-envira-gallery-fallback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: .8rem;
}

.rohs-envira-gallery-fallback-item {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29,78,216,.12), rgba(245,158,11,.10));
  border: 1px solid rgba(29,78,216,.16);
  box-shadow: 0 14px 34px rgba(15, 35, 70, .14);
}

.rohs-envira-gallery-fallback-item img,
.page-content-inner-gallery .envira-gallery-wrap img,
.page-content-inner-gallery .envira-gallery-public img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.rohs-envira-gallery-fallback-item:hover img,
.page-content-inner-gallery .envira-gallery-wrap a:hover img,
.page-content-inner-gallery .envira-gallery-public a:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.rohs-gallery-empty {
  margin: 1.25rem auto 3rem;
  max-width: 720px;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(245, 158, 11, .10);
  border: 1px solid rgba(245, 158, 11, .35);
  color: #7c4a03;
  font-weight: 700;
  text-align: center;
}

.contact-hero-actions,
.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.contact-hero-points {
  margin-top: 1.25rem;
}

.contact-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .82);
  font-size: .84rem;
  font-weight: 700;
}

.contact-info-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, .10), transparent 34%),
    linear-gradient(180deg, #edf4ff 0%, #f8fbff 100%);
}

.contact-info-grid {
  align-items: stretch;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  text-align: left;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(29, 78, 216, .14);
  box-shadow: 0 22px 55px rgba(15, 35, 70, .10);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: .9;
}

/* Carduri pe fundal deschis — culori de text inchise (suprascrie varianta dark) */
.contact-info-label {
  color: #64748b;
}

.contact-info-value {
  color: var(--navy);
}

.contact-info-value a {
  color: var(--blue);
}

.contact-info-value a:hover {
  color: var(--blue-dark);
}

.contact-info-sub {
  color: #587093;
}

.contact-info-icon {
  margin-bottom: 1.15rem;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .18);
}

.contact-info-value,
.contact-info-sub {
  max-width: 100%;
}

.contact-main-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 55%, #eef5ff 100%);
}

.contact-main-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.contact-panel {
  border-radius: 28px;
  border: 1px solid rgba(29, 78, 216, .14);
  box-shadow: 0 28px 70px rgba(15, 35, 70, .12);
}

.contact-panel-head {
  margin-bottom: 1.45rem;
}

.contact-section-text {
  margin-top: .45rem;
  color: #587093;
  line-height: 1.75;
}

.contact-map-frame {
  position: relative;
  min-height: 500px;
  border-radius: 22px;
  overflow: hidden;
  background: #dbe8f8;
  border: 1px solid rgba(29, 78, 216, .14);
}

.contact-map-frame iframe {
  min-height: 500px;
  display: block;
  filter: saturate(.96) contrast(1.02);
}

.contact-map-link {
  left: 1rem;
  right: auto;
  bottom: 1rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(15, 35, 70, .18);
}

.contact-map-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
}

.contact-map-details div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(29, 78, 216, .06);
  border: 1px solid rgba(29, 78, 216, .10);
}

.contact-map-details strong,
.contact-map-details span {
  display: block;
}

.contact-map-details strong {
  margin-bottom: .25rem;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .9rem;
}

.contact-map-details span {
  color: #587093;
  font-size: .88rem;
  line-height: 1.55;
}

.contact-form-inner .wpcf7-form {
  display: grid;
  gap: .9rem;
}

.contact-form-inner p {
  margin: 0;
}

.contact-form-inner .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-inner input,
.contact-form-inner textarea,
.contact-form-inner select {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(29, 78, 216, .18);
  background: #f8fbff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.contact-form-inner textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus,
.contact-form-inner select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.contact-form-inner input[type="submit"],
.contact-form-inner button[type="submit"] {
  justify-self: start;
  min-height: 52px;
  padding: 0 1.6rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #1648b8);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 16px 32px rgba(37, 99, 235, .28);
}

.contact-form-fallback {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(245, 158, 11, .10);
  border: 1px solid rgba(245, 158, 11, .28);
}

@media (max-width: 900px) {
  .contact-main-grid,
  .contact-map-details {
    grid-template-columns: 1fr;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .rohs-envira-gallery-fallback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  .contact-info-card,
  .contact-panel {
    border-radius: 20px;
  }

  .contact-info-card,
  .contact-panel {
    padding: 1.25rem;
  }

  .contact-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 330px;
  }
}

/* ============================================================
   Contact — panouri egale (harta umple coloana stanga)
   ============================================================ */
.contact-main-grid {
  align-items: stretch;
}

.contact-map-wrap,
.contact-form-wrap {
  display: flex;
}

.contact-map-wrap .contact-panel,
.contact-form-wrap .contact-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-map-wrap .contact-map-frame {
  flex: 1;
}

.contact-map-wrap .contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.contact-form-wrap .contact-form-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-wrap .contact-form-inner .wpcf7 {
  flex: 1;
}

/* ============================================================
   GALERIE FOTO — grid static cu filtre + lightbox
   ============================================================ */
.rohs-gallery {
  margin-top: .5rem;
}

.rohs-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-bottom: 2rem;
}

.rohs-gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid rgba(29, 78, 216, .18);
  background: #fff;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform .15s;
}

.rohs-gallery-filter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  padding: .1rem .35rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, .08);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
}

.rohs-gallery-filter:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.rohs-gallery-filter.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.rohs-gallery-filter.active span {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.rohs-gallery-section {
  margin-top: 2.5rem;
}

.rohs-gallery-section:first-of-type {
  margin-top: 0;
}

.rohs-gallery-section.is-hidden {
  display: none;
}

.rohs-gallery-section-head {
  display: flex;
  align-items: baseline;
  gap: .85rem;
  margin-bottom: 1.1rem;
  padding-bottom: .65rem;
  border-bottom: 1.5px solid rgba(29, 78, 216, .12);
}

.rohs-gallery-section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.rohs-gallery-section-count {
  flex-shrink: 0;
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(29, 78, 216, .08);
  padding: .2rem .65rem;
  border-radius: 999px;
}

.rohs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: .9rem;
}

.rohs-gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29, 78, 216, .10), rgba(245, 158, 11, .08));
  border: 1px solid rgba(29, 78, 216, .14);
  box-shadow: 0 10px 26px rgba(15, 35, 70, .10);
}

.rohs-gallery-item.is-hidden {
  display: none;
}

.rohs-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.rohs-gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.rohs-gallery-item-cat {
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .6rem;
  padding: .3rem .6rem;
  border-radius: 10px;
  background: rgba(6, 17, 31, .78);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.rohs-gallery-item-zoom {
  position: absolute;
  top: .6rem;
  right: .6rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(6, 17, 31, .62);
  color: #fff;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.rohs-gallery-item:hover .rohs-gallery-item-cat,
.rohs-gallery-item:focus-visible .rohs-gallery-item-cat,
.rohs-gallery-item:hover .rohs-gallery-item-zoom,
.rohs-gallery-item:focus-visible .rohs-gallery-item-zoom {
  opacity: 1;
  transform: none;
}

/* ── Lightbox ── */
.rohs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem clamp(1rem, 6vw, 5rem);
  background: rgba(4, 10, 20, .94);
}

.rohs-lightbox.open {
  display: flex;
}

.rohs-lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  text-align: center;
}

.rohs-lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.rohs-lightbox-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: .9rem;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
}

.rohs-lightbox-count {
  padding: .15rem .6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  font-size: .75rem;
}

.rohs-lightbox-close,
.rohs-lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}

.rohs-lightbox-close:hover,
.rohs-lightbox-nav:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.05);
}

.rohs-lightbox-close {
  top: 1.1rem;
  right: 1.1rem;
}

.rohs-lightbox-prev { left: 1rem; }
.rohs-lightbox-next { right: 1rem; }

@media (max-width: 768px) {
  .rohs-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  .rohs-gallery-section {
    margin-top: 1.75rem;
  }

  .rohs-gallery-section-head {
    margin-bottom: .85rem;
  }

  .rohs-gallery-section-title {
    font-size: 1.05rem;
  }

  .rohs-gallery-filters {
    gap: .4rem;
  }

  .rohs-gallery-filter {
    font-size: .72rem;
    padding: .55rem .9rem;
    min-height: 38px;
  }

  .rohs-lightbox {
    padding: 1rem;
  }

  .rohs-lightbox-nav {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    top: auto;
  }

  .rohs-lightbox-prev { left: calc(50% - 52px); }
  .rohs-lightbox-next { right: calc(50% - 52px); }

  .rohs-lightbox-figure img {
    max-height: 66vh;
  }
}

/* ============================================================
   GALERIE VIDEO — grid clipuri + lightbox de redare
   ============================================================ */
.rohs-video-gallery {
  margin-top: .5rem;
}

.rohs-video-gallery-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1.5px dashed rgba(29, 78, 216, .25);
  border-radius: 16px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
}

.rohs-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.rohs-video-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  /* acelasi fundal deschis ca la cardurile foto — fara rama inchisa */
  background: linear-gradient(135deg, rgba(29, 78, 216, .10), rgba(245, 158, 11, .08));
  border: 1px solid rgba(29, 78, 216, .14);
  box-shadow: 0 10px 26px rgba(15, 35, 70, .10);
  cursor: pointer;
}

.rohs-video-item video,
.rohs-video-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: transform .35s ease, filter .35s ease;
}

.rohs-video-item:hover video,
.rohs-video-item:focus-visible video,
.rohs-video-item:hover img,
.rohs-video-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.rohs-video-item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 17, 31, .72);
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: #fff;
  transform: translate(-50%, -50%);
  transition: background .25s ease, transform .25s ease;
  pointer-events: none;
}

.rohs-video-item-play svg {
  margin-left: 3px;
}

.rohs-video-item:hover .rohs-video-item-play,
.rohs-video-item:focus-visible .rohs-video-item-play {
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.08);
}

.rohs-video-item-title {
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .6rem;
  padding: .3rem .6rem;
  border-radius: 10px;
  background: rgba(6, 17, 31, .78);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.rohs-video-item:hover .rohs-video-item-title,
.rohs-video-item:focus-visible .rohs-video-item-title {
  opacity: 1;
  transform: none;
}

.rohs-video-lightbox .rohs-lightbox-figure {
  width: min(1100px, 100%);
}

.rohs-video-lightbox .rohs-lightbox-figure video {
  width: 100%;
  max-height: 78vh;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
  .rohs-video-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .rohs-video-lightbox .rohs-lightbox-figure video {
    max-height: 66vh;
  }
}
