/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary:    #1A5276;
  --primary-light: #2471a3;
  --accent:     #EF9F27;
  --accent-dark: #d4891a;
  --dark:       #0B3D6E;
  --darker:     #072d52;
  --light-bg:   #f0f6ff;
  --gray-soft:  #f7f9fc;
  --text-main:  #1a2a3a;
  --text-muted: #6b7a8d;
  --white:      #ffffff;
  --border:     #dde6f0;
  --shadow-sm:  0 2px 12px rgba(26,82,118,.08);
  --shadow-md:  0 6px 28px rgba(26,82,118,.14);
  --shadow-lg:  0 16px 48px rgba(26,82,118,.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans Georgian', 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a, a:hover, a:focus, a:active, a:visited { text-decoration: none !important; transition: color var(--transition); }
img { max-width: 100%; }

/* ===== UTILITIES ===== */
.text-accent    { color: var(--accent) !important; }
.text-primary-c { color: var(--primary) !important; }
.bg-primary-c   { background-color: var(--primary) !important; }
.bg-dark-c      { background-color: var(--dark) !important; }
.bg-accent      { background-color: var(--accent) !important; }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: .6rem 1.6rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239,159,39,.35);
}
.btn-primary-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: .55rem 1.5rem;
  border-radius: 50px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-primary-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.section-label {
  display: inline-block;
  background: rgba(239,159,39,.15);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
  border-left: 3px solid var(--accent);
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .6rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
}
.divider-accent {
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin: .8rem 0 1.4rem;
}
.divider-accent.center { margin-left: auto; margin-right: auto; }

/* ===== TOP INFO BAR ===== */
#top-bar {
  background: var(--darker);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
#top-bar a { color: rgba(255,255,255,.85); }
#top-bar a:hover { color: var(--accent); }
#top-bar .top-bar-icon { color: var(--accent); margin-right: .3rem; }
#top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  font-size: .75rem;
  transition: all var(--transition);
  margin-left: .3rem;
}
#top-bar .social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ===== NAVBAR ===== */
#main-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow var(--transition);
}
#main-nav.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 0;
}
.brand-logo-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo-wrap svg { width: 28px; height: 28px; }
.brand-text { line-height: 1.2; }
.brand-text .name {
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
  letter-spacing: -.01em;
}
.brand-text .tagline {
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  letter-spacing: .03em;
}
.navbar-nav .nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: .88rem;
  padding: 1.3rem .85rem !important;
  position: relative;
  transition: color var(--transition);
  letter-spacing: .01em;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  transition: width var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: .6rem;
  min-width: 220px;
  top: calc(100% + 4px) !important;
  border-top: 3px solid var(--accent);
  animation: dropFade .2s ease;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: .5rem .9rem;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 1.1rem;
}
.dropdown-item .bi { color: var(--accent); }

/* Hover dropdown — desktop only */
@media (min-width: 992px) {
  .nav-item.dropdown { position: relative; }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  /* remove the caret from toggle so it looks cleaner */
  .nav-item.dropdown > .dropdown-toggle::after { display: inline-block; }
}
.nav-cta-btn {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: .5rem 1.2rem !important;
  border-radius: 50px !important;
  margin-left: .5rem;
  font-weight: 700 !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--accent-dark) !important; color: var(--white) !important; }
.navbar-toggler {
  border: 2px solid var(--primary);
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231A5276' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  #main-nav .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .navbar-nav .nav-link::after { display: none; }
}

/* ===== HERO CAROUSEL ===== */
#hero-carousel { position: relative; }
.hero-slide {
  position: relative;
  min-height: 600px;
  height: 88vh;
  max-height: 780px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,61,110,.82) 0%, rgba(26,82,118,.55) 55%, rgba(26,82,118,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 660px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(239,159,39,.2);
  border: 1px solid rgba(239,159,39,.5);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
  font-size: .95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-hero-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239,159,39,.4);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  font-size: .95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.carousel-control-prev, .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  opacity: 1;
  transition: all var(--transition);
  margin: 0 1rem;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.carousel-control-prev-icon, .carousel-control-next-icon { width: 18px; height: 18px; }
.carousel-indicators { bottom: 3.5rem; gap: .4rem; }
.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.5) !important;
  border: none !important;
  margin: 0 3px;
  transition: all var(--transition);
}
.carousel-indicators button.active {
  background: var(--accent) !important;
  width: 28px !important;
  border-radius: 4px !important;
}
@media (max-width: 991px) {
  .hero-slide { min-height: 480px; height: auto; padding: 100px 0 80px; }
}
@media (max-width: 575px) {
  .hero-title { font-size: 1.7rem; }
}

/* ===== STATS BAR ===== */
#stats-bar {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.stats-inner { display: flex; align-items: stretch; }
.stat-item {
  flex: 1;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background var(--transition);
  cursor: default;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.07); }
.stat-icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(239,159,39,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}
.stat-text .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .1rem;
}
.stat-text .num sup { font-size: 1.1rem; }
.stat-text .label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .2rem;
  font-weight: 400;
}
@media (max-width: 991px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 575px) {
  .stat-item { flex: 0 0 100%; }
}

/* ===== ABOUT STRIP ===== */
#about-strip { padding: 5rem 0; background: var(--light-bg); }
.about-img-stack { position: relative; padding: 1.5rem 1.5rem 0 0; }
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}
.about-img-badge .badge-num { font-size: 2.2rem; font-weight: 800; line-height: 1; display: block; }
.about-img-badge .badge-label { font-size: .78rem; font-weight: 500; opacity: .9; line-height: 1.3; }
.about-feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  font-size: .92rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}
.about-feature-list li:last-child { border-bottom: none; }
.about-feature-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239,159,39,.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.highlight-word { position: relative; display: inline-block; }
.highlight-word::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
@media (max-width: 575px) {
  .about-img-badge { right: 0.5rem; bottom: -0.5rem; }
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: 5rem 0;
  background: var(--gray-soft);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239,159,39,.08) 0%, transparent 70%);
  pointer-events: none;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); color: var(--white); transform: rotate(-6deg) scale(1.05); }
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.service-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.2rem; }
.service-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: var(--accent); gap: .7rem; }

/* ===== NEWS SECTION ===== */
#news { padding: 5rem 0; background: var(--white); }
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.news-img-wrap { position: relative; overflow: hidden; height: 220px; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.news-card:hover .news-img-wrap img { transform: scale(1.06); }
.news-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--light-bg), #d0e8f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary); opacity: .3;
}
.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.news-meta span { display: flex; align-items: center; gap: .3rem; }
.news-meta .bi { color: var(--accent); }
.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: .7rem;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover .news-title { color: var(--primary); }
.news-excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.read-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition), color var(--transition);
}
.read-more:hover { color: var(--accent); gap: .6rem; }

/* ===== GALLERY SECTION ===== */
#gallery { padding: 5rem 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,61,110,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform: translate(-50%, -50%) scale(1); }
.gallery-caption { color: var(--white); font-size: .85rem; font-weight: 600; }
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== CTA BANNER ===== */
#cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' 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-title { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); line-height: 1.2; }
.cta-title span { color: var(--accent); }
.cta-desc { color: rgba(255,255,255,.78); font-size: 1rem; margin-top: .7rem; }

/* ===== FOOTER ===== */
#footer {
  background: var(--darker);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 0;
}
.footer-logo-wrap .brand-logo-wrap { background: var(--accent); }
.footer-logo-wrap .brand-text .name { color: var(--white); }
.footer-logo-wrap .brand-text .tagline { color: rgba(255,255,255,.55); }
.footer-about { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.65); margin: 1rem 0 1.5rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition);
  margin-right: .4rem;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: .4rem; }
.footer-links a .bi { font-size: .65rem; color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .9rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(239,159,39,.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}
.footer-newsletter input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .88rem;
  flex: 1;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter input:focus { border-color: var(--accent); }
.footer-newsletter .btn-sub {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: .6rem 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  font-weight: 700;
  transition: background var(--transition);
  cursor: pointer;
}
.footer-newsletter .btn-sub:hover { background: var(--accent-dark); }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== LIGHTBOX ===== */
#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,45,82,.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
#lightbox-overlay.active { opacity: 1; pointer-events: all; }
#lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.92);
  transition: transform .35s ease;
}
#lightbox-overlay.active img { transform: scale(1); }
#lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
#lb-close:hover { background: var(--accent); }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(239,159,39,.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ===== ADMIN SIDEBAR LAYOUT ===== */
body.admin-body { background: #f1f4f8; font-family: 'Noto Sans Georgian', 'Inter', sans-serif; }
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--primary);
  position: fixed;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform .3s ease;
  overflow-y: auto;
}
.admin-sidebar .sidebar-brand {
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  line-height: 1.3;
}
.admin-sidebar .sidebar-brand span { color: var(--accent); }
.admin-sidebar .sidebar-brand i { font-size: 1.4rem; color: var(--accent); }
.admin-sidebar nav { flex: 1; padding: 1rem 0; }
.admin-sidebar .nav-group-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 1rem 1.5rem .4rem;
}
.admin-sidebar .sidebar-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .62rem 1.5rem;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.admin-sidebar .sidebar-link i { font-size: .95rem; width: 18px; text-align: center; }
.admin-sidebar .sidebar-link:hover,
.admin-sidebar .sidebar-link.active { background: rgba(255,255,255,.09); color: var(--white); border-left-color: var(--accent); }
.admin-sidebar .sidebar-footer { padding: 1rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.admin-wrapper { margin-left: 260px; min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid #e5e9f0;
  padding: .78rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.admin-topbar .topbar-title { font-weight: 700; color: var(--primary); font-size: 1.05rem; }
.admin-topbar .topbar-right { display: flex; align-items: center; gap: 1rem; }
.admin-topbar .admin-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
}
.admin-content { padding: 2rem 1.5rem; flex: 1; }
.sidebar-toggle-btn {
  display: none;
  background: none; border: none;
  font-size: 1.3rem; color: var(--primary); padding: 0;
}
.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 99;
}
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-wrapper { margin-left: 0; }
  .sidebar-toggle-btn { display: block; }
  .sidebar-overlay.open { display: block; }
}
.admin-table { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table thead { background: var(--primary); color: var(--white); }
.admin-table thead th { font-weight: 600; border: none; padding: .85rem 1rem; }
.admin-table tbody tr { transition: background var(--transition); }
.admin-table tbody tr:hover { background: rgba(26,82,118,.04); }
.admin-table td { vertical-align: middle; padding: .75rem 1rem; }
.admin-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.admin-card .card-heading {
  font-size: 1rem; font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid #f1f4f8;
  display: flex; align-items: center; gap: .5rem;
}
.admin-card .card-heading i { color: var(--accent); }
.admin-form label { font-weight: 600; font-size: .88rem; color: var(--text-main); margin-bottom: .35rem; }
.admin-form .form-control, .admin-form .form-select {
  border-radius: 8px; border-color: #d3dce6; font-size: .92rem; padding: .55rem .9rem;
}
.admin-form .form-control:focus, .admin-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,82,118,.12);
}
.dash-stat {
  background: var(--white);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1.2rem;
}
.dash-stat .stat-icon-box {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.dash-stat .stat-info .stat-val { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.dash-stat .stat-info .stat-lbl { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }
.btn-action { padding: .28rem .65rem; font-size: .8rem; border-radius: 6px; }
.img-preview-thumb { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; border: 2px solid #e5e9f0; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
  color: var(--white);
}
.page-header h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .5rem; }
.breadcrumb-item a { color: rgba(255,255,255,.75); }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ===== ALERT OVERRIDES ===== */
.alert { border-radius: 10px; border: none; font-size: .93rem; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger  { background: #fee2e2; color: #991b1b; }

/* ===== COUNTER ===== */
.counter-num { display: inline-block; }
