:root {
  --bg: #0b0b0b;
  --bg2: #101010;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: #050505;
  color: var(--text);
  overflow-x: hidden;
}

/* Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: grid;
  place-items: center;
}

.loader-inner {
  width: min(420px, 90vw);
  text-align: center;
}

.loader-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
}

.loader-text {
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 12px;
  opacity: 0.9;
}

/* .loader-line{
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}
.loader-line::after{
  content:"";
  position:absolute;
  left:-40%;
  top:0;
  height:100%;
  width:40%;
  background: rgba(255,255,255,0.9);
  animation: loadMove 1.1s infinite ease-in-out;
}
@keyframes loadMove{
  0%{ left:-40%; }
  100%{ left:110%; }
} */

.loader-line {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar {
  display: block;
  height: 100%;
  width: 40%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  animation: loadMove 1.1s infinite ease-in-out;
}

@keyframes loadMove {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(280%);
  }
}


/* Navbar */
.glass-nav {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  font-weight: 900;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #fff !important;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: center;
  background: radial-gradient(900px 500px at 15% 10%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(800px 450px at 85% 30%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #050505, #070707);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(circle at 40% 20%, rgba(0, 0, 0, 1), transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-highlight {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 4px 12px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.08);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mini-stat {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.mini-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.mini-stat-title {
  font-weight: 700;
  font-size: 14px;
}

.mini-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Hero Card */
.hero-card {
  position: relative;
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(700px 260px at 30% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.hero-logo-circle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-logo-letter {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: 22px;
}

.hero-logo-name {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.hero-logo-since {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-actions {
  display: flex;
  gap: 8px;
}

.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.icon-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.hero-card-body {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-cta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.cta-title {
  font-weight: 800;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.hero-floating-tag {
  position: absolute;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.tag-1 {
  top: 22%;
  left: -18px;
  transform: rotate(-6deg);
}

.tag-2 {
  bottom: 18%;
  right: -20px;
  transform: rotate(7deg);
}

.tag-3 {
  bottom: 52%;
  left: 72%;
  transform: rotate(-4deg);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.85;
  z-index: 2;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  margin: 0 auto 6px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.1s infinite ease-in-out;
}

@keyframes wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

.scroll-indicator .text {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */
.section {
  padding: 90px 0;
  background: #070707;
}

.section-dark {
  background: linear-gradient(180deg, #070707, #050505);
}

.section-head {
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-weight: 850;
  letter-spacing: -0.02em;
}

.section-sub {
  color: rgba(255, 255, 255, 0.65);
  max-width: 720px;
  margin: 0 auto;
}

/* About */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-point {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-point i {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.about-title {
  font-weight: 800;
}

.about-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.about-media {
  position: relative;
  padding: 10px;
}

.about-image-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-card.big {
  height: 420px;
}

.about-image-card.small {
  position: absolute;
  right: 0;
  bottom: -22px;
  width: 58%;
  height: 220px;
}

.about-stamp {
  position: absolute;
  left: -14px;
  top: 22px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  font-weight: 800;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.about-stamp .stamp-top {
  letter-spacing: 0.2em;
  font-size: 12px;
}

.about-stamp .stamp-mid {
  font-size: 18px;
}

.about-stamp .stamp-bot {
  font-size: 12px;
  opacity: 0.8;
}

/* Service Cards */
.service-card {
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
  font-size: 22px;
}

.service-card h5 {
  font-weight: 800;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
  transition: 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.1);
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  height: 280px;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  height: 280px;
}

.gallery-item:nth-child(3) {
  grid-column: span 4;
  height: 260px;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
  height: 260px;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  height: 260px;
}

.gallery-item:nth-child(6) {
  grid-column: span 12;
  height: 320px;
}

@media (max-width: 992px) {

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 12;
    height: 240px;
  }

  .about-image-card.big {
    height: 340px;
  }

  .about-image-card.small {
    position: relative;
    width: 100%;
    height: 220px;
    bottom: 0;
    margin-top: 14px;
  }
}

/* Reviews */
.review-card {
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.review-stars i {
  margin-right: 2px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.70);
  margin: 12px 0 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.name {
  font-weight: 800;
}

.meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Contact */
.contact-card {
  height: 100%;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: #fff;
  transition: 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.contact-ic {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 18px;
}

.contact-title {
  font-weight: 800;
}

.contact-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

.map-card {
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.map-top {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.map-note {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 600;
}

.map-frame {
  width: 100%;
  height: 528px;
  border: 0;
  filter: grayscale(1) contrast(1.1);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
}

.footer-brand {
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.footer-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.social-pill {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.social-pill:hover {
  transform: translateY(-4px);
}

/* Reveal helpers */
.reveal-up,
.reveal-right {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-right {
  transform: translateX(22px);
}

.footer-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff2b2b;
  transform-origin: center;
  position: relative;
  top: 6px;
}

.footer_txt{
  margin: 0;
}

.footer_txt a {
  color: rgba(255, 255, 255, 0.65);
}