/* ============================================================
   ARN TEH INSTAL - CSS Production
   Design: Pipeon style (navy + gold)
   Fonts: Plus Jakarta Sans 800 (headings) + Inter (body)
   ============================================================ */

/* ══════ VARIABLES ══════ */
:root {
  --navy:         #1B2A4A;
  --navy-dark:    #0F1D33;
  --navy-light:   #243B5E;
  --gold:         #EAB308;
  --gold-hover:   #CA9A06;
  --gold-light:   #FEF9C3;
  --white:        #ffffff;
  --off-white:    #F8F9FA;
  --gray-100:     #EEF0F4;
  --gray-200:     #E5E7EB;
  --gray-300:     #D1D5DB;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --success:      #16A34A;
  --error:        #DC2626;
  --blue-overlay: rgba(27, 42, 74, 0.88);

  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body:    'Inter', 'Plus Jakarta Sans', sans-serif;

  --radius:    8px;
  --radius-lg: 12px;
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --container: 1200px;
  --section-y: 80px;
}

/* ══════ RESET & BASE ══════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* ══════ UTILITY ══════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-y) 0; }
.section-bg { background: var(--gray-100); }

.section-tag {
  display: inline-block;
  background: rgba(234,179,8,0.12);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  border: 1px solid rgba(234,179,8,0.4);
  padding: 4px 14px;
  border-radius: 4px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  font-style: normal;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--gold); }

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-subtitle { margin: 0 auto; }

.text-navy  { color: var(--navy); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ══════ BUTTONS ══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234,179,8,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,42,74,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn-sm { padding: 9px 18px; font-size: 12px; }

/* ══════ TOP BAR ══════ */
.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 200;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-left a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover { color: var(--gold); }
.topbar-left svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  flex-shrink: 0;
}

.topbar-right { display: flex; gap: 8px; }

.topbar-social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
}
.topbar-social:hover { background: var(--gold); color: var(--navy-dark); }

/* ══════ NAVBAR ══════ */
.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.logo img { width: 38px; height: 38px; object-fit: contain; }
.logo span { color: var(--gold); }
/* Navbar: logo "instal" pe alb — gold (#EAB308) pe alb nu trece contrast WCAG */
.navbar .logo span { color: var(--navy); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--gray-900);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Dropdown servicii */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 0 8px; /* padding-top acopera golul vizual fara a rupe hover-ul */
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid var(--gray-200);
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.15s;
  text-transform: none;
  letter-spacing: 0;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--gray-100); color: var(--navy); padding-left: 26px; }

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234,179,8,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 20px 24px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-900);
  font-weight: 600;
  font-size: 14px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 14px;
}

/* ══════ HERO ══════ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--blue-overlay);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-overlay);
}

.hero .container { position: relative; z-index: 1; }

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text { flex: 1; min-width: 0; }

.hero-tag {
  display: inline-block;
  background: rgba(234,179,8,0.15);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  font-style: normal;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-lead {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Form */
.hero-form {
  width: 370px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-form-header {
  background: var(--navy);
  padding: 20px 28px;
  text-align: center;
}
.hero-form-header h3,
.hero-form-header .hero-form-title {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.hero-form-header p {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin-top: 4px;
}

.hero-form-body { padding: 24px 28px; }

/* ══════ FORM ELEMENTS ══════ */
.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--gray-100);
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(234,179,8,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Honeypot - ascuns de la utilizatori */
.hp-field { display: none !important; position: absolute; left: -9999px; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--gold-hover); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--gray-500);
}
.form-note strong { color: var(--navy); }

.form-message {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  display: none;
}
.form-message.success { background: #DCFCE7; color: var(--success); display: block; }
.form-message.error   { background: #FEE2E2; color: var(--error);   display: block; }

/* Checkbox GDPR consent */
.form-checkbox { margin-bottom: 16px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}
.checkbox-label a { color: var(--navy); text-decoration: underline; }
.checkbox-label a:hover { color: var(--gold); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(234,179,8,0.05);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  font-style: normal;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero .lead { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 600px; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.breadcrumbs a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { font-size: 10px; opacity: 0.5; }
.breadcrumbs .current { color: var(--gold); }

/* ══════ TRUST COUNTER ══════ */
.trust-counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: -44px auto 0;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.counter-card {
  background: var(--white);
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.counter-card:last-child { border-right: none; }
.counter-card:hover { background: var(--navy); }
.counter-card:hover .counter-icon,
.counter-card:hover .counter-num,
.counter-card:hover .counter-label { color: var(--white); }
.counter-card:hover .counter-num { color: var(--gold); }

.counter-icon { font-size: 26px; margin-bottom: 6px; }
.counter-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.counter-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ══════ ABOUT ══════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge .num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.about-badge .txt {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-text p { color: var(--gray-500); line-height: 1.75; margin-bottom: 14px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
}
.about-feature .check {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.about-feature span { font-size: 13px; font-weight: 600; color: var(--gray-900); }

/* ══════ SERVICES ══════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-img {
  height: 190px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  width: 44px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.service-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 12px; }
.service-card-icon { font-size: 36px; margin-bottom: 12px; }
.service-card-link { color: var(--gold); font-weight: 700; font-size: 14px; margin-top: auto; padding-top: 12px; display: inline-block; }

/* ══════ CTA BANNER ══════ */
.cta-section { background: var(--gray-100); padding: 60px 0; }

.cta-banner {
  background: var(--navy);
  border-radius: 16px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 50px solid rgba(234,179,8,0.06);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 30px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }
.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  font-style: normal;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-text h2 em { font-style: normal; color: var(--gold); }
.cta-text p { color: rgba(255,255,255,0.55); font-size: 15px; }

.cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ══════ TESTIMONIALS ══════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 50px;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author .author-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.testimonial-author .author-loc { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

/* ══════ PARTNERS ══════ */
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-item {
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-item:hover { opacity: 1; filter: grayscale(0); }
.partner-item img { height: 40px; width: auto; object-fit: contain; }

/* ══════ FAQ ACCORDION ══════ */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--navy); }
.faq-item.open .faq-question { color: var(--navy); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-500);
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy-dark); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 20px;
}
.faq-answer-inner {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px; }

/* ══════ PORTFOLIO ══════ */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.portfolio-item:hover img { transform: scale(1.07); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,29,51,0.85), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-title {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-align: center;
}

/* ══════ BLOG ══════ */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.blog-posts-list { display: grid; gap: 32px; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 0;
  transition: all 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.blog-card-img {
  width: 240px;
  flex-shrink: 0;
  background: var(--navy);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 24px; flex: 1; }

.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-meta-item {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-meta-item.category {
  background: var(--gold-light);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}

.blog-card h2, .blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card a:hover h2,
.blog-card a:hover h3 { color: var(--gold); }

.blog-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }

.blog-read-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: var(--navy);
  flex-shrink: 0;
  overflow: hidden;
}
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-post-title:hover { color: var(--gold); }
.sidebar-post-date { font-size: 11px; color: var(--gray-500); margin-top: 4px; }

/* Blog Article Single */
.article-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.article-content p { margin-bottom: 16px; line-height: 1.75; color: var(--gray-700); }
.article-content ul, .article-content ol {
  margin: 16px 0 16px 20px;
  color: var(--gray-700);
}
.article-content li { margin-bottom: 8px; line-height: 1.65; }
.article-content strong { color: var(--navy); }
.article-content .article-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

/* Blog Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}
.pagination a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination .current { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

/* ══════ CONTACT PAGE ══════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EDF1F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-text h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.contact-info-text a:hover { color: var(--gold); }

.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  border: none;
  margin-top: 24px;
  overflow: hidden;
}

/* ══════ ABOUT PAGE - TIMELINE ══════ */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 24px;
}
.timeline-dot {
  position: absolute;
  left: -22px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* Values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ══════ FOOTER ══════ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

footer h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

footer p { font-size: 13px; line-height: 1.75; margin-bottom: 14px; }
footer a { color: rgba(255,255,255,0.55); transition: color 0.2s; font-size: 13px; }
footer a:hover { color: var(--gold); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; color: var(--gold); font-size: 11px; flex-shrink: 0; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text { font-size: 13px; line-height: 1.5; }
.footer-contact-text strong { color: rgba(255,255,255,0.75); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.footer-contact-text a { color: rgba(255,255,255,0.55); }

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold); }

/* ══════ GDPR COOKIE BANNER ══════ */
.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 18px 24px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  border-top: 3px solid var(--gold);
  transform: translateY(0);
  transition: transform 0.4s;
  display: none;
}
.gdpr-banner.visible { display: block; }

.gdpr-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gdpr-text { flex: 1; font-size: 13px; line-height: 1.6; }
.gdpr-text a { color: var(--gold); }

.gdpr-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.gdpr-accept {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}
.gdpr-accept:hover { background: var(--gold-hover); }

.gdpr-refuse {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.gdpr-refuse:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ══════ WHATSAPP FLOAT ══════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9997;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.55);
}

/* Mobile click-to-call sticky bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 20px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  z-index: 9996;
  text-decoration: none;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
}

/* ══════ ADMIN PANEL ══════ */
.admin-body {
  background: #F0F2F5;
  font-family: var(--font-body);
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: #0a1628;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 50;
}

.admin-sidebar-logo {
  padding: 28px 24px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-logo h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.admin-sidebar-logo span { color: var(--gold); }
.admin-sidebar-logo p { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 3px; font-weight: 400; }

.admin-nav { flex: 1; padding: 12px 0; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
  position: relative;
  text-decoration: none;
  line-height: 1.3;
}
.admin-nav-item:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.admin-nav-item.active { color: var(--white); background: rgba(234,179,8,0.14); font-weight: 600; }
.admin-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}
.admin-nav-icon { font-size: 17px; flex-shrink: 0; width: 22px; text-align: center; }

.admin-nav-section {
  padding: 20px 24px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
}

.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: 24px;
  min-height: 100vh;
}

.admin-header {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.admin-header h1 { font-size: 20px; font-weight: 700; color: var(--navy); }
.admin-header-actions { display: flex; gap: 10px; }

.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.admin-card h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  padding: 10px 12px;
  border-bottom: 2px solid var(--gray-100);
}
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-700);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-success { background: #DCFCE7; color: #15803D; }
.badge-warning { background: #FEF9C3; color: #854D0E; }
.badge-info    { background: #DBEAFE; color: #1D4ED8; }
.badge-gray    { background: var(--gray-100); color: var(--gray-500); }

.action-btns { display: flex; gap: 6px; }
.action-btn {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.action-btn-edit { background: var(--gold-light); color: var(--navy); }
.action-btn-edit:hover { background: var(--gold); }
.action-btn-delete { background: #FEE2E2; color: var(--error); }
.action-btn-delete:hover { background: var(--error); color: var(--white); }
.action-btn-view { background: #DBEAFE; color: #1D4ED8; }

/* Admin form */
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.admin-form-grid .full { grid-column: 1 / -1; }

.admin-form-group { margin-bottom: 16px; }
.admin-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s;
}
.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(234,179,8,0.1);
}
.admin-form-group textarea { min-height: 120px; resize: vertical; }
.admin-form-hint { font-size: 11px; color: var(--gray-500); margin-top: 4px; }

/* Admin login */
.admin-login {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-login-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.admin-login-logo h1 { font-size: 22px; font-weight: 800; color: var(--navy); }
.admin-login-logo span { color: var(--gold); }
.admin-login-logo p { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* ══════ ADMIN MOBILE - Hamburger & Overlay ══════ */
.hamburger-btn {
  display: none; /* arata DOAR pe mobil - injectat de JS doar cand e mobil */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 199; /* sub sidebar (200) dar deasupra continutului */
  backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }

/* Utility - show/hide on mobile */
.hide-mobile { display: initial; }
.show-mobile { display: none; }

/* ══════ ADMIN DASHBOARD - Quick Deviz Bar ══════ */
.quick-deviz-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.quick-deviz-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.15s;
  white-space: nowrap;
}
.quick-deviz-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(234,179,8,0.15);
}
.quick-deviz-btn.primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.quick-deviz-btn.primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

/* ══════ ADMIN DASHBOARD - Grid & Cards ══════ */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

/* Status pill (inline status indicator) */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.status-pill.draft  { background: var(--gray-100); color: var(--gray-500); }
.status-pill.sent   { background: #DBEAFE; color: #1D4ED8; }
.status-pill.accept { background: #DCFCE7; color: #15803D; }
.status-pill.reject { background: #FEE2E2; color: var(--error); }

/* ══════ MOBILE CARD LIST ══════ */
.mobile-card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: inherit;
}
.mobile-card-item:last-child { border-bottom: none; }
.mobile-card-item:hover { background: var(--off-white); margin: 0 -12px; padding: 13px 12px; border-radius: var(--radius); }

.mci-main { flex: 1; min-width: 0; }
.mci-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mci-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mci-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.mci-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.mci-unread {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 800;
  border-radius: 10px;
  padding: 2px 7px;
  line-height: 1.4;
}

/* ══════ ADMIN BOTTOM NAV (mobile only) ══════ */
.admin-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  flex-direction: row;
  align-items: stretch;
  overflow: visible; /* permite cercului gold sa iasa deasupra barei */
}

.abn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--gray-500);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.15s;
  padding: 8px 2px 6px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.abn-item:hover, .abn-item.active { color: var(--navy); }
.abn-item svg { display: block; flex-shrink: 0; }
.abn-item span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }

/* Buton central "+" cu cerc gold */
.abn-item.abn-primary {
  color: var(--navy-dark);
  font-weight: 800;
  overflow: visible;
  padding-top: 0;
  justify-content: flex-end;
  padding-bottom: 6px;
}
/* Cercul gold - aplicat pe span wrapper, nu pe SVG */
.abn-primary-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(234,179,8,0.45);
  position: absolute;
  top: -14px; /* iese deasupra barei */
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.15s;
}
.abn-item.abn-primary:hover .abn-primary-icon { transform: translateX(-50%) scale(1.08); }
.abn-item.abn-primary > span:last-child {
  /* textul "Nou" sub cerc */
  margin-top: 36px;
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; }
  .hero-content { flex-direction: column; }
  .hero-form { width: 100%; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --section-y: 56px; }

  .topbar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 48px 0; min-height: auto; }
  .hero h1 { font-size: 30px; }
  .hero-lead { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-form { max-width: 100%; }

  .trust-counter {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    border-radius: 0;
  }

  .section-title { font-size: 26px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .values-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Admin sidebar: off-screen pe mobil, slide-in la .open */
  .admin-sidebar {
    transform: translateX(-260px); /* valoare exacta, nu %, pentru siguranta */
    transition: transform 0.25s ease;
    z-index: 200; /* deasupra oricarui alt element */
    display: flex;
    visibility: hidden; /* ascunde si continutul, nu doar mutarea */
  }
  .admin-sidebar.open {
    transform: translateX(0);
    visibility: visible;
  }
  .admin-main {
    margin-left: 0 !important;
    padding: 16px;
    padding-bottom: 76px; /* 60px nav + 16px spatiu */
  }

  /* Hamburger si bottom-nav controlate 100% de JS via inline style */
  /* CSS e doar fallback - nu suprascrie inline style */
  .hide-mobile { display: none !important; }
  .show-mobile { display: initial; }

  /* Quick deviz bar: stack on small screens */
  .quick-deviz-bar { gap: 8px; }
  .quick-deviz-btn { font-size: 12px; padding: 9px 14px; }

  /* Dashboard grid: single column */
  .dashboard-grid { grid-template-columns: 1fr; gap: 16px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100%; height: 180px; }

  .page-hero h1 { font-size: 26px; }

  .mobile-call-bar { display: block; }
  .whatsapp-float { bottom: 72px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .partners-grid { gap: 28px; }
  .cta-banner { padding: 32px 24px; }
  .cta-text h2 { font-size: 22px; }
}

/* ══════ ANPC SAL/SOL banners ══════ */
.anpc-bar {
  background: #F8F9FA;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.anpc-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.anpc-text {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.anpc-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.anpc-logos a {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.anpc-logos a:hover { opacity: 1; }
.anpc-logos img { height: 40px; width: auto; }

/* ══════ LANDING PAGES - SERVICII ══════ */

/* Lista servicii cu bullet gold */
.service-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  padding: 12px 16px 12px 44px;
  position: relative;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}

/* Grid features (tipuri de servicii) */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.feature-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}
.feature-item:hover { box-shadow: var(--shadow); }
.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Pasi proces (steps) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.step-item {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: rgba(234,179,8,0.18);
  line-height: 1;
  margin-bottom: 8px;
}
.step-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* CTA banner in landing pages */
.cta-banner-content {
  text-align: center;
  padding: 20px;
}
.cta-banner-content h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  font-size: 15px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Servicii conexe */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.related-service-card {
  display: block;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.related-service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.related-service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.related-service-card p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-features,
  .steps-grid,
  .related-services { grid-template-columns: 1fr; }
  .cta-banner-content h2 { font-size: 22px; }
}

/* ══════ PRINT ══════ */
@media print {
  .topbar, .navbar-wrap, .gdpr-banner, .whatsapp-float, .mobile-call-bar { display: none !important; }
  a { color: inherit; }
  .hero { background: var(--navy) !important; print-color-adjust: exact; }
}

/* ══════ TRANSITIONS & ANIMATIONS ══════ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.fade-in { animation: fadeIn 0.5s ease forwards; }

/* Scroll reveal (clasa adaugata de JS) */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Focus visible - accesibilitate */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
