/*
Theme Name: Seamou Corporate
Theme URI: https://seamou.studio
Author: Seamou T&E Co Ltd
Author URI: https://seamou.studio
Description: Exact Voodoo Layout (Pitch Black, Massive Responsive Headline, Interactive 3D Earth Globe, Mobile Hamburger Drawer, Pre-footer Banner, 4-Col Clean Footer, Full i18n).
Version: 0.0.0.0
License: Proprietary
Text Domain: seamou-corporate
*/

:root {
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --bg-black: #000000;
  --bg-surface: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --bg-drawer: rgba(8, 8, 8, 0.96);
  
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --border-glow: rgba(0, 210, 255, 0.4);
  
  --blue: #0866FF;
  --cyan: #00D2FF;
  --emerald: #10B981;
  
  --text-white: #FFFFFF;
  --text-muted: #8E8E93;
  --text-dim: #555555;

  --max-w: 1200px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 76px;
}

/* ==========================================================================
   RESET & MOBILE-FIRST FOUNDATION
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--text-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: clip;
  width: 100%;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

ul, ol, li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   HEADER (Voodoo Clean Style + Mobile Hamburger Engine)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1010;
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover {
  color: #FFFFFF;
}

.header-right-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 2px 4px;
}

.lang-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover {
  color: #FFFFFF;
}
.lang-btn.active {
  background: #FFFFFF;
  color: #000000;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.social-icon:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Mobile Hamburger Button (Morphing Animation)
   -------------------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 1010;
  transition: var(--transition);
}
.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Mobile Drawer Overlay (Slide & Blur)
   -------------------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  max-height: calc(100dvh - var(--header-height));
  background: var(--bg-drawer);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  z-index: 999;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-inner {
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}
.mobile-nav-item:active, .mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-lang-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.mobile-btn-primary:active {
  transform: scale(0.98);
}

.mobile-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.mobile-btn-secondary:active {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 8px;
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.mobile-drawer-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION (Voodoo Massive Typography & 3D Globe)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 40px;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, #06152d 0%, #020813 60%, #000000 100%);
}

.hero-3d-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: grab;
  touch-action: pan-y;
}
.hero-3d-bg:active {
  cursor: grabbing;
}

.hero-content-overlay {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero-content-overlay a,
.hero-content-overlay button {
  pointer-events: auto;
}

.voodoo-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.045em;
  line-height: 1.1;
  word-break: break-word;
  overflow-wrap: break-word;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.voodoo-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-item-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

/* ==========================================================================
   STUDIO & CAPABILITIES SECTION
   ========================================================================== */
.section {
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.0rem, 4.5vw, 3.4rem);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.voodoo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voodoo-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.voodoo-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.25;
}
.voodoo-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* ==========================================================================
   PRE-FOOTER BANNER: "Join us today" (Voodoo Style)
   ========================================================================== */
.voodoo-join-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.join-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.88) 100%),
              url('assets/img/iam-access.jpg') center/cover no-repeat;
  filter: brightness(0.6);
  z-index: 1;
}

.join-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}

.join-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.join-banner-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}

.join-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: var(--transition);
}
.join-banner-link:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

/* ==========================================================================
   MAIN FOOTER (Exact Voodoo 4-Column Clean Layout)
   ========================================================================== */
.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 50px;
}

.voodoo-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.voodoo-footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col .footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.brand-col .footer-brand-slogan {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.footer-links-clean {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-clean li {
  list-style: none !important;
}
.footer-links-clean a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links-clean a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile & Tablet Perfection)
   ========================================================================== */
@media (max-width: 992px) {
  :root {
    --header-height: 68px;
  }
  .container {
    padding: 0 24px;
  }
  
  /* Show Hamburger & Hide Desktop Menu */
  .desktop-nav, .desktop-socials, .desktop-lang-switcher {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  .globe-stage-wrapper {
    height: 440px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voodoo-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
  }
  .container {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 1.2rem;
  }
  .brand-logo-img {
    width: 28px;
    height: 28px;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 10px;
  }

  .voodoo-title {
    font-size: clamp(2.0rem, 8.5vw, 2.8rem);
    margin-bottom: 8px;
  }

  .voodoo-subtitle {
    font-size: clamp(1.0rem, 4.2vw, 1.25rem);
    margin-bottom: 16px;
  }

  .globe-stage-wrapper {
    height: 320px;
  }

  .stats-section {
    padding: 48px 0;
  }

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

  .stat-item-num {
    font-size: 2.0rem;
    margin-bottom: 4px;
  }
  .stat-item-label {
    font-size: 0.75rem;
  }

  .section {
    padding: 60px 0;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .section-head h2 {
    font-size: 1.8rem;
  }
  .section-head p {
    font-size: 0.95rem;
  }

  .voodoo-card {
    padding: 24px 18px;
  }
  .voodoo-card h3 {
    font-size: 1.18rem;
  }

  .join-banner-content {
    padding: 48px 0;
  }
  .join-banner-title {
    font-size: 2.0rem;
  }
  .join-banner-desc {
    font-size: 0.98rem;
  }

  .site-footer {
    padding: 50px 0 36px;
  }
  .voodoo-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .brand-col {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
