/*
Theme Name: Kenwoodmongol Theme
Theme URI: https://kenwoodmongol.mn/
Author: Codex
Author URI: https://openai.com/
Description: Upload-ready one-page WordPress theme for Kenwoodmongol LLC.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: kenwoodmongol-theme
*/

:root{
  --primary:#0b1f3a;
  --accent:#1e88e5;
  --text:#0f172a;
  --muted:#667085;
  --bg:#f7f9fc;
  --white:#ffffff;
  --line:#e5e7eb;
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --radius:18px;
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:12px;
  font-weight:700;
  transition:.25s ease;
  box-shadow:var(--shadow);
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:#1676c9;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  background:rgba(255,255,255,.06);
}

.btn-outline:hover{
  background:rgba(255,255,255,.14);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,31,58,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:76px;
}

.brand{
  font-size:28px;
  font-weight:800;
  color:#fff;
  letter-spacing:.2px;
}

.brand span{
  color:#7cc4ff;
}

.main-nav ul{
  display:flex;
  list-style:none;
  gap:26px;
  padding:0;
  margin:0;
  color:#dbe7f5;
  font-weight:600;
}

.main-nav a:hover{
  color:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(8,22,44,.72), rgba(8,22,44,.78)),
    url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  min-height:720px;
  color:#fff;
  display:flex;
  align-items:center;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:46px;
  align-items:center;
  padding:72px 0 60px;
}

.eyebrow{
  display:inline-block;
  background:rgba(30,136,229,.18);
  border:1px solid rgba(124,196,255,.35);
  color:#cfe8ff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.3px;
}

.hero h1{
  font-size:56px;
  line-height:1.05;
  margin:18px 0 20px;
  font-weight:800;
  max-width:700px;
}

.hero p{
  font-size:18px;
  color:#dbe7f5;
  max-width:650px;
  margin:0 0 28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:32px;
}

.quick-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.quick{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:16px 18px;
}

.quick b{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.quick small{
  color:#d5e6f7;
}

.hero-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.mini-label{
  font-size:13px;
  color:#cfe8ff;
  font-weight:700;
  margin-bottom:8px;
}

.hero-list{
  display:grid;
  gap:14px;
  margin-top:12px;
}

.hero-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:rgba(255,255,255,.08);
  padding:16px;
  border-radius:16px;
}

.hero-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#1e88e5;
  display:grid;
  place-items:center;
  font-size:22px;
}

section{
  padding:90px 0;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}

.section-head h2{
  font-size:40px;
  line-height:1.1;
  margin:0 0 12px;
  color:var(--primary);
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.trust{
  background:#fff;
  padding-top:40px;
}

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

.trust-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 6px 24px rgba(2,6,23,.04);
  text-align:center;
}

.icon-circle{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#eaf4ff;
  color:var(--accent);
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  font-size:28px;
}

.trust-card h3,
.service-card h3,
.project-card h3{
  margin:0 0 10px;
  color:var(--primary);
  font-size:22px;
}

.trust-card p,
.service-card p,
.project-card p,
.contact-card p{
  margin:0;
  color:var(--muted);
}

.services{
  background:var(--bg);
}

.service-card{
  background:#fff;
  border-radius:18px;
  padding:30px;
  box-shadow:var(--shadow);
  border:1px solid #eef2f7;
  transition:.25s ease;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  background:#ebf5ff;
  color:var(--accent);
  display:grid;
  place-items:center;
  font-size:26px;
  margin-bottom:18px;
}

.project-card{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  border:1px solid #edf1f5;
}

.project-image{
  height:220px;
  background-size:cover;
  background-position:center;
}

.project-body{
  padding:24px;
}

.tag{
  display:inline-block;
  padding:7px 11px;
  border-radius:999px;
  background:#ecf4ff;
  color:var(--accent);
  font-size:12px;
  font-weight:700;
  margin-bottom:12px;
}

.certs{
  background:#fff;
}

.cert-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.cert{
  border:1px dashed #cfd8e3;
  border-radius:18px;
  padding:18px;
  background:#fbfcfe;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.cert-top{
  width:100%;
  height:130px;
  border-radius:14px;
  background:linear-gradient(135deg,#eff6ff,#f8fafc);
  border:1px solid #e3e8ef;
  display:grid;
  place-items:center;
  color:#6b7280;
  font-weight:700;
}

.cert b{
  color:var(--primary);
  display:block;
  margin-top:14px;
}

.cert span{
  color:var(--muted);
  font-size:14px;
}

.cta{
  background:linear-gradient(135deg,#0b1f3a,#15345e);
  color:#fff;
}

.cta-wrap{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:28px;
  align-items:start;
}

.cta h2{
  font-size:42px;
  line-height:1.08;
  margin:0 0 16px;
}

.cta p{
  color:#d4e2f0;
  max-width:620px;
}

.contact-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:28px;
}

.contact-list{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.contact-item{
  background:rgba(255,255,255,.06);
  border-radius:16px;
  padding:14px 16px;
}

.contact-item b{
  display:block;
  margin-bottom:4px;
}

.site-footer{
  background:#08162c;
  color:#c8d6e4;
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.07);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

@media (max-width:1024px){
  .hero h1{
    font-size:46px;
  }

  .hero-grid,
  .cta-wrap{
    grid-template-columns:1fr;
  }

  .quick-points,
  .services-grid,
  .projects-grid,
  .trust-grid,
  .cert-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:680px){
  .brand{
    font-size:22px;
  }

  .main-nav{
    display:none;
  }

  .hero h1{
    font-size:36px;
  }

  .quick-points,
  .services-grid,
  .projects-grid,
  .trust-grid,
  .cert-grid{
    grid-template-columns:1fr;
  }

  section{
    padding:70px 0;
  }

  .section-head h2,
  .cta h2{
    font-size:32px;
  }

  .hero{
    min-height:auto;
  }
}
