/*!
Theme Name: cekuubi
Theme URI: https://cekuubi.com
Author: CekuuBi
Author URI: https://cekuubi.com
Description: Description
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cekuubi
Tags: custom-theme, elegant, enterprise, digital marketing

cekuubi is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #e8f5ee;
  --slate: #2b3040;
  --slate-dark: #1a1f2e;
  --gold: #e07b1a;
  --gold-light: #fdf0e0;
  --white: #fff;
  --ink: #0e0e0e;
  --muted: #555;
  --border: rgba(0, 0, 0, 0.1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* PALETTE STRIP */
.palette-strip {
  height: 5px;
  background: linear-gradient(
    to right,
    var(--green-dark) 33%,
    var(--slate-dark) 33% 66%,
    var(--gold) 66%
  );
}

/* NAV */
nav {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green-dark);
}
.nav-cta {
  background: var(--green-dark) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.85;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAV DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding-top: 80px;
}
.nav-drawer.open {
  display: flex;
}
.nav-drawer a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-drawer a:last-child {
  background: var(--green-dark);
  color: #fff;
  padding: 0.75rem 2.5rem;
  border-radius: 4px;
  font-size: 1.25rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 69px;
}
.hero-left {
  background: var(--green-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--green-dark);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  opacity: 0.85;
}
.btn-ghost {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.btn-ghost:hover {
  gap: 0.8rem;
}
.hero-right {
  background: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: var(--gold);
  clip-path: polygon(0 40%, 50% 0%, 100% 40%, 100% 100%, 0 100%);
  opacity: 0.12;
}
.hero-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-circle2 {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1.4rem 1.2rem;
  color: #fff;
}
.hero-card.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.4rem;
}
.hero-card-value {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-card-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.65;
  margin-top: 0.6rem;
}
.hero-card-accent {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* SECTIONS */
section {
  padding: 5rem;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
}
.section-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* SERVICES */
#services {
  background: var(--white);
}
.services-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}
.service-item {
  padding: 2.5rem 2rem;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition:
    background 0.25s,
    color 0.25s;
  cursor: default;
}
.service-item:nth-child(3n) {
  border-right: none;
}
.service-item:nth-child(n + 4) {
  border-bottom: none;
}
.service-item:hover {
  background: var(--ink);
  color: #fff;
}
.service-number {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: color 0.25s;
}
.service-item:hover .service-number {
  color: rgba(224, 123, 26, 0.7);
}
.service-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  transition: color 0.25s;
}
.service-item:hover .service-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* WHY */
#why {
  background: var(--green-light);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-list {
  list-style: none;
  margin-top: 2rem;
}
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child {
  border-top: 1px solid var(--border);
}
.why-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.why-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
}
.why-item-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}
.why-visual {
  background: var(--green-dark);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  color: #fff;
}
.why-visual-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.stat-row {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}
.stat-value {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.stat-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
}
.stat-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 0.75rem;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}

/* PROCESS */
#process {
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 2px solid var(--ink);
}
.process-step:last-child {
  border-right: none;
}
.step-num {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}
.step-desc {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* CONTACT */
#contact {
  background: var(--slate-dark);
  color: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
#contact .section-label {
  color: var(--gold);
  opacity: 0.85;
}
#contact .section-title {
  color: #fff;
}
#contact .section-intro {
  color: rgba(255, 255, 255, 0.5);
}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-row-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.contact-row-val {
  font-size: 1rem;
  color: #fff;
}
.contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-social a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.contact-social a:hover {
  color: #fff;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.form-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-input:focus {
  border-color: var(--gold);
}
textarea.form-input {
  resize: vertical;
  min-height: 110px;
}
.btn-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.btn-submit:hover {
  opacity: 0.85;
}

/* FOOTER */
footer {
  background: #090d12;
  color: rgba(255, 255, 255, 0.35);
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}
.footer-logo span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.75rem;
  }
  .nav-links li:not(:last-child) {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 5rem 2.5rem 3.5rem;
  }
  .hero-right {
    padding: 3rem 2.5rem;
    min-height: 320px;
  }
  .hero-visual {
    max-width: 100%;
  }

  section {
    padding: 4rem 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-item:nth-child(3n) {
    border-right: 2px solid var(--ink);
  }
  .service-item:nth-child(2n) {
    border-right: none;
  }
  .service-item:nth-child(n + 4) {
    border-bottom: 2px solid var(--ink);
  }
  .service-item:nth-child(n + 5) {
    border-bottom: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-step:nth-child(2) {
    border-right: none;
  }
  .process-step:nth-child(3) {
    border-right: 2px solid var(--ink);
  }
  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 2px solid var(--ink);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  footer {
    padding: 2rem 2.5rem;
  }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {
  nav {
    padding: 0.9rem 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .palette-strip {
    height: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 4rem 1.5rem 3rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  .hero-right {
    padding: 2.5rem 1.5rem;
    min-height: 280px;
  }
  .hero-visual {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .hero-card.tall {
    grid-row: span 1;
  }
  .hero-card-desc {
    display: none;
  }

  section {
    padding: 3.5rem 1.5rem;
  }
  .section-title {
    font-size: 1.9rem;
  }

  .services-header {
    margin-bottom: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
  .service-item {
    border-right: none !important;
    border-bottom: 2px solid var(--ink) !important;
  }
  .service-item:last-child {
    border-bottom: none !important;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-visual {
    padding: 2rem 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: none !important;
    border-bottom: 2px solid var(--ink);
  }
  .process-step:last-child {
    border-bottom: none;
  }
  .step-num {
    font-size: 2.5rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .btn-submit {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
  .footer-links {
    gap: 1rem;
  }
}
