/* company-template-static.css — Static styles for Company Template */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: #2c2c2c;
  background: #fff;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Navbar */
.navbar-links a {
  font-weight: 700;
  white-space: nowrap;
}

.navbar-links a.nav-active,
.navbar-links a:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: unset;
  max-height: none;
  display: block;
  overflow: hidden;
  background: #1a1a2e;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-sizer-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  line-height: 0 !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: 100% 100% !important;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .28) 100%);
}

/* Hero floating particle effect */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-fx .fx-p {
  position: absolute;
  bottom: -10%;
  border-radius: 50%;
}

@keyframes fx-twinkle {

  0%,
  100% {
    opacity: .15;
    transform: scale(.7);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes fx-fall {
  0% {
    transform: translateY(-10%) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(620px) translateX(24px);
    opacity: .2;
  }
}

@keyframes fx-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  100% {
    transform: translateY(-620px) translateX(18px);
    opacity: 0;
  }
}

@keyframes fx-drift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  15% {
    opacity: .9;
  }

  50% {
    transform: translateY(-260px) translateX(-20px);
  }

  100% {
    transform: translateY(-560px) translateX(20px);
    opacity: 0;
  }
}

/* Particle Variants */
.hero-fx-sparkles .fx-p {
  top: var(--fx-top);
  left: var(--fx-left);
  bottom: auto;
  width: var(--fx-size);
  height: var(--fx-size);
  background: #fff;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, .8);
  animation: fx-twinkle var(--fx-dur) ease-in-out var(--fx-delay) infinite;
}

.hero-fx-snow .fx-p {
  top: -5%;
  left: var(--fx-left);
  bottom: auto;
  width: var(--fx-size);
  height: var(--fx-size);
  background: rgba(255, 255, 255, .85);
  animation: fx-fall var(--fx-dur) linear var(--fx-delay) infinite;
}

.hero-fx-bubbles .fx-p {
  left: var(--fx-left);
  width: var(--fx-size);
  height: var(--fx-size);
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  animation: fx-rise var(--fx-dur) ease-in var(--fx-delay) infinite;
}

.hero-fx-tech .fx-p {
  top: var(--fx-top);
  left: var(--fx-left);
  bottom: auto;
  width: var(--fx-size);
  height: var(--fx-size);
  border-radius: 2px;
  background: #22d3ee;
  box-shadow: 0 0 6px 1px rgba(34, 211, 238, .8);
  animation: fx-twinkle var(--fx-dur) ease-in-out var(--fx-delay) infinite;
}

.hero-fx-confetti .fx-p {
  top: -5%;
  left: var(--fx-left);
  bottom: auto;
  border-radius: 1px;
  width: calc(var(--fx-size) * 1.6);
  height: var(--fx-size);
  background: hsl(var(--fx-hue), 85%, 60%);
  animation: fx-confetti-fall var(--fx-dur) linear var(--fx-delay) infinite;
}

@keyframes fx-confetti-fall {
  0% {
    transform: translateY(-10%) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(620px) rotate(540deg);
    opacity: .15;
  }
}

.hero-fx-lines .fx-p {
  top: -10%;
  left: var(--fx-left);
  bottom: auto;
  border-radius: 2px;
  width: 2px;
  height: calc(var(--fx-size) * 9);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .9));
  animation: fx-streak var(--fx-dur) linear var(--fx-delay) infinite;
}

@keyframes fx-streak {
  0% {
    transform: translateY(-15%) translateX(0) rotate(18deg);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  100% {
    transform: translateY(640px) translateX(180px) rotate(18deg);
    opacity: 0;
  }
}

.hero-fx-rain .fx-p {
  top: -10%;
  left: var(--fx-left);
  bottom: auto;
  border-radius: 2px;
  width: 1.5px;
  height: calc(var(--fx-size) * 6);
  background: linear-gradient(to bottom, rgba(186, 230, 253, 0), rgba(186, 230, 253, .85));
  animation: fx-rain-fall var(--fx-dur) linear var(--fx-delay) infinite;
}

@keyframes fx-rain-fall {
  0% {
    transform: translateY(-15%);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  100% {
    transform: translateY(640px);
    opacity: .3;
  }
}

.hero-fx-meteor .fx-p {
  top: -10%;
  left: var(--fx-left);
  bottom: auto;
  border-radius: 3px;
  width: 3px;
  height: calc(var(--fx-size) * 13);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, .7);
  animation: fx-meteor-fall var(--fx-dur) linear var(--fx-delay) infinite;
}

@keyframes fx-meteor-fall {
  0% {
    transform: translateY(-15%) translateX(0) rotate(24deg);
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  100% {
    transform: translateY(640px) translateX(260px) rotate(24deg);
    opacity: 0;
  }
}

.hero-fx-fireflies .fx-p {
  top: var(--fx-top);
  left: var(--fx-left);
  bottom: auto;
  width: var(--fx-size);
  height: var(--fx-size);
  background: #d9f99d;
  box-shadow: 0 0 8px 2px rgba(217, 249, 157, .85);
  animation: fx-firefly var(--fx-dur) ease-in-out var(--fx-delay) infinite;
}

@keyframes fx-firefly {

  0%,
  100% {
    opacity: .2;
    transform: translate(0, 0) scale(.8);
  }

  25% {
    opacity: 1;
    transform: translate(var(--fx-drift), -14px) scale(1.1);
  }

  50% {
    opacity: .4;
    transform: translate(calc(var(--fx-drift) * -1), 6px) scale(.9);
  }

  75% {
    opacity: 1;
    transform: translate(var(--fx-drift), -8px) scale(1.05);
  }
}

.hero-fx-embers .fx-p {
  left: var(--fx-left);
  width: var(--fx-size);
  height: var(--fx-size);
  background: #fb923c;
  box-shadow: 0 0 6px 2px rgba(251, 146, 60, .75);
  animation: fx-ember-rise var(--fx-dur) ease-out var(--fx-delay) infinite;
}

@keyframes fx-ember-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    transform: translateY(-540px) translateX(var(--fx-drift));
    opacity: 0;
  }
}

.hero-fx-dust .fx-p {
  left: var(--fx-left);
  width: var(--fx-size);
  height: var(--fx-size);
  background: rgba(245, 184, 0, .75);
  box-shadow: 0 0 4px 1px rgba(245, 184, 0, .5);
  animation: fx-drift var(--fx-dur) ease-in-out var(--fx-delay) infinite;
}

.hero-fx-bokeh .fx-p {
  top: var(--fx-top);
  left: var(--fx-left);
  bottom: auto;
  width: calc(var(--fx-size) * 4);
  height: calc(var(--fx-size) * 4);
  background: radial-gradient(circle, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, 0) 70%);
  animation: fx-bokeh-float var(--fx-dur) ease-in-out var(--fx-delay) infinite;
}

@keyframes fx-bokeh-float {

  0%,
  100% {
    opacity: .25;
    transform: translate(0, 0) scale(.9);
  }

  50% {
    opacity: .7;
    transform: translate(var(--fx-drift), -24px) scale(1.15);
  }
}

.hero-fx-stars .fx-p {
  top: var(--fx-top);
  left: var(--fx-left);
  bottom: auto;
  width: calc(var(--fx-size) * .6);
  height: calc(var(--fx-size) * .6);
  background: #fff;
  box-shadow: 0 0 4px 1px rgba(255, 255, 255, .9);
  animation: fx-twinkle var(--fx-dur) ease-in-out var(--fx-delay) infinite;
}

.hero-fx-matrix .fx-p {
  top: -10%;
  left: var(--fx-left);
  bottom: auto;
  border-radius: 1px;
  width: 2px;
  height: calc(var(--fx-size) * 5);
  background: linear-gradient(to bottom, rgba(74, 222, 128, 0), rgba(74, 222, 128, .9));
  animation: fx-rain-fall var(--fx-dur) linear var(--fx-delay) infinite;
}

.hero-fx-balloons .fx-p {
  left: var(--fx-left);
  width: calc(var(--fx-size) * 2.2);
  height: calc(var(--fx-size) * 2.8);
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  background: hsl(var(--fx-hue), 75%, 60%);
  opacity: .85;
  animation: fx-balloon-rise var(--fx-dur) ease-in-out var(--fx-delay) infinite;
}

@keyframes fx-balloon-rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  12% {
    opacity: .85;
  }

  50% {
    transform: translateY(-280px) translateX(var(--fx-drift));
  }

  100% {
    transform: translateY(-580px) translateX(0);
    opacity: 0;
  }
}

.hero-fx-wind .fx-p {
  top: var(--fx-top);
  left: -10%;
  bottom: auto;
  border-radius: 2px;
  width: calc(var(--fx-size) * 6);
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, .65), rgba(255, 255, 255, 0));
  animation: fx-wind-blow var(--fx-dur) linear var(--fx-delay) infinite;
}

@keyframes fx-wind-blow {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateX(760px);
    opacity: 0;
  }
}

.hero-fx-rays .fx-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .16) 50%, rgba(255, 255, 255, 0) 100%);
  transform-origin: 0 50%;
  animation: fx-ray-rotate var(--fx-dur) linear infinite;
}

@keyframes fx-ray-rotate {
  0% {
    transform: rotate(var(--fx-rot, 0deg));
  }

  100% {
    transform: rotate(calc(var(--fx-rot, 0deg) + 360deg));
  }
}

.hero-split-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  gap: 3rem;
}

.hero-content {
  color: #fff;
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: .92;
}

.hero-content .hero-desc {
  font-size: .95rem;
  opacity: .8;
  margin-top: .5rem;
}

.hero.hl-left .hero-split-wrap {
  justify-content: flex-start;
}

.hero.hl-left .hero-content {
  text-align: left;
}

.hero.hl-right .hero-split-wrap {
  justify-content: flex-end;
}

.hero.hl-right .hero-content {
  text-align: right;
}

.hero.hl-split-right .hero-split-wrap {
  justify-content: space-between;
}

.hero.hl-split-right .hero-content {
  flex: 1;
  text-align: left;
}

.hero.hl-split-right .hero-split-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero.hl-split-left .hero-split-wrap {
  justify-content: space-between;
}

.hero.hl-split-left .hero-content {
  flex: 1;
  text-align: left;
  order: 2;
}

.hero.hl-split-left .hero-split-img {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 1;
}

.hero-split-img img {
  width: 100%;
  max-width: 460px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.hero-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.hero-zone-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 1.25rem;
}

.hero-zone-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 1.25rem;
}

.hero-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  opacity: 0;
}

.hero-zone:hover .hero-arrow-btn {
  opacity: 1;
  background: rgba(255, 255, 255, .32);
  transform: scale(1.08);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: all .3s ease;
}

.hero-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* Section Base */
.section-label {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.section-more-btn {
  text-align: center;
  margin-top: 2rem;
}

.btn-more,
a.btn-more,
.section-more-btn a,
.section-more-btn .btn-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  padding: 0.6rem 1.5rem !important;
  background: var(--btn-color, var(--primary)) !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
}

.btn-more *,
a.btn-more *,
.section-more-btn a *,
.section-more-btn .btn-more * {
  color: #ffffff !important;
}

.btn-more:hover,
a.btn-more:hover,
.section-more-btn a:hover,
.section-more-btn .btn-more:hover {
  color: #ffffff !important;
  background: var(--btn-color, var(--primary)) !important;
  filter: brightness(1.12) !important;
  opacity: 0.95 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* About Section */
.about-section {
  padding: 5.5rem 0;
}

.about-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.about-inner.no-img {
  flex-direction: column;
  max-width: 800px;
  text-align: center;
}

.about-img-wrap {
  flex: 1;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 1.25rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem;
}

.about-points .point {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  color: #333;
}

.about-points .point .check {
  color: var(--primary);
  font-weight: 800;
}

/* Layout Specific Styles */
.about-section.al-img-right .about-inner .about-text {
  order: 1;
}

.about-section.al-img-right .about-inner .about-img-wrap {
  order: 2;
}

.about-section.al-img-left .about-inner .about-img-wrap {
  order: 1;
}

.about-section.al-img-left .about-inner .about-text {
  order: 2;
}

.about-section.al-img-top .about-inner {
  grid-template-columns: 1fr;
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.about-section.al-img-top .about-top-label {
  display: inline-flex;
  align-self: center;
  text-align: center;
  margin: 0 auto 1.5rem auto;
}

.about-section.al-img-top .about-img-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.about-section.al-img-top .about-img-wrap img {
  height: auto;
  max-height: 480px;
  margin: 0 auto;
}

.about-section.al-img-top .about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.about-section.al-img-top .about-points {
  align-items: center;
}

.about-section.al-img-top .section-more-btn {
  text-align: center;
}

/* Services Section */
.services-section {
  padding: 5.5rem 0;
}

.services-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.services-grid.sl-3col {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid.sl-4col {
  grid-template-columns: repeat(4, 1fr);
}

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

.service-card {
  background: #fff;
  border-radius: 0;
  padding: 2.2rem 1.8rem;
  box-shadow: none;
  transition: all .3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: var(--primary);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.service-card-icon .material-icons {
  font-size: 1.8rem;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}

.service-card-desc {
  font-size: .92rem;
  line-height: 1.6;
  color: #666;
  flex: 1;
}

/* News Section */
.news-section {
  padding: 5.5rem 0;
}

.news-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.news-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all .3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border-color: var(--primary);
}

.news-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card-body {
  padding: 1.4rem 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-date {
  font-size: .8rem;
  color: #888;
  margin-bottom: .5rem;
}

.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
  line-height: 1.4;
}

.news-card-desc {
  font-size: .88rem;
  line-height: 1.6;
  color: #666;
  flex: 1;
}

/* Gallery Section */
.gallery-section {
  padding: 5.5rem 0;
}

.gallery-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-grid {
  columns: 3;
  column-gap: 1.5rem;
}

.gallery-grid.gl-4col {
  columns: 4;
}

.gallery-grid.gl-2col {
  columns: 2;
}

.gallery-grid.gl-masonry {
  columns: 3;
}

.gallery-item {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  break-inside: avoid;
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
}

/* Team Section */
.team-section {
  padding: 5.5rem 0;
}

.team-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.team-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid #f0f0f0;
  transition: all .3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .11);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
}

.team-role {
  font-size: .85rem;
  color: var(--primary);
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  padding: 5.5rem 0;
}

.contact-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: block;
}

.contact-info-wrap h2 {
  margin-bottom: 1rem;
}

.contact-info-wrap p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  color: #444;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-map-wrap {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  height: 380px;
  border: 1px solid #e2e8f0;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Split Layout (Left: Map, Right: Info) */
.contact-split-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  text-align: left;
  margin-top: 1.5rem;
}

.contact-map-col {
  width: 100%;
  min-height: 420px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.contact-map-col iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-col .social-block {
  margin-top: 0.5rem;
}

.contact-info-col .block-label {
  text-align: left;
  margin-bottom: 0.75rem;
}

.contact-info-col .social-links {
  justify-content: flex-start;
}

@media(max-width:900px) {
  .contact-split-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-map-col,
  .contact-map-col iframe {
    min-height: 350px;
    height: 350px;
  }
}

/* Scroll Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 99;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

/* Footer */
.footer {
  background: var(--dark);
  color: #aaa;
  padding: 3rem 0 2rem;
  font-size: .9rem;
  text-align: center;
}

.footer-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: .8rem;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, .08);
  width: 100%;
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* Responsive Media Queries */
@media(max-width:992px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid.sl-3col,
  .services-grid.sl-4col {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery-grid,
  .gallery-grid.gl-4col {
    columns: 2;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media(max-width:640px) {

  .services-grid.sl-3col,
  .services-grid.sl-4col,
  .services-grid.sl-2col {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-grid,
  .gallery-grid.gl-4col,
  .gallery-grid.gl-2col {
    columns: 1;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .section-label {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .btn-more,
  a.btn-more,
  .section-more-btn a,
  .section-more-btn .btn-more {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.82rem !important;
  }

  .about-section,
  .services-section,
  .news-section,
  .gallery-section,
  .team-section,
  .contact-section {
    padding: 3.5rem 0;
  }
}

/* Footer Layout Overrides */
.fl-minimal .footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fl-minimal .footer-brand-row h3 {
  margin: 0;
}

.fl-brand-contact .footer-brand-contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 3rem;
}

.footer-logo {
  filter: drop-shadow(1px 0 0 #ffffff) drop-shadow(-1px 0 0 #ffffff) drop-shadow(0 1px 0 #ffffff) drop-shadow(0 -1px 0 #ffffff);
}

.fl-brand-contact .footer-logo-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.fl-brand-contact .footer-logo-title-row h2 {
  margin: 0;
  text-align: center;
}

.fl-brand-contact .footer-tagline {
  margin: 0 auto;
  text-align: center;
}

.fl-brand-contact .contact-title {
  text-align: left;
}

/* Responsive Overrides */
@media(max-width:768px) {
  .hero {
    height: 56.25vw;
    min-height: 240px;
    max-height: 450px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.25rem, 5vw, 2rem);
    margin-bottom: 0.35rem;
  }

  .hero-content p {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }

  .hero-content .hero-desc {
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }

  .hero-dots {
    bottom: 0.75rem;
    gap: 0.35rem;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.active {
    width: 20px;
  }

  .hero-zone {
    width: 15%;
  }

  .hero-arrow {
    font-size: 1.75rem;
  }

  .hero-zone-prev {
    padding-left: 0.5rem;
  }

  .hero-zone-next {
    padding-right: 0.5rem;
  }

  .about-inner {
    flex-direction: column;
    gap: 2rem;
  }

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

  .menu-grid.ml-list .menu-card {
    flex-direction: column;
  }

  .menu-grid.ml-list .menu-card .menu-img {
    width: 100%;
  }

  .gallery-grid {
    columns: 2 !important;
  }

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

  .news-tpl-grid {
    grid-template-columns: 1fr !important;
  }

  .news-tpl-grid.nl-list .news-tpl-card {
    flex-direction: column;
  }

  .news-tpl-grid.nl-list .news-tpl-img {
    width: 100%;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .about-section,
  .menu-section,
  .gallery-section,
  .chef-section,
  .news-section {
    padding: 2.5rem 1rem;
  }
}

@media(max-width:480px) {
  .hero {
    height: 56.25vw;
    min-height: 220px;
    max-height: 360px;
  }

  .menu-grid,
  .chef-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-grid {
    columns: 1 !important;
  }

  .section-label {
    font-size: 1rem;
    padding: 6px 16px;
    margin-bottom: 0.75rem;
  }

  .section-sub {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }
}

/* ─── Sidebar Menu Layout & Component Styles ─── */
.site-main-with-sidebar {
  display: flex;
  gap: 2.25rem;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.site-main-with-sidebar.mode-right,
.site-main-with-sidebar.sidebar-pos-right {
  flex-direction: row-reverse;
}

.site-main-with-sidebar.mode-both {
  flex-direction: row;
}

.site-sidebar-component {
  width: 270px;
  min-width: 250px;
  max-width: 300px;
  flex-shrink: 0;
}

.site-main-with-sidebar.mode-both .site-sidebar-component {
  width: 240px;
  min-width: 220px;
  max-width: 260px;
}

.sidebar-inner-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}

.sidebar-block-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  width: 100%;
}

.sidebar-block-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-block-header {
  background: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  width: 100%;
}

.sidebar-header-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: inherit;
  letter-spacing: 0.2px;
  text-align: center;
  width: 100%;
}

.sidebar-menu-list {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
}

.sidebar-menu-item {
  border-bottom: 1px dashed #f1f5f9;
}

.sidebar-menu-item:last-child {
  border-bottom: none;
}

.sidebar-menu-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: #334155;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: all 0.2s ease;
  gap: 0.6rem;
}

.sidebar-item-bullet {
  color: var(--primary);
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.sidebar-item-text {
  flex: 1;
  line-height: 1.4;
}

.sidebar-item-arrow {
  font-size: 1.1rem;
  color: #94a3b8;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.sidebar-menu-link:hover {
  background: #f8fafc;
  color: var(--primary);
  padding-left: 1.45rem;
}

.sidebar-menu-link:hover .sidebar-item-bullet {
  transform: rotate(45deg);
}

.sidebar-menu-link:hover .sidebar-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}

.sidebar-menu-item.active .sidebar-menu-link {
  background: #eff6ff;
  color: var(--primary);
  font-weight: 700;
  border-left: 3px solid var(--primary);
}

.sidebar-menu-item.active .sidebar-item-bullet {
  color: var(--primary);
}

.sidebar-content-area {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .site-main-with-sidebar {
    flex-direction: column !important;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .site-sidebar-component {
    width: 100%;
    max-width: 100%;
  }
  .sidebar-inner-wrap {
    position: static;
  }
}