@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --mid: #64748b;
  --light: #f1f5f9;
  --lighter: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --text: #334155;
  --text-light: #94a3b8;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,23,42,.08);
  --shadow-md: 0 8px 32px rgba(15,23,42,.12);
  --shadow-lg: 0 16px 48px rgba(15,23,42,.18);
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --font-head: 'Inter', sans-serif;
  --font-body: 'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}
p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
[class*="col-"] { padding: 0 12px; }

.col-12, .col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-md-12, .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-9 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
}

.text-center { text-align: center; }
.pt-0  { padding-top: 0; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }
.pt-100{ padding-top: 100px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }
.pb-100{ padding-bottom: 100px; }
.section { padding: 90px 0; }
.section-alt { background: var(--lighter); }
.section-dark { background: var(--dark); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-100 { width: 100%; }
.row-gap { row-gap: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 14px;
  color: var(--dark);
}
.section-head p {
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}
.section-head-left { text-align: left; }
.section-head-left p { margin: 0; }
.section-head-white .tag { background: rgba(255,255,255,.15); color: var(--white); }
.section-head-white h2, .section-head-white p { color: var(--white); }
.section-head-white p { opacity: .8; }

.hz-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hz-navbar.dark-nav {
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: var(--transition);
}
.navbar-logo img { height: 44px; width: auto; }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.navbar-menu > li { position: relative; }
.navbar-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.hz-navbar.dark-nav .navbar-menu > li > a,
.hz-navbar:not(.scrolled) .navbar-hero-mode .navbar-menu > li > a { color: var(--white); }
.navbar-menu > li > a:hover,
.navbar-menu > li.active > a {
  background: var(--primary-light);
  color: var(--primary);
}
.hz-navbar.dark-nav .navbar-menu > li > a:hover,
.hz-navbar.dark-nav .navbar-menu > li.active > a {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.navbar-menu li.has-children > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  opacity: .6;
}
.navbar-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
}
.navbar-menu li.has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar-menu .sub-menu li a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.navbar-menu .sub-menu li a:hover {
  background: var(--light);
  color: var(--primary);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--mid);
  transition: var(--transition);
  background: var(--light);
}
.navbar-search-btn:hover { background: var(--primary); color: var(--white); }
.hz-navbar.dark-nav .navbar-search-btn { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown-toggle {
  background: var(--light);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.hz-navbar.dark-nav .lang-dropdown-toggle {
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.lang-dropdown-toggle img {
  width: 20px;
  border-radius: 2px;
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 8px 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.lang-dropdown:hover .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.lang-dropdown-item:hover {
  background: var(--light);
}
.lang-dropdown-item img {
  width: 20px;
  border-radius: 2px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hz-navbar.dark-nav .hamburger span { background: var(--white); }

.hz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-2);
  overflow: hidden;
}
.hz-hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.5) 100%);
}
.hz-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hz-hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(37,99,235,.4);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-head);
}
.hz-hero-content h1 {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hz-hero-content h1 span { color: var(--primary); }
.hz-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 36px;
}
.hz-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hz-hero .owl-nav { position: absolute; bottom: 40px; right: 0; display: flex; gap: 8px; }
.hz-hero .owl-prev, .hz-hero .owl-next {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: var(--white) !important;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.hz-hero .owl-prev:hover, .hz-hero .owl-next:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.hz-hero .owl-dots { display: none; }

.hz-banner {
  position: relative;
  padding: 150px 0 80px;
  background: var(--dark-2);
  overflow: hidden;
}
.hz-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.9) 0%, rgba(15,23,42,.6) 100%);
}
.hz-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hz-banner-content {
  position: relative;
  z-index: 2;
}
.hz-banner-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.hz-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-head);
}
.hz-breadcrumb a { color: rgba(255,255,255,.8); }
.hz-breadcrumb a:hover { color: var(--white); }
.hz-breadcrumb span { color: rgba(255,255,255,.4); }

.hz-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.hz-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.hz-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.hz-card-img-bg {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.hz-card:hover .hz-card-img-bg { transform: scale(1.04); }
.hz-card-img-wrap { overflow: hidden; }
.hz-card-body { padding: 24px; }
.hz-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.hz-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.35;
}
.hz-card-body h3 a { color: var(--dark); }
.hz-card-body h3 a:hover { color: var(--primary); }
.hz-card-body p {
  color: var(--mid);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hz-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-family: var(--font-head);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
.hz-card-meta i { margin-right: 4px; }
.hz-card-meta a { color: var(--text-light); }
.hz-card-meta a:hover { color: var(--primary); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  overflow: hidden;
}
.service-card:hover .service-card-photo { transform: scale(1.04); }
.service-card-body { padding: 22px; }
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.service-card-body h3 { font-size: 17px; margin-bottom: 8px; }
.service-card-body h3 a { color: var(--dark); }
.service-card-body h3 a:hover { color: var(--primary); }
.service-card-body p { color: var(--mid); font-size: 14px; margin-bottom: 16px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.read-more i { transition: transform .2s; }
.read-more:hover i { transform: translateX(4px); }
.read-more:hover { color: var(--primary-dark); }

.about-content-wrap .section-head { text-align: left; margin-bottom: 28px; }
.about-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--dark-2);
}
.about-video-wrap img, .about-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.about-video-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,.3);
  transition: var(--transition);
}
.about-video-btn:hover { background: rgba(15,23,42,.5); }
.play-btn {
  width: 72px; height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
  box-shadow: 0 0 0 12px rgba(255,255,255,.15);
}
.play-btn:hover { transform: scale(1.1); }
.progress-list { margin-top: 24px; }
.progress-item { margin-bottom: 20px; }
.progress-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.progress-bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
  transition: width 1.5s ease;
}

.counter-section {
  background: var(--dark);
  padding: 80px 0;
}
.counter-item {
  text-align: center;
  padding: 20px;
}
.counter-item i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.counter-item .count-num {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  font-family: var(--font-head);
}

.choose-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background-size: cover;
  background-position: center;
}
.choose-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.3) 0%, rgba(15,23,42,.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.choose-item:hover .choose-item-overlay { background: linear-gradient(180deg, rgba(37,99,235,.4) 0%, rgba(15,23,42,.9) 100%); }
.choose-item-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  transition: var(--transition);
}
.choose-item:hover .choose-item-icon { background: var(--primary); }
.choose-item h4 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.choose-item p { color: rgba(255,255,255,.75); font-size: 14px; margin: 0; }

.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  background: var(--light);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark);
}
.portfolio-card img, .portfolio-card-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.portfolio-card:hover img, .portfolio-card:hover .portfolio-card-bg { transform: scale(1.06); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-overlay h4 {
  color: var(--white);
  font-size: 17px;
  transform: translateY(10px);
  transition: transform .3s ease;
}
.portfolio-card:hover .portfolio-card-overlay h4 { transform: translateY(0); }
.portfolio-card-actions { display: flex; gap: 10px; }
.portfolio-card-actions a {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 16px;
  transition: var(--transition);
}
.portfolio-card-actions a:hover { background: var(--primary); color: var(--white); }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.team-card-photo { position: relative; }
.team-card-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.team-card-social {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-card-social { opacity: 1; }
.team-card-social a {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 14px;
  transition: var(--transition);
}
.team-card-social a:hover { background: var(--primary); color: var(--white); }
.team-card-body { padding: 20px; }
.team-card-body h4 { font-size: 16px; margin-bottom: 4px; }
.team-card-body p { color: var(--mid); font-size: 13px; margin: 0; font-family: var(--font-head); }

.testimonial-section {
  background: var(--dark);
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.85);
}
.testimonial-section > * { position: relative; z-index: 1; }
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.testimonial-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid rgba(255,255,255,.2);
}
.testimonial-carousel .owl-item img {
  width: 72px !important;
  display: inline-block !important;
}
.testimonial-stars { color: #fbbf24; margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-name { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.testimonial-role { color: rgba(255,255,255,.5); font-size: 13px; font-family: var(--font-head); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.feature-card-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h4 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--mid); font-size: 14px; margin: 0; }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: 16px; right: -28px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: .05em;
}
.pricing-icon {
  width: 60px; height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.pricing-card h3 { font-size: 18px; margin-bottom: 8px; }
.pricing-price {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1;
  margin: 16px 0;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--mid); }
.pricing-subtitle { color: var(--mid); font-size: 13px; margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li:last-child { border: none; }
.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--primary);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.faq-item-header:hover { color: var(--primary); }
.faq-item.open .faq-item-header { color: var(--primary); border-bottom: 1px solid var(--border); }
.faq-item-header .faq-icon { font-size: 12px; color: var(--mid); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }
.faq-item-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  background: var(--white);
  font-size: 15px;
  color: var(--mid);
}
.faq-item.open .faq-item-body { max-height: 400px; padding: 18px 24px; }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); }
.contact-info-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-info-text h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-text p { color: var(--mid); font-size: 14px; margin: 0; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 22px; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--lighter);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.captcha-section-1 {
  padding: 12px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--dark);
}

.hz-sidebar { padding-left: 20px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-widget h3 {
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-search { display: flex; gap: 0; }
.sidebar-search .form-control { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.sidebar-search .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 12px 16px; }
.category-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.category-list li:last-child { border: none; }
.category-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 500;
}
.category-list a:hover { color: var(--primary); }
.category-list a::before {
  content: '\f0a9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: var(--primary);
}
.recent-post {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.recent-post:last-child { border: none; }
.recent-post img {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.recent-post-text a {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.4;
}
.recent-post-text a:hover { color: var(--primary); }
.recent-post-date { font-size: 12px; color: var(--text-light); font-family: var(--font-head); }

.cta-section {
  padding: 80px 0;
  background: var(--primary);
  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.04'%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-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: var(--white); font-size: clamp(24px, 4vw, 42px); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; }

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.news-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform .5s;
  overflow: hidden;
}
.news-card:hover .news-card-img-inner { transform: scale(1.04); }
.news-card-img-inner { height: 100%; width: 100%; background-size: cover; background-position: center; transition: transform .5s; }
.news-card-body { padding: 22px; }
.news-date {
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.news-card-body h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.news-card-body h3 a { color: var(--dark); }
.news-card-body h3 a:hover { color: var(--primary); }
.news-card-body p { color: var(--mid); font-size: 14px; margin-bottom: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 28px;
  color: var(--white);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.hz-footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 40px; }
.footer-about { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-heading {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--primary);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-recent li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-recent li:last-child { border: none; }
.footer-recent a { color: rgba(255,255,255,.7); font-size: 13px; font-family: var(--font-head); }
.footer-recent a:hover { color: var(--white); }
.footer-recent-date { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 3px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}
.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-newsletter { margin-top: 16px; }
.footer-newsletter-form { display: flex; gap: 0; margin-top: 12px; }
.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-form button {
  padding: 12px 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.footer-newsletter-form button:hover { background: var(--primary-dark); }
.footer-portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 4px; }
.footer-portfolio-grid a img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.footer-portfolio-grid a:hover img { opacity: .75; }
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { color: rgba(255,255,255,.4); font-size: 13px; font-family: var(--font-head); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: 13px; font-family: var(--font-head); }
.footer-bottom-links a:hover { color: var(--white); }

.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

.detail-content { font-size: 16px; line-height: 1.9; color: var(--text); }
.detail-content h2,h3,h4 { margin: 28px 0 14px; }
.detail-content p { margin-bottom: 16px; }
.detail-content img { border-radius: var(--radius); margin: 20px 0; }
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--mid);
  font-family: var(--font-head);
}
.detail-meta span { display: flex; align-items: center; gap: 6px; }
.detail-meta a { color: var(--mid); }
.detail-meta a:hover { color: var(--primary); }

.event-info-box {
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.event-info-box h4 { font-size: 15px; margin-bottom: 14px; }
.event-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.event-info-row:last-child { border: none; }
.event-info-row i { color: var(--primary); width: 18px; text-align: center; }

.search-result-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.search-result-item h3 { font-size: 18px; margin-bottom: 6px; }
.search-result-item h3 a { color: var(--dark); }
.search-result-item h3 a:hover { color: var(--primary); }
.search-result-item p { color: var(--mid); font-size: 14px; margin: 0; }

#hz-preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease;
}
#hz-preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pagination-wrap { display: flex; justify-content: center; padding: 32px 0 0; }
.pagination-wrap ul { display: flex; gap: 6px; list-style: none; padding: 0; }
.pagination-wrap a, .pagination-wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.pagination-wrap a:hover, .pagination-wrap .active a {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.map-wrap { border-radius: var(--radius); overflow: hidden; height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

.owl-dots { text-align: center; margin-top: 24px; }
.owl-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 4px;
  transition: var(--transition);
}
.owl-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.primary-bg { background: var(--primary) !important; }
.primary-color { color: var(--primary) !important; }
.primary-border { border-color: var(--primary) !important; }

.hz-search-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.hz-search-modal.active { opacity: 1; visibility: visible; }
.hz-search-modal-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.8); backdrop-filter: blur(5px); cursor: pointer; }
.hz-search-modal-content { position: relative; z-index: 1; width: 100%; max-width: 600px; padding: 0 20px; transform: translateY(-20px); transition: var(--transition); }
.hz-search-modal.active .hz-search-modal-content { transform: translateY(0); }
.hz-search-modal-content form { display: flex; align-items: center; background: var(--white); border-radius: 50px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.hz-search-modal-content input { flex: 1; border: none; padding: 20px 30px; font-size: 18px; outline: none; color: var(--dark); background: transparent; }
.hz-search-modal-content button { background: var(--primary); color: var(--white); border: none; padding: 0 30px; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; align-self: stretch; }
.hz-search-modal-content button:hover { background: var(--primary-dark); }

.mobile-close-btn { display: none; }
@media (max-width: 991px) {
  .navbar-menu > li.mobile-close-btn { display: block; position: absolute !important; top: 16px !important; right: 24px !important; font-size: 28px; cursor: pointer; color: var(--dark); z-index: 1005; }
  .mobile-close-btn:hover { color: var(--primary); }
}


