/*
Theme Name: landingpage-sedotwc31-04
Theme URI: https://example.com/
Author: ChatGPT
Author URI: https://example.com/
Description: Landing page theme converted from a React project into a production-ready WordPress theme (no React, no Tailwind).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landingpage-sedotwc31-04
Tags: custom-background, custom-logo, custom-menu, featured-images, one-column
*/

/* ========= Base ========= */
:root{
  --bg-light:#f8f8f5;
  --bg-dark:#221e10;
  --primary:#103a2e;     /* deep green */
  --accent:#f2b90d;      /* yellow */
  --text:#0f172a;
  --muted:#64748b;
  --card:#ffffff;
  --border:rgba(15, 23, 42, .12);
  --shadow:0 18px 50px rgba(2, 6, 23, .12);
  --radius:14px;
  --radius-sm:10px;
  --container:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg-light);
  color:var(--text);
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
button{ font-family:inherit; }

.tn-sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.tn-container{
  width:min(var(--container), 100%);
  margin-inline:auto;
  padding:0 20px;
}

/* ========= Header / Nav ========= */
.tn-header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow:0 6px 18px rgba(2,6,23,.06);
}
.tn-header-inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.tn-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:210px;
}
.tn-logo{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:10px;
  background:var(--primary);
  color:var(--accent);
}
.tn-brand-text{
  display:flex; flex-direction:column; line-height:1.05;
}
.tn-brand-text .line1{
  font-weight:900; letter-spacing:.04em;
  color:var(--primary);
  text-transform:uppercase;
  font-size:18px;
}
.tn-brand-text .line2{
  font-weight:800;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  margin-top:2px;
}

.tn-nav{ display:flex; align-items:center; gap:22px; }
.tn-nav a{
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--primary);
  padding:10px 6px;
  border-radius:10px;
}
.tn-nav a:hover{ color:var(--accent); background:rgba(242,185,13,.08); }

.tn-actions{ display:flex; align-items:center; gap:12px; }
.tn-btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.tn-btn:active{ transform:scale(.98); }
.tn-btn-primary{
  background:var(--accent);
  color:var(--primary);
  box-shadow:0 10px 22px rgba(242,185,13,.28);
}
.tn-btn-primary:hover{ background:#d4a628; }
.tn-btn-outline{
  background:transparent;
  color:var(--primary);
  border-color:rgba(16,58,46,.25);
}
.tn-btn-outline:hover{ border-color:rgba(16,58,46,.5); }

.tn-menu-toggle{
  display:none;
  border:0;
  background:transparent;
  width:44px; height:44px;
  border-radius:12px;
  color:var(--primary);
  cursor:pointer;
}
.tn-menu-toggle:hover{ background:rgba(16,58,46,.06); }
.tn-menu-toggle svg{ width:22px; height:22px; }

.tn-mobile-nav{
  display:none;
  background:#fff;
  border-top:1px solid var(--border);
}
.tn-mobile-nav-inner{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:16px 0 18px;
}
.tn-mobile-nav-inner a{
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--primary);
  padding:10px 12px;
  border-radius:12px;
}
.tn-mobile-nav-inner a:hover{ background:rgba(242,185,13,.10); color:var(--primary); }

/* ========= Sections ========= */
.tn-main{ min-height:60vh; }
.tn-section{ padding:88px 0; }
.tn-section.alt{ background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.tn-section.soft{ background:#f1f5f9; }

.tn-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--primary);
}
.tn-eyebrow span{ width:34px; height:2px; background:var(--primary); display:inline-block; }

.tn-h1{
  font-size:clamp(34px, 4.2vw, 64px);
  line-height:1.05;
  margin:12px 0 10px;
  font-weight:900;
  letter-spacing:-.02em;
  color:var(--primary);
  text-transform:uppercase;
}
.tn-h2{
  font-size:clamp(28px, 3vw, 44px);
  line-height:1.1;
  margin:0 0 16px;
  font-weight:900;
  color:var(--primary);
  text-transform:uppercase;
}
.tn-kicker{
  font-weight:900;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--accent);
  margin-bottom:10px;
}
.tn-lead{
  color:var(--muted);
  font-size:16px;
  max-width:60ch;
  margin:0 0 24px;
}

.tn-grid-2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:44px;
  align-items:center;
}
@media (max-width: 980px){
  .tn-grid-2{ grid-template-columns:1fr; }
}

/* ========= Hero ========= */
.tn-hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin:18px 0 22px; }
.tn-badges{ display:flex; flex-wrap:wrap; gap:10px; }
.tn-badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(242,185,13,.10);
  border:1px solid rgba(242,185,13,.25);
  font-weight:800;
  font-size:12px;
}
.tn-badge svg{ width:18px; height:18px; color:var(--primary); }

.tn-hero-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#e2e8f0;
}
.tn-hero-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3; }
.tn-hero-float{
  position:absolute;
  left:-14px; bottom:-14px;
  background:#fff;
  border:1px solid rgba(242,185,13,.25);
  padding:16px 18px;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(2,6,23,.12);
  display:flex; gap:12px; align-items:center;
  transform: rotate(-2deg);
}
.tn-hero-float .icon{
  width:46px; height:46px;
  border-radius:999px;
  background:var(--primary);
  color:var(--accent);
  display:grid; place-items:center;
}
.tn-hero-float .icon svg{ width:22px; height:22px; }
.tn-hero-float .t1{ font-weight:900; font-size:13px; color:var(--primary); }
.tn-hero-float .t2{ font-weight:700; font-size:12px; color:var(--muted); }

/* ========= Profile ========= */
.tn-profile-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:46px;
  align-items:center;
}
@media (max-width: 980px){
  .tn-profile-grid{ grid-template-columns:1fr; }
}
.tn-photo-wrap{ position:relative; }
.tn-photo-wrap img{
  border-radius:16px;
  border:10px solid #f8fafc;
  box-shadow:var(--shadow);
  width:100%;
  aspect-ratio: 4/3;
  object-fit:cover;
}
.tn-badge-years{
  position:absolute;
  right:-18px; bottom:-18px;
  background:#fff;
  border-bottom:6px solid var(--accent);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:18px 20px;
  display:none;
}
@media (min-width: 820px){
  .tn-badge-years{ display:block; }
}
.tn-badge-years strong{ display:block; font-size:38px; color:var(--primary); line-height:1; }
.tn-badge-years span{ display:block; margin-top:4px; font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); font-weight:900; }

.tn-cards-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width: 700px){
  .tn-cards-2{ grid-template-columns:1fr; }
}
.tn-mini-card{
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.06);
  border-radius:14px;
  padding:16px;
  display:flex; gap:12px;
  transition:border-color .2s ease, transform .2s ease;
}
.tn-mini-card:hover{ border-color:rgba(242,185,13,.55); transform: translateY(-2px); }
.tn-mini-card .ic{
  width:36px; height:36px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(16,58,46,.12);
  display:grid; place-items:center;
  color:var(--primary);
  flex:0 0 auto;
}
.tn-mini-card h4{
  margin:0 0 6px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--primary);
  font-weight:900;
}
.tn-mini-card p{ margin:0; font-size:12px; color:var(--muted); }

/* ========= Services ========= */
.tn-section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:34px;
}
.tn-divider{
  height:1px;
  background:rgba(15,23,42,.12);
  flex:1;
  margin:0 20px 10px;
  display:none;
}
@media (min-width: 820px){ .tn-divider{ display:block; } }

.tn-services{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
@media (max-width: 1100px){
  .tn-services{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .tn-services{ grid-template-columns: 1fr; }
}
.tn-service{
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
  border-radius:16px;
  padding:22px;
  box-shadow:0 10px 26px rgba(2,6,23,.06);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tn-service:hover{
  transform: translateY(-4px);
  box-shadow:0 18px 40px rgba(2,6,23,.10);
  border-color:rgba(16,58,46,.25);
}
.tn-service .ico{
  width:52px; height:52px;
  border-radius:14px;
  background:var(--primary);
  color:var(--accent);
  display:grid; place-items:center;
  margin-bottom:14px;
  transition: background .2s ease, color .2s ease;
}
.tn-service:hover .ico{ background:var(--accent); color:var(--primary); }
.tn-service h4{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
  color:var(--primary);
}
.tn-service p{ margin:0 0 18px; color:var(--muted); font-size:13px; }
.tn-service .bar{
  height:4px; width:46px;
  background:var(--accent);
  border-radius:999px;
  transition: width .35s ease;
}
.tn-service:hover .bar{ width:100%; }

/* ========= Keunggulan ========= */
.tn-feature-wrap{
  background:var(--primary);
  color:#fff;
  border-radius:16px;
  padding:26px;
  border-left:10px solid var(--accent);
  position:relative;
  overflow:hidden;
}
.tn-feature-wrap p{ color:rgba(226,232,240,.9); }
.tn-features{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:18px;
}
@media (max-width: 1100px){ .tn-features{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .tn-features{ grid-template-columns: 1fr;} }
.tn-feature{
  border-left:1px solid rgba(255,255,255,.22);
  padding-left:14px;
  transition:border-color .2s ease;
}
.tn-feature:hover{ border-left-color: rgba(242,185,13,.9); }
.tn-feature .ic{
  width:30px; height:30px;
  display:grid; place-items:center;
  color:var(--accent);
  margin-bottom:10px;
}
.tn-feature h5{ margin:0 0 8px; font-size:16px; font-weight:900; }
.tn-feature p{ margin:0; font-size:12px; color:rgba(226,232,240,.85); }

/* ========= Gallery ========= */
.tn-gallery-head{ text-align:center; margin-bottom:30px; }
.tn-gallery-head .underline{ width:92px; height:6px; background:var(--accent); margin:12px auto 0; border-radius:999px; }
.tn-gallery{
  position:relative;
}
.tn-gallery-controls button{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:5;
  width:54px; height:54px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow);
  cursor:pointer;
  display:grid; place-items:center;
  transition:transform .15s ease, background .2s ease;
}
.tn-gallery-controls button:hover{ background:#fff; transform: translateY(-50%) scale(1.06); }
.tn-gallery-controls .prev{ left:-12px; }
.tn-gallery-controls .next{ right:-12px; }
@media (max-width: 820px){
  .tn-gallery-controls button{ display:none; }
}
.tn-track{
  display:flex;
  gap:16px;
  overflow:hidden;
  scroll-behavior:smooth;
}
.tn-slide{
  flex:0 0 calc(33.333% - 11px);
}
@media (max-width: 980px){ .tn-slide{ flex-basis: calc(50% - 8px);} }
@media (max-width: 620px){ .tn-slide{ flex-basis: 100%;} }

.tn-shot{
  border-radius:18px;
  overflow:hidden;
  border:4px solid #fff;
  box-shadow:0 18px 40px rgba(2,6,23,.12);
  cursor:zoom-in;
  position:relative;
}
.tn-shot img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition: transform .45s ease;
}
.tn-shot:hover img{ transform:scale(1.05); }
.tn-shot .overlay{
  position:absolute; inset:0;
  background:rgba(16,58,46,.22);
  opacity:0;
  display:grid; place-items:center;
  transition: opacity .25s ease;
}
.tn-shot:hover .overlay{ opacity:1; }
.tn-shot .overlay span{
  width:58px; height:58px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
  display:grid; place-items:center;
  backdrop-filter: blur(6px);
  color:#fff;
}

.tn-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:18px;
}
.tn-dot{
  width:10px; height:10px;
  border-radius:999px;
  background:#e2e8f0;
  border:0;
  cursor:pointer;
  transition: all .2s ease;
}
.tn-dot.active{ width:40px; background:var(--accent); }

.tn-lightbox{
  position:fixed;
  inset:0;
  z-index:200;
  background:rgba(0,0,0,.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.tn-lightbox.is-open{ display:flex; }
.tn-lightbox img{
  max-width:min(1100px, 100%);
  max-height:85vh;
  border-radius:16px;
  box-shadow:0 28px 80px rgba(0,0,0,.55);
}
.tn-lightbox .close{
  position:absolute;
  top:18px; right:18px;
  width:52px; height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  display:grid; place-items:center;
}
.tn-lightbox .close:hover{ background:rgba(255,255,255,.2); }

/* ========= Contact ========= */
.tn-contact-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px){ .tn-contact-card{ grid-template-columns:1fr; } }
.tn-contact-left{
  background:var(--primary);
  color:#fff;
  padding:34px;
}
@media (min-width: 980px){ .tn-contact-left{ padding:54px; } }
.tn-contact-right{
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
@media (min-width: 980px){ .tn-contact-right{ padding:54px; } }
.tn-contact-left h3{
  margin:0 0 18px;
  font-size:clamp(26px, 2.6vw, 40px);
  font-weight:900;
  text-transform:uppercase;
}
.tn-contact-item{
  display:flex; gap:14px; align-items:flex-start;
  padding:14px 0;
}
.tn-contact-item .ic{
  width:44px; height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  display:grid; place-items:center;
  color:#fff;
  transition: background .2s ease, color .2s ease;
  flex:0 0 auto;
}
.tn-contact-item a{ color:#fff; }
.tn-contact-item a:hover .ic{ background:var(--accent); color:var(--primary); }
.tn-contact-item .label{
  font-size:11px; letter-spacing:.16em; text-transform:uppercase; font-weight:900; color:rgba(226,232,240,.8);
}
.tn-contact-item .val{
  font-size:18px; font-weight:900; margin-top:2px;
}
.tn-contact-right h4{
  margin:0 0 10px;
  font-weight:900;
  font-size:22px;
  color:var(--primary);
  text-transform:uppercase;
}
.tn-contact-right p{ margin:0 0 18px; color:var(--muted); }
.tn-note{ margin-top:14px; font-size:12px; color:#94a3b8; text-align:center; }

/* ========= Footer ========= */
.tn-footer{
  background:#0b1220;
  color:#fff;
  padding:64px 0 42px;
  border-top:1px solid rgba(255,255,255,.1);
}
.tn-footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:28px;
  margin-bottom:34px;
}
@media (max-width: 980px){ .tn-footer-grid{ grid-template-columns:1fr; } }
.tn-footer p{ color:#94a3b8; margin:10px 0 0; }
.tn-footer h4{ margin:0 0 12px; font-size:14px; font-weight:900; }
.tn-footer ul{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.tn-footer a{ color:#94a3b8; font-size:13px; }
.tn-footer a:hover{ color:#fff; }

.tn-footer-bottom{
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:#94a3b8;
  font-size:12px;
}
.tn-footer-social{ display:flex; gap:14px; }

/* ========= WordPress Core tweaks ========= */
.entry-content p{ margin:0 0 14px; }
.wp-block-image img{ border-radius:14px; }
