/*
Theme Name: OKAHH
Theme URI: https://okahh.com
Description: OKAHH Sales & Marketing Consultancy — APAC
Version: 1.2.2
Author: OKAHH
Text Domain: okahh
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --gold:       #C9A84C;
  --navy:       #1B1F3B;
  --navy-light: #2D325A;
  --cream:      #F5F3EF;
  --warm-white: #FAFAF8;
  --stone:      #78716C;
  --navy-faint: rgba(27,31,59,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: var(--warm-white);
  color: var(--navy);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── Typography ── */
.text-display { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.text-h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.text-h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
.text-body { font-size: 1.05rem; font-weight: 400; line-height: 1.7; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }
.container--narrow { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.container--medium { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding-top: clamp(80px, 10vh, 120px); padding-bottom: clamp(80px, 10vh, 120px); }

/* ── Nav ── */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background-color 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.site-nav.scrolled { background-color: rgba(250,250,248,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--navy-faint); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 80px; }
@media (min-width: 1024px) { .nav-inner { padding: 0 48px; } }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: none; align-items: center; gap: 32px; list-style: none; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--navy); transition: color 0.2s; position: relative; padding-bottom: 4px; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: block; } }
.nav-lang-switcher { display: flex; align-items: center; }
.nav-lang-switcher a { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--stone); padding: 4px 8px; border-radius: 6px; transition: color 0.2s, background-color 0.2s; }
.nav-lang-switcher a:hover, .nav-lang-switcher a.pll-selected { color: var(--navy); background-color: var(--navy-faint); }
.mobile-lang-switcher { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--navy-faint); display: flex; gap: 12px; }
.mobile-lang-switcher a { font-size: 0.875rem; font-weight: 500; color: var(--stone); }
.mobile-lang-switcher a.pll-selected { color: var(--gold); }
.nav-cta a { display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; background-color: var(--navy); color: var(--warm-white); transition: background-color 0.2s; }
.nav-cta a:hover { background-color: var(--navy-light); }
.nav-hamburger { display: flex; flex-direction: column; gap: 6px; padding: 8px; background: none; border: none; cursor: pointer; }
@media (min-width: 768px) { .nav-hamburger { display: none; } }
.nav-hamburger span { display: block; width: 24px; height: 2px; background-color: var(--navy); transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: rgba(250,250,248,0.98); border-bottom: 1px solid var(--navy-faint); padding: 24px; flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu a { font-size: 1.125rem; font-weight: 500; color: var(--navy); padding: 8px 0; transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu-cta { display: inline-flex; align-items: center; justify-content: center; margin-top: 8px; padding: 12px 24px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; background-color: var(--navy); color: var(--warm-white) !important; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; padding: 14px 36px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; background-color: var(--navy); color: var(--warm-white); border: none; cursor: pointer; transition: background-color 0.2s; }
.btn-primary:hover { background-color: var(--navy-light); color: var(--warm-white); }
.btn-outline { display: inline-flex; align-items: center; padding: 14px 36px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; background-color: transparent; color: var(--navy); border: 1.5px solid rgba(27,31,59,0.2); cursor: pointer; transition: border-color 0.2s, background-color 0.2s; }
.btn-outline:hover { border-color: var(--navy); background-color: rgba(27,31,59,0.04); color: var(--navy); }

/* ── Scroll Reveal — visible by default, JS enhances ── */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(36px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── Hero Entrance — always visible, animation is bonus ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-animate { animation: fadeUp 0.7s ease forwards; }
.hero-animate-1 { animation-delay: 0.3s; }
.hero-animate-2 { animation-delay: 0.55s; }
.hero-animate-3 { animation-delay: 0.75s; }
.hero-animate-4 { animation-delay: 0.95s; }

/* ── Hero Section ── */
.hero-section { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 80px; background-color: var(--cream); position: relative; }
.hero-inner { max-width: 720px; }
.hero-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 24px; }
.hero-headline { color: var(--navy); margin-bottom: 24px; }
.hero-body { color: var(--stone); max-width: 520px; margin: 0 auto 40px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--stone); }
.scroll-hint span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── Services Overview ── */
.services-overview-section { background-color: var(--warm-white); }
.services-overview-header { text-align: center; margin-bottom: 64px; }
.services-overview-header p { color: var(--stone); max-width: 480px; margin: 16px auto 0; font-size: 1.05rem; line-height: 1.7; }
.services-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card { padding: 32px; border-radius: 20px; background-color: var(--warm-white); border: 1px solid var(--navy-faint); transition: border-color 0.3s, box-shadow 0.3s; }
.service-card:hover { border-color: rgba(201,168,76,0.3); box-shadow: 0 4px 24px rgba(27,31,59,0.06); }
.service-icon { width: 44px; height: 44px; border-radius: 12px; background-color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 20px; }
.service-card h3 { color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }
.service-link { display: inline-block; margin-top: 16px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.service-link:hover { opacity: 0.75; color: var(--gold); }

/* ── Featured Work ── */
.featured-work-section { background-color: var(--warm-white); }
.featured-work-header { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
@media (min-width: 640px) { .featured-work-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.featured-work-heading { color: var(--navy); }
.featured-work-tagline { font-size: 0.875rem; font-weight: 500; color: var(--stone); }
.work-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .work-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(4,1fr); } }
.work-card { padding: 24px; border-radius: 24px; background-color: var(--warm-white); border: 1px solid var(--navy-faint); transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s; }
.work-card:hover { box-shadow: 0 8px 40px rgba(27,31,59,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.work-logo { height: 36px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 16px; }
.work-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.work-scope { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 500; background-color: var(--cream); color: var(--navy-light); margin-bottom: 12px; }
.work-card p { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }

/* ── Stats / Approach ── */
.approach-section { background-color: var(--navy); text-align: center; }
.approach-section h2 { color: var(--warm-white); }
.approach-section .sub { color: rgba(250,250,248,0.65); max-width: 560px; margin: 20px auto 0; font-size: 1.05rem; line-height: 1.7; }
.stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 64px; margin-top: 56px; }
@media (min-width: 1024px) { .stats-row { gap: 96px; } }
.stat-item { text-align: center; }
.stat-value { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { margin-top: 8px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(250,250,248,0.6); }

/* ── CTA ── */
.cta-section { background-color: var(--cream); text-align: center; }
.cta-section h2 { color: var(--navy); margin-bottom: 20px; }
.cta-section p { color: var(--stone); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; line-height: 1.7; }

/* ── Page Heroes ── */
.page-hero { display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; min-height: 45vh; background-color: var(--cream); }
.page-hero-home { min-height: 55vh; }
.page-hero-inner { max-width: 680px; }
.page-hero-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 24px; }
.page-hero h1 { color: var(--navy); margin-bottom: 24px; }
.page-hero p { color: var(--stone); max-width: 520px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* ── About: Story ── */
.story-section { background-color: var(--warm-white); }
.story-grid { display: grid; gap: 64px; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(2,1fr); align-items: start; } }
.story-text h2 { color: var(--navy); margin-bottom: 24px; }
.story-text p { color: var(--stone); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }
.story-stats { display: flex; flex-direction: column; gap: 20px; }
.story-stat { display: flex; gap: 20px; align-items: flex-start; padding: 20px; border-radius: 12px; background-color: var(--cream); }
.story-stat-number { font-size: 1.5rem; font-weight: 700; color: var(--gold); min-width: 60px; }
.story-stat-text { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }

/* ── About: Values ── */
.values-section { background-color: var(--cream); }
.values-header { text-align: center; margin-bottom: 56px; }
.values-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3,1fr); } }
.value-card { padding: 32px; border-radius: 20px; background-color: var(--warm-white); border: 1px solid var(--navy-faint); }
.value-number { width: 32px; height: 32px; border-radius: 50%; background-color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.value-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--stone); line-height: 1.65; }

/* ── Services Detail ── */
.services-detail-section { background-color: var(--warm-white); }
.services-list { display: flex; flex-direction: column; gap: 64px; }
.service-block { display: grid; gap: 32px; padding-bottom: 64px; border-bottom: 1px solid var(--navy-faint); }
.service-block:last-child { border-bottom: none; padding-bottom: 0; }
@media (min-width: 1024px) { .service-block { grid-template-columns: 2fr 5fr 4fr; align-items: start; } }
.service-num { font-size: 1.875rem; font-weight: 700; color: var(--gold); }
.service-info h2 { color: var(--navy); margin-bottom: 12px; }
.service-info p { font-size: 0.875rem; color: var(--stone); line-height: 1.7; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--navy); }
.service-features li::before { content: '●'; font-size: 0.5rem; color: var(--gold); flex-shrink: 0; }

/* ── Contact ── */
.contact-form-section { background-color: var(--warm-white); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2,1fr); } }
.form-group { display: flex; flex-direction: column; }
.form-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.form-input, .form-textarea { padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(27,31,59,0.1); background-color: var(--warm-white); color: var(--navy); font-size: 0.875rem; font-family: inherit; outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus, .form-textarea:focus { border-color: var(--navy); }
.form-textarea { resize: none; min-height: 130px; }
.form-submit { align-self: flex-start; padding: 14px 32px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; font-family: inherit; background-color: var(--navy); color: var(--warm-white); border: none; cursor: pointer; transition: background-color 0.2s; }
.form-submit:hover { background-color: var(--navy-light); }
.contact-direct { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--navy-faint); text-align: center; }
.contact-direct p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 8px; }
.contact-direct a { font-size: 1.125rem; font-weight: 500; color: var(--navy); }
.contact-direct a:hover { color: var(--gold); }
.form-success { padding: 40px; border-radius: 20px; background-color: var(--cream); text-align: center; }
.form-success h3 { color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 0.875rem; color: var(--stone); }

/* ── Footer ── */
.site-footer { background-color: var(--navy); padding: 64px 0 32px; }
.footer-inner { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 1024px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-brand img { height: 80px; width: auto; }
.footer-brand p { margin-top: 16px; max-width: 300px; font-size: 0.875rem; color: rgba(250,250,248,0.45); line-height: 1.6; }
.footer-links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 48px; }
@media (min-width: 1024px) { .footer-links-grid { gap: 80px; } }
.footer-links-col h4 { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,250,248,0.5); margin-bottom: 20px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a { font-size: 0.875rem; color: rgba(250,250,248,0.45); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--warm-white); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(250,250,248,0.08); display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.footer-copyright { font-size: 0.75rem; color: rgba(250,250,248,0.35); }
