/* Applying Google font over the website */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: var(--navbar-height);
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Navbar Styling */
/* Navbar Container */
.topbar {
  background: linear-gradient(135deg, #fff7e6, #f6e3b4);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(180, 140, 40, 0.25);
}

/* Body offset */
body {
  margin: 0;
  padding-top: 82px;
  background-color: #fbfaf7;
}

/* Navbar Inner Container */
.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

/* Logo */
.topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}

/* Logo Image */
.topbar-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(184, 134, 11, 0.4));
}

/* Hamburger Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #b8962e;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Nav box */
.nav-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(160, 120, 30, 0.18);
  padding: 0.6rem 1.6rem;
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
}

/* Nav links */
.topbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: flex;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1c1c1c;
  text-decoration: none;
  white-space: nowrap;
}

/* CTA Button */
.topbar-cta {
  background: linear-gradient(135deg, #c9a23f, #f4d06f);
  color: #1a1a1a;
  padding: 0.65rem 1.3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* ===============================
   MOBILE DROPDOWN BEHAVIOR
================================ */

@media (max-width: 1160px) {

  .hamburger {
    display: flex;
  }

  .nav-box {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    display: none;
    flex-direction: column;
    padding: 1.2rem;
    margin-top: 10px;
  }

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

  .topbar-links {
    flex-direction: column;
    gap: 1.2rem;
  }

  .topbar-cta {
    display: none;
  }
}

    
/* Footer section starts */
.footer {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  backdrop-filter: blur(14px);
  color: #f5d77a;
  padding: 22px 0;
  text-align: center;
  width: 100%;
  font-weight: bold;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Footer Logo */
.footer-logo {
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  filter: brightness(1.2) contrast(1.2)
          drop-shadow(0 0 18px rgba(255, 215, 119, 0.7));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* Footer Tagline */
.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;

  background: linear-gradient(
    135deg,
    #ffd777,
    #ffebaf,
    #c9a23f
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: goldFlow 6s linear infinite;
}

/* Navigation Links */
.link-group a {
  color: #f5d77a;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.link-group a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #f5d77a;
  transition: width 0.3s ease, left 0.3s ease;
}

.link-group a:hover {
  color: #ffffff;
}

.link-group a:hover::after {
  width: 100%;
  left: 0;
}

/* Divider */
.footer-divider {
  border-top: 1px solid rgba(245, 215, 122, 0.4);
  margin: 20px 0;
}

/* Copyright */
footer p {
  color: #f5d77a;
}

/* Gold animation */
@keyframes goldFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Styling back to top button */
#btn-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #c9a23f, #ffd777);
    color: #000;
    animation: pulse 3s infinite;
}









































/* ======================================================
   GLOBAL NORMALIZATION
====================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ======================================================
   HERO SECTION – REAL-WORLD ENTERPRISE REFINEMENT
====================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: clamp(110px, 14vh, 160px) 7vw;

  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.9) 0%,
      rgba(10, 10, 10, 0.68) 40%,
      rgba(10, 10, 10, 0.28) 68%,
      rgba(10, 10, 10, 0.08) 100%
    ),
    url("/images/hero-bg.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* BACKGROUND IMAGE CANVAS */
#hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18; /* refined */
}

/* AURA CANVAS */
#hero-aura {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.14; /* refined */
  filter: blur(8px);
}

/* ======================================================
   CONTENT BLOCK
====================================================== */

.hero-text {
  position: relative;
  z-index: 3;
  max-width: 640px; /* slightly wider for breathing space */
}

/* ======================================================
   HEADING (REAL-WORLD TYPOGRAPHY RHYTHM)
====================================================== */

.hero-text h1 {
  font-size: clamp(44px, 5.6vw, 68px); /* slightly refined */
  font-weight: 900;
  line-height: 1.08; /* real-world readability */
  margin-bottom: 22px; /* tighter rhythm */
  color: #ffffff;
  white-space: normal;
}

/* GOLD HIGHLIGHT LINE */
.hero-text .highlight {
  display: block;
  margin-top: 10px;

  font-size: 0.72em; /* 🔥 slightly smaller, real-world ratio */
  font-weight: 900;
  letter-spacing: 0.2px;

  background: linear-gradient(
    135deg,
    #ffe08a,
    #ffefc2,
    #cfa13b
  );

  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: goldFlow 6s linear infinite;
}


/* ======================================================
   SUBTITLE (ENTERPRISE SPACING)
====================================================== */

.typed-text {
  font-size: clamp(16px, 1.9vw, 20px); /* slightly refined */
  line-height: 1.75;

  /* 🔥 enterprise gold-muted tone */
  color: rgba(255, 235, 175, 0.9);

  margin-bottom: 52px;
  max-width: 520px;

  /* subtle real-world polish */
  letter-spacing: 0.15px;
  font-weight: 400;
}

/* ======================================================
   CTA BUTTON – PRECISION ENTERPRISE STYLE (UNIQUE)
====================================================== */

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 38px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.35px;

  color: #f6e7b2;
  background: transparent;

  border: 1.5px solid rgba(255, 215, 120, 0.55);
  border-radius: 10px; /* 🔥 NOT pill – unique */

  text-decoration: none;
  overflow: hidden;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

/* KINETIC FILL LAYER */
.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    #f2c861,
    #ffd777,
    #e6b94e
  );

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;

  z-index: -1;
}

/* HOVER — CONTROLLED ACTIVATION */
.cta-button:hover {
  color: #1a1405;
  border-color: transparent;
}

.cta-button:hover::before {
  transform: scaleX(1);
}

/* ACTIVE — MECHANICAL FEEL */
.cta-button:active {
  transform: translateY(1px);
}


/* ======================================================
   GOLD ANIMATION
====================================================== */

@keyframes goldFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

/* ======================================================
   MOBILE (UNCHANGED STRUCTURE, POLISHED)
====================================================== */

@media (max-width: 768px) {
  .hero-section {
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    white-space: normal;
  }

  .hero-text .highlight {
    margin-top: 8px;
  }
}


/* ======================================================
   ABOUT SECTION – GOLD ENTERPRISE THEME
====================================================== */

.about-alaman-clean {
  position: relative;
  padding: 50px 20px;
  background: linear-gradient(
    180deg,
    #fff7e6 0%,
    #ffffff 100%
  );
  overflow: hidden;
}

/* subtle ambient glow */
.about-alaman-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,63,0.16), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(255,215,119,0.14), transparent 42%);
  pointer-events: none;
}

.alaman-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ================= HEADER ================= */

.alaman-heading {
  text-align: center;
  margin-bottom: 60px;
}

.alaman-kicker {
  display: inline-block;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9c7a1c;
  background: rgba(201,162,63,0.22);
  border-radius: 999px;
  margin-bottom: 20px;
}

.alaman-heading h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
}

/* ================= CONTENT ================= */

.alaman-text {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  font-size: 17px;
  line-height: 1.85;
  color: #3f3f3f;
}

.alaman-text strong {
  color: #9c7a1c;
  font-weight: 700;
}

/* ================= ACTION ================= */

.alaman-action {
  margin-top: 60px;
  text-align: center;
}

.alaman-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #9c7a1c;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid rgba(201,162,63,0.45);
  background: linear-gradient(
    135deg,
    rgba(201,162,63,0.14),
    rgba(255,215,119,0.12)
  );
  transition: all 0.35s ease;
}

.alaman-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #c9a23f,
    #ffd777
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease;
}

.alaman-link:hover {
  color: #1a1a1a;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(201,162,63,0.45);
}

.alaman-link:hover::after {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-alaman-clean {
    padding: 90px 16px;
  }

  .alaman-text {
    font-size: 16px;
  }
}

/* ======================================================
   SERVICE DOMAINS – GOLD ENTERPRISE THEME
====================================================== */

.alaman-services {
  position: relative;
  padding: 50px 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fff7e6 100%
  );
  overflow: hidden;
}

/* ambient glow */
.alaman-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(201,162,63,0.18), transparent 46%),
    radial-gradient(circle at 82% 75%, rgba(255,215,119,0.18), transparent 46%);
  pointer-events: none;
}

/* ================= WRAPPER ================= */

.alaman-services-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ================= HEADER ================= */

.alaman-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.alaman-services-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.alaman-services-header p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a4a4a;
  max-width: 720px;
  margin: 0 auto;
}

/* ================= LIST ================= */

.alaman-services-list {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: left; /* 🔥 FIX */
}

.alaman-services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0; /* 🔥 continuous list look */
}

.alaman-services-list li {
  position: relative;
  padding: 22px 0 22px 38px; /* 🔥 left bullet spacing */
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.65;
}

/* diamond bullet (LEFT, INLINE) */
.alaman-services-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 26px;
  font-size: 14px;
  color: #9c7a1c;
}

/* full-width divider (LIKE IMAGE-2) */
.alaman-services-list li::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201,162,63,0.45),
    rgba(201,162,63,0.15),
    transparent
  );
}

.alaman-services-list li:last-child::after {
  display: none;
}

/* ================= NOTE ================= */

.alaman-services-note {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 36px;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  color: #3f3f3f;
  background: linear-gradient(
    135deg,
    rgba(201,162,63,0.14),
    rgba(255,215,119,0.12)
  );
  border-radius: 18px;
  border: 1px solid rgba(201,162,63,0.25);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .alaman-services {
    padding: 90px 16px;
  }

  .alaman-services-list li {
    font-size: 16px;
    padding-left: 34px;
  }

  .alaman-services-note {
    padding: 22px 20px;
  }
}


/* ======================================================
   MISSION & VISION – GOLD PREMIUM CARDS
====================================================== */

.alaman-mv-premium {
  padding: 50px 20px;
  background: linear-gradient(180deg, #fff7e6, #ffffff);
}

.alaman-mv-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 40px;
}

.alaman-mv-item {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.85)
  );
  border-radius: 26px;
  padding: 50px 38px;
  box-shadow: 0 36px 90px rgba(201,162,63,0.28);
  border: 1px solid rgba(201,162,63,0.25);
}

.mv-icon {
  font-size: 42px;
  margin-bottom: 22px;
  color: #9c7a1c;
}

.mv-content h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.mv-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #3f3f3f;
}

.alaman-mv-separator span {
  display: block;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    #c9a23f,
    transparent
  );
}

/* ======================================================
   TESTIMONIALS – GOLD GLASS CARDS
====================================================== */

.alaman-testimonials {
  padding: 50px 20px;
  background: #ffffff;
}

.alaman-testimonials-wrap {
  max-width: 1100px;
  margin: auto;
}

.alaman-testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.alaman-testimonials-header span {
  color: #9c7a1c;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.alaman-testimonials-header h2 {
  font-size: 40px;
  margin-top: 14px;
  color: #1a1a1a;
}

.alaman-testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.alaman-testimonial {
  padding: 38px 34px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(201,162,63,0.14),
    rgba(255,215,119,0.12)
  );
  box-shadow: 0 28px 76px rgba(201,162,63,0.35);
}

.alaman-testimonial p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #3f3f3f;
  margin-bottom: 22px;
}

.testimonial-author strong {
  display: block;
  color: #1a1a1a;
}

.testimonial-author span {
  font-size: 14px;
  color: #6b6b6b;
}

/* ======================================================
   HOW WE HELP – GOLD FLOW CARDS
====================================================== */

.alaman-how-we-help {
  padding: 50px 20px;
  background: linear-gradient(180deg, #ffffff, #fff7e6);
}

.alaman-help-wrap {
  max-width: 1100px;
  margin: auto;
}

.alaman-help-header {
  text-align: center;
  margin-bottom: 70px;
}

.alaman-help-header span {
  color: #9c7a1c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.alaman-help-header h2 {
  font-size: 38px;
  margin: 14px 0;
  color: #1a1a1a;
}

.alaman-help-header p {
  max-width: 720px;
  margin: auto;
  color: #4a4a4a;
}

.alaman-help-flow {
  display: grid;
  gap: 42px;
}

.help-step {
  display: flex;
  gap: 30px;
  padding: 38px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(201,162,63,0.3);
}

.help-icon {
  font-size: 36px;
  color: #9c7a1c;
}

.help-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.help-content p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #3f3f3f;
}

.help-connector {
  height: 40px;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    #c9a23f,
    transparent
  );
  margin: auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .alaman-mv-container {
    grid-template-columns: 1fr;
  }

  .alaman-mv-separator {
    display: none;
  }

  .help-step {
    flex-direction: column;
  }
}


/* ======================================================
   CONTACT INFORMATION – ENTERPRISE THEME
====================================================== */

.alaman-contact-info {
  padding: 50px 24px;
  background: linear-gradient(
    180deg,
    #fff7e6 0%,
    #ffffff 100%
  );
  font-family: "Inter", system-ui, sans-serif;
}

/* WRAPPER */
.alaman-contact-info-wrap {
  max-width: 980px;
  margin: 0 auto;
}

/* HEADER */
.contact-info-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-info-header h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.contact-info-header p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a4a4a;
  max-width: 620px;
  margin: 0 auto;
}

/* CARD */
.contact-info-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 36px 34px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow:
    0 25px 80px rgba(201,162,63,0.22);
  border: 1px solid rgba(201,162,63,0.22);
}

/* ITEM */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* ICON */
.contact-icon {
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    #c9a23f,
    #ffd777
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1a1a;
  box-shadow: 0 12px 30px rgba(201,162,63,0.45);
}

/* TEXT */
.contact-info-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-text a {
  color: #9c7a1c;
  text-decoration: none;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.contact-info-text span {
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .alaman-contact-info {
    padding: 80px 18px;
  }

  .contact-info-card {
    padding: 30px 24px;
  }
}
