:root {
  --black: #030306;
  --dark: #080810;
  --dark-soft: #11111c;
  --white: #ffffff;
  --muted: #b9b9c9;
  --pink: #ff0f8f;
  --purple: #6227ff;
  --orange: #ff7a18;
  --yellow: #ffcf31;
  --border: rgba(255,255,255,0.12);
  --gradient: linear-gradient(120deg, #2a5bff 0%, #8b22ff 30%, #ff0f8f 58%, #ff7a18 82%, #ffcf31 100%);
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: 96px 0; position: relative; }
.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.section-text { color: var(--muted); line-height: 1.8; font-size: 16px; max-width: 720px; }

.btn-um {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.btn-um::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: 0.35s ease;
  z-index: -1;
}
.btn-um-primary::before { opacity: 1; }
.btn-um:hover { transform: translateY(-3px); color: var(--white); box-shadow: 0 18px 50px rgba(255,15,143,0.22); }
.btn-um-outline:hover::before { opacity: 1; }

/* Navbar */
.um-navbar {
  padding: 16px 0;
  transition: 0.35s ease;
  z-index: 1000;
}
.um-navbar.scrolled,
.um-navbar.inner-navbar {
  background: rgba(3,3,6,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; color: var(--white) !important; }
.brand-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
}
.navbar-nav .nav-link {
  color: #e8e8ef;
  font-weight: 600;
  font-size: 14px;
  margin-left: 14px;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white); }
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: none !important;
}
.navbar-toggler-icon { filter: invert(1); }
.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: rgba(8,8,16,0.98);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 14px;
  margin-top: 14px;
}

/* Home Hero */
.hero { min-height: 100vh; background: var(--black); }
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item { min-height: 100vh; }
.hero-carousel .carousel-item {
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,3,6,0.94) 0%, rgba(3,3,6,0.76) 48%, rgba(3,3,6,0.36) 100%);
  z-index: -1;
}
.hero-carousel .carousel-item::after,
.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(255,15,143,0.24), transparent 28%), radial-gradient(circle at 86% 18%, rgba(255,122,24,0.20), transparent 26%);
  z-index: -1;
  pointer-events: none;
}
.hero-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 90px;
}
.hero-copy { max-width: 690px; }
.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.hero p {
  color: #dedee9;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 30px;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  opacity: 1;
}
.carousel-indicators .active {
  width: 42px;
  border-radius: 999px;
  border-color: transparent;
  background: var(--gradient);
}
.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  top: auto;
  bottom: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  opacity: 1;
  transition: 0.3s ease;
}
.carousel-control-prev { left: auto; right: 104px; }
.carousel-control-next { right: 32px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--pink); }

/* Inner Breadcrumb Hero */
.inner-hero {
  min-height: 360px;
  padding: 140px 0 70px;
  display: flex;
  align-items: end;
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,3,6,0.94), rgba(3,3,6,0.68));
  z-index: -1;
}
.inner-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.breadcrumb-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  color: #e8e8ef;
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb-wrap a { color: var(--white); }
.breadcrumb-wrap span { color: var(--pink); }

/* About */
.image-stack { position: relative; min-height: 540px; }
.image-card {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--dark-soft);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) contrast(1.02); }
.image-card.large { width: 72%; height: 420px; top: 0; left: 0; }
.image-card.small { width: 55%; height: 290px; bottom: 0; right: 0; }
.floating-badge {
  position: absolute;
  left: 36px;
  bottom: 72px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(3,3,6,0.76);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.floating-badge strong { font-size: 36px; font-family: 'Montserrat', sans-serif; }
.floating-badge span { color: var(--muted); display: block; margin-top: 2px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; color: #dddded; line-height: 1.7; margin-top: 14px; }
.about-point i { width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--gradient); font-style: normal; flex: 0 0 auto; margin-top: 2px; }

/* Cards */
.service-card,
.process-card,
.contact-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card { padding: 32px; }
.service-card::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.12;
  transition: 0.35s ease;
}
.service-card:hover,
.process-card:hover,
.contact-card:hover { transform: translateY(-8px); border-color: rgba(255,15,143,0.42); box-shadow: 0 20px 70px rgba(255,15,143,0.12); }
.service-card:hover::before { transform: scale(1.35); opacity: 0.22; }
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  font-size: 30px;
  margin-bottom: 22px;
}
.service-card h3,
.process-card h3,
.contact-card h3 { font-family: 'Montserrat', sans-serif; font-size: 21px; margin-bottom: 12px; }
.service-card p,
.process-card p,
.contact-card p { color: var(--muted); line-height: 1.8; font-size: 14px; margin-bottom: 0; }

.process { background: radial-gradient(circle at 50% 0%, rgba(98,39,255,0.18), transparent 35%), var(--dark); }
.process-card { padding: 28px; min-height: 220px; }
.process-card span { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 900; margin-bottom: 22px; }

/* Gallery */
.gallery-item {
  height: 100%;
  min-height: 230px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
}
.gallery-item.gallery-tall { min-height: 480px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.45s ease; }
.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(3,3,6,0.68);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

/* Testimonials */
.testimonial-box {
  border: 1px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  padding: 48px;
  min-height: 270px;
}
.testimonial-box p {
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.45;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-bottom: 24px;
}
.client { color: var(--muted); font-weight: 600; }

/* Contact */
.contact-card { padding: 30px; }
.contact-form {
  border: 1px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  padding: 34px;
}
.form-control, .form-select, textarea.form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 16px;
  padding: 13px 15px;
}
.form-control::placeholder, textarea.form-control::placeholder { color: #858599; }
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,15,143,0.5);
  box-shadow: 0 0 0 0.25rem rgba(255,15,143,0.12);
}

/* CTA and Footer */
.cta-box {
  border-radius: 42px;
  padding: 56px;
  background: linear-gradient(135deg, rgba(255,15,143,0.22), rgba(98,39,255,0.14), rgba(255,122,24,0.18));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; inset: 1px; border-radius: 41px; background: rgba(3,3,6,0.74); z-index: 0; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(30px, 4.4vw, 54px); line-height: 1.08; }

.footer { padding: 70px 0 28px; border-top: 1px solid var(--border); background: #050508; }
.footer h3 { font-family: 'Montserrat', sans-serif; margin-bottom: 18px; font-size: 20px; }
.footer p,
.footer a,
.footer li { color: var(--muted); line-height: 1.9; list-style: none; font-size: 14px; }
.footer a:hover { color: var(--pink); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: white; }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }

/* Animation and Lightbox */
.reveal { opacity: 0; transform: translateY(34px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.active { display: flex; }
.lightbox img { max-height: 86vh; border-radius: 24px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.lightbox button { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,0.08); color: white; font-size: 26px; cursor: pointer; }

@media (max-width: 991.98px) {
  .brand-logo { width: 62px; height: 46px; }
  .navbar-nav .nav-link { margin-left: 0; padding: 10px 6px; }
  .hero-content { padding-top: 110px; }
  .hero-carousel .carousel-item::before { background: linear-gradient(90deg, rgba(3,3,6,0.94), rgba(3,3,6,0.70)); }
  .image-stack { min-height: 470px; margin-bottom: 30px; }
  .image-card.large { height: 350px; }
  .image-card.small { height: 240px; }
  .gallery-item.gallery-tall { min-height: 300px; }
  .testimonial-box { padding: 34px; }
  .cta-box { padding: 38px; }
}
@media (max-width: 575.98px) {
  .section { padding: 68px 0; }
  .hero,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-content { min-height: 760px; }
  .hero-tagline { font-size: 42px; }
  .hero h1 { font-size: 31px; }
  .hero p { font-size: 15px; }
  .btn-um { width: 100%; padding: 13px 18px; }
  .carousel-control-prev,
  .carousel-control-next { display: none; }
  .carousel-indicators { margin-bottom: 24px; }
  .inner-hero { min-height: 300px; padding-top: 120px; }
  .image-stack { min-height: 430px; }
  .image-card.large { width: 84%; height: 300px; }
  .image-card.small { width: 72%; height: 220px; }
  .floating-badge { left: 18px; bottom: 48px; }
  .service-card,
  .process-card,
  .contact-card { padding: 26px; }
  .gallery-item { min-height: 220px; }
  .testimonial-box { padding: 28px; }
  .contact-form { padding: 24px; }
  .cta-box { padding: 30px 22px; border-radius: 30px; }
  .cta-box::before { border-radius: 29px; }
}
