:root {
  --bg: #090d18;
  --bg-soft: #10172a;
  --panel: rgba(17, 23, 40, 0.72);
  --panel-border: rgba(255, 215, 120, 0.16);
  --text: #f7f0da;
  --muted: #d7c69a;
  --gold: #f0c66f;
  --gold-strong: #c9952e;
  --accent: #fff0c2;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --container: 1240px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240, 198, 111, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(201, 149, 46, 0.12), transparent 25%),
    linear-gradient(180deg, #060911 0%, #0b1220 45%, #09101b 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 52px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}

.tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.section-title h2,
.hero h1,
.cta-wrap h2 {
  font-family: 'Cinzel', serif;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title p,
.hero p,
.about-content p,
.service-card p,
.why-left p,
.project-body p,
.contact-card p,
.cta-wrap p,
.owner-card p,
.mini-card p,
.info-box p {
  color: var(--muted);
  line-height: 1.8;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #05070d;
  transition: 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-inner img {
  width: 130px;
  margin: 0 auto 18px;
  animation: floatLogo 2.5s ease-in-out infinite;
}

.loader-inner span {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,198,111,0.15), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  mix-blend-mode: screen;
}

.topbar {
  position: relative;
  z-index: 15;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(3, 6, 14, 0.7);
}

.topbar-wrap,
.nav-wrap,
.footer-wrap,
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-wrap {
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar-wrap i,
.contact-card i,
.owner-icon,
.service-card i,
.about-float-card i,
.mini-card i {
  color: var(--gold);
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 10, 20, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar.scrolled {
  background: rgba(7, 11, 22, 0.92);
}

.nav-wrap {
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 64px;
  filter: drop-shadow(0 10px 24px rgba(240, 198, 111, 0.2));
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-menu a {
  position: relative;
  color: #f5edd2;
  font-weight: 500;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 12, 0.92) 0%, rgba(5, 9, 17, 0.65) 45%, rgba(5, 8, 15, 0.82) 100%),
    linear-gradient(180deg, rgba(5,8,15,0.4), rgba(5,8,15,0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 600;
}

.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
}

.hero h1 {
  font-size: clamp(2.0rem, 5vw, 4.5rem);
  line-height: 1.04;
  max-width: 300px;
  margin-bottom: 20px;
  text-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #f0c66f, #c9952e);
  color: #0d121f;
  box-shadow: 0 18px 35px rgba(201, 149, 46, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 45px rgba(201, 149, 46, 0.34);
}

.btn-outline {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.stat-card {
  padding: 24px 20px;
  border-radius: var(--radius);
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.stat-card p {
  color: #f2e7c0;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 34px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  display: grid;
  place-items: center;
}

.scroll-indicator span {
  width: 6px;
  height: 12px;
  background: var(--gold);
  border-radius: 99px;
  animation: scrollDot 1.7s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(-6px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

.about-grid,
.contact-grid,
.owner-grid {
  display: grid;
  gap: 32px;
}

.about-grid {
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img,
.map-box iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-float-card {
  position: absolute;
  left: 26px;
  bottom: 26px;
  padding: 18px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 360px;
}

.about-float-card i {
  font-size: 1.65rem;
}

.info-box {
  margin-bottom: 26px;
}

.vm-grid,
.service-grid,
.why-grid,
.project-grid {
  display: grid;
  gap: 24px;
}

.vm-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}

.mini-card,
.owner-card,
.service-card,
.why-card,
.contact-card,
.project-card,
.cta-wrap {
  border-radius: var(--radius);
}

.mini-card {
  padding: 24px;
}

.mini-card i,
.service-card i {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.mini-card h4,
.contact-card h3,
.project-body h3,
.service-card h3,
.owner-card h3 {
  margin-bottom: 10px;
}

.tick-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.tick-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3e8c6;
}

.services {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

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

.service-card {
  padding: 30px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,198,111,0.14), transparent 40%, transparent 70%, rgba(240,198,111,0.08));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover,
.project-card:hover,
.owner-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,198,111,0.26);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
}

.service-card:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.why-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

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

.why-card {
  padding: 26px 22px;
}

.why-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

.owner-card {
  padding: 34px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.owner-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  border: 1px solid rgba(240,198,111,0.28);
  background: rgba(240,198,111,0.08);
}

.owner-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
}

.filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #f0c66f, #c9952e);
  color: #111827;
  border-color: transparent;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(7,11,22,0.15), rgba(7,11,22,0.88));
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f0c66f, #c9952e);
  color: #111827;
  font-weight: 700;
  cursor: pointer;
}

.project-body {
  padding: 22px;
}

.status {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.status.completed {
  background: rgba(92, 214, 143, 0.16);
  color: #9ee8b8;
}

.status.progress {
  background: rgba(255, 197, 92, 0.15);
  color: #ffd58c;
}

.cta-band {
  padding-top: 30px;
}

.cta-wrap {
  padding: 38px;
  background:
    linear-gradient(90deg, rgba(240,198,111,0.14), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(240,198,111,0.18);
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-card i {
  font-size: 1.4rem;
  min-width: 24px;
  margin-top: 5px;
}

.map-box iframe {
  height: 100%;
  min-height: 460px;
  border: 0;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 54px;
}

.whatsapp-float,
.back-top {
  position: fixed;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 18px 32px rgba(0,0,0,0.25);
}

.whatsapp-float {
  bottom: 24px;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
}

.back-top {
  bottom: 92px;
  background: linear-gradient(135deg, #f0c66f, #c9952e);
  color: #111827;
  border: none;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  width: min(1100px, 100%);
  background: #0b1220;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #07101d;
}

.lightbox-text {
  padding: 22px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.project-card.hide {
  display: none;
}

@media (max-width: 1100px) {
  .hero-stats,
  .project-grid,
  .service-grid,
  .contact-grid,
  .about-grid,
  .why-wrap,
  .owner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-wrap,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar-wrap,
  .footer-wrap,
  .cta-wrap,
  .vm-grid,
  .tick-list,
  .why-grid,
  .hero-stats,
  .project-grid,
  .service-grid,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .topbar-wrap,
  .cta-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    background: rgba(7, 11, 22, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .hero-content {
    padding-top: 110px;
  }

  .about-float-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: unset;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 78px 0;
  }

  .brand img {
    width: 52px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .top-links {
    gap: 10px;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-wrap {
    padding: 28px 22px;
  }

  .lightbox-content img {
    max-height: 52vh;
  }
}
