* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --dark: #0d0d0f;
  --card: rgba(255, 255, 255, 0.06);
  --gold: #d6aa34;
  --gold-light: #ffe08a;
  --text: #ffffff;
  --muted: #c7c7c7;
  --line: rgba(214, 170, 52, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 170, 52, 0.25), transparent 30%),
    radial-gradient(circle at bottom left, rgba(214, 170, 52, 0.15), transparent 35%),
    var(--black);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6%;
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand-text {
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--gold-light);
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding: 70px 6%;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  margin: 18px 0;
}

h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  margin: 12px 0;
}

.hero-text,
.section-heading p,
.about p,
.contact p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #050505;
}

.secondary {
  border-color: var(--line);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

.whatsapp {
  background: #25d366;
  color: white;
}

.facebook {
  background: #1877f2;
  color: white;
}

.hero-card {
  min-height: 540px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(214,170,52,0.10)),
    rgba(0,0,0,0.55);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-logo {
  max-width: 430px;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 80px rgba(214, 170, 52, 0.2);
}

.hero-card h2 {
  color: var(--gold-light);
  letter-spacing: 10px;
  margin-bottom: 0;
}

.hero-card p {
  color: var(--gold-light);
  letter-spacing: 1.5px;
  margin-top: 0;
}

.section {
  padding: 80px 6%;
}

.section-heading {
  max-width: 830px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-grid,
.portfolio-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.portfolio-card,
.about,
.contact {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.service-card h3,
.portfolio-card h3 {
  margin-top: 12px;
  font-size: 23px;
}

.service-card p,
.portfolio-card p {
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 32px;
}

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

.portfolio-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-card span {
  margin-bottom: auto;
  color: rgba(214, 170, 52, 0.35);
  font-size: 52px;
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.contact {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(214, 170, 52, 0.18), rgba(255,255,255,0.05));
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #8f8f8f;
  text-align: center;
}

.footer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.footer-slogan {
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 6px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 30px;
  z-index: 80;
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.35);
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #050505;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 900;
  min-width: 48px;
}

.mobile-nav {
  display: none;
  position: sticky;
  top: 87px;
  z-index: 45;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid var(--line);
  padding: 12px 6%;
  backdrop-filter: blur(14px);
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  color: var(--gold-light);
  font-weight: 800;
  border-bottom: 1px solid rgba(214, 170, 52, 0.16);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav.open {
  display: block;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-card {
    min-height: 360px;
  }

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

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

@media (max-width: 620px) {
  .header {
    padding: 12px 4%;
  }

  .brand-text {
    display: none;
  }

  .hero,
  .section {
    padding-left: 4%;
    padding-right: 4%;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 20px;
  }

  .footer {
    flex-direction: column;
  }
}


/* Updated logo and real portfolio styles */
.brand-logo {
  width: 82px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  border: none;
  border-radius: 0;
}

.hero-logo {
  max-width: 430px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 50px rgba(214, 170, 52, 0.28));
}

.footer img {
  width: 82px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.real-portfolio {
  align-items: stretch;
}

.portfolio-project {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.project-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: rgba(0,0,0,0.35);
}

.image-bg {
  background-size: cover;
  background-position: center;
}

.project-info {
  padding: 22px;
}

.project-tag {
  display: inline-flex;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.project-info h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.project-info p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 620px) {
  .project-media {
    aspect-ratio: 4 / 3;
  }
}


.placeholder-media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(214,170,52,0.18), transparent 45%),
    rgba(0,0,0,0.45);
  border-bottom: 1px solid var(--line);
}

.placeholder-media span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 48px;
  font-weight: 300;
}

.coming-soon {
  opacity: 0.92;
}


/* v8: show portfolio images and videos complete, not cropped */
.project-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain !important;
  background: #050505;
}

.image-bg {
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #050505;
}

.portfolio-project video {
  object-fit: contain !important;
  background: #050505;
}

.placeholder-media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(214,170,52,0.18), transparent 45%),
    rgba(0,0,0,0.45);
}

.placeholder-media span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 48px;
  font-weight: 300;
}

@media (max-width: 620px) {
  .project-media {
    aspect-ratio: 9 / 12;
  }

  .portfolio-project video {
    max-height: 520px;
  }
}


/* v9 logo placement overrides */
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 20px 80px rgba(214, 170, 52, 0.18);
  background: transparent;
}

.hero-card {
  min-height: 560px;
}

.hero-card h2 {
  margin-top: 10px;
}

.footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .hero-logo {
    max-width: 360px;
  }

  .hero-card {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero-logo {
    max-width: 300px;
  }
}


/* v10 packages and testimonials */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.package-card,
.testimonial-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.featured-package {
  background: linear-gradient(135deg, rgba(214,170,52,0.22), rgba(255,255,255,0.06));
  transform: translateY(-8px);
}

.package-label {
  display: inline-flex;
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.package-card h3 {
  font-size: 23px;
  margin: 0 0 12px;
}

.package-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.6;
}

.package-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card strong {
  color: var(--gold-light);
}

@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-package {
    transform: none;
  }
}

@media (max-width: 700px) {
  .packages-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* v11 expanded about and vision videos */
.about-expanded {
  align-items: start;
}

.about-copy p {
  margin-top: 0;
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-highlights span {
  display: inline-flex;
  border: 1px solid var(--line);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(214,170,52,0.08);
  font-weight: 800;
  font-size: 13px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vision-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.vision-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  background: #050505;
}

.vision-info {
  padding: 24px;
}

.vision-info h3 {
  margin: 10px 0;
  font-size: 26px;
}

.vision-info p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-video {
    aspect-ratio: 9 / 12;
  }
}


/* v12 horizontal picture slides / example gallery */
.gallery-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(255,255,255,0.08);
}

.gallery-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.gallery-slide img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: contain;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.gallery-slide h3 {
  font-size: 22px;
  margin: 18px 20px 8px;
}

.gallery-slide p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0 20px 22px;
}

.placeholder-slide {
  display: flex;
  flex-direction: column;
}

.placeholder-box {
  height: 230px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(214,170,52,0.18), transparent 45%),
    rgba(0,0,0,0.45);
  color: var(--gold-light);
  font-size: 64px;
  border-bottom: 1px solid var(--line);
}

.slider-note {
  color: var(--gold-light);
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 620px) {
  .gallery-slide {
    flex-basis: 82vw;
  }

  .gallery-slide img,
  .placeholder-box {
    height: 260px;
  }
}


/* v13 dedicated video showcase */
.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-showcase-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.showcase-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.video-showcase-info {
  padding: 24px;
}

.video-showcase-info h3 {
  margin: 12px 0 10px;
  font-size: 27px;
}

.video-showcase-info p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .video-showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-video {
    aspect-ratio: 9 / 12;
  }
}
