@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Lao:wdth,wght@75,400;75,700;75,800&display=swap");

:root {
  --font-title: "Noto Serif Lao Condensed ExtraBold", "Noto Serif Lao", Georgia, serif;
  --font-body: "Noto Serif Lao Condensed", "Noto Serif Lao", Arial, Helvetica, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: #0b1020;
  color: white;
  line-height: 1.65;
  font-optical-sizing: auto;
}

h1,
h2,
h3,
.logo,
.section-title,
.hero-card h3,
.about-hero-panel strong {
  font-family: var(--font-title);
  font-weight: 800;
  font-stretch: 75%;
  letter-spacing: 0;
}

p,
a,
li,
button,
input,
textarea {
  font-family: var(--font-body);
  font-stretch: 75%;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;

  background: rgba(8, 12, 25, 0.85);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 28px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ffd700;
}

.language-link {
  padding: 8px 14px;
  border: 1px solid rgba(255,215,0,0.55);
  border-radius: 999px;
  color: #ffd700;
}

.language-link:hover {
  background: #ffd700;
  color: black;
}

html[lang="lo"] body {
  font-family: var(--font-body);
  line-height: 1.85;
}

html[lang="lo"] h1,
html[lang="lo"] h2,
html[lang="lo"] h3,
html[lang="lo"] .about-hero-panel strong,
html[lang="lo"] .section-title {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.32;
}

html[lang="lo"] p,
html[lang="lo"] li {
  line-height: 1.9;
}

/* HERO SECTION */

.hero {
  min-height: 100vh;

  padding: 140px 8% 80px;

  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;

  background:
    linear-gradient(rgba(5,10,25,0.85), rgba(5,10,25,0.95)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600&auto=format&fit=crop")
    center/cover;
}

.badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  color: #ffd700;

  padding: 10px 18px;
  border-radius: 50px;

  margin-bottom: 25px;
  font-size: 14px;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 20px;
  color: #d6d6d6;
  margin-bottom: 35px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary {
  background: #ffd700;
  color: black;
}

.primary:hover {
  background: white;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.secondary:hover {
  background: white;
  color: black;
}

/* HERO CARD */

.hero-card {
  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.1);

  padding: 40px;
  border-radius: 25px;

  backdrop-filter: blur(12px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.hero-card h3 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #ffd700;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin-bottom: 18px;
  font-size: 18px;
}

/* FEATURES */

.features {
  padding: 100px 8%;
  background: #111827;
}

.section-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 70px;
}

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

.feature-card {
  background: #1b2435;
  padding: 40px;
  border-radius: 20px;

  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  margin-bottom: 20px;
  color: #ffd700;
  font-size: 26px;
}

.feature-card p {
  color: #d6d6d6;
}

/* FOOTER */

.footer {
  background: black;
  text-align: center;
  padding: 30px;
  color: #999;
}

/* RESPONSIVE */

@media (max-width: 992px) {

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

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  nav {
    justify-content: center;
  }

}
/* PRODUCTS HERO */

.products-hero{
    min-height:60vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:140px 8% 80px;

    text-align:center;

    background:
    linear-gradient(rgba(5,10,25,0.88), rgba(5,10,25,0.92)),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?q=80&w=1600&auto=format&fit=crop")
    center/cover;
}


.products-hero h1{
    font-size:64px;
    margin-bottom:25px;
}

.products-hero p{
    max-width:850px;
    margin:auto;
    color:#d6d6d6;
    font-size:20px;
}

/* PRODUCTS SECTION */

.products-section{
    padding:100px 8%;
    background:#111827;
}

/* PRODUCT GRID */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px,1fr));
    gap:35px;
}

/* PRODUCT CARD */

.product-card{
    background:#1b2435;

    padding:40px;

    border-radius:25px;

    transition:0.4s;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.product-card:hover{
    transform:translateY(-12px);

    border-color:#ffd700;
}

.product-icon{
    font-size:60px;
    margin-bottom:25px;
}

.product-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#ffd700;
}

.product-card p{
    color:#d6d6d6;
    margin-bottom:30px;
}

/* PRODUCT BUTTON */

.product-btn{
    display:inline-block;

    padding:12px 24px;

    border-radius:10px;

    background:#ffd700;

    color:black;

    text-decoration:none;

    font-weight:bold;

    transition:0.3s;
}

.product-btn:hover{
    background:white;
}

/* CTA SECTION */

.cta-section{
    padding:100px 8%;

    text-align:center;

    background:
    linear-gradient(135deg,#0f172a,#111827);
}

.cta-section h2{
    font-size:48px;
    margin-bottom:25px;
}

.cta-section p{
    font-size:20px;
    color:#d6d6d6;
    margin-bottom:35px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .products-hero h1{
        font-size:44px;
    }

    .cta-section h2{
        font-size:38px;
    }

}

/* CONTACT PAGE */

.contact-hero {
  min-height: 55vh;
  padding: 150px 8% 80px;
  text-align: center;
  background:
    linear-gradient(rgba(5,10,25,0.9), rgba(5,10,25,0.95)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop")
    center/cover;
}

.contact-hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.contact-hero p {
  max-width: 800px;
  margin: auto;
  color: #d6d6d6;
  font-size: 20px;
}

.contact-section {
  padding: 100px 8%;
  background: #111827;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #ffd700;
}

.contact-card {
  background: #1b2435;
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #ffd700;
  margin-bottom: 8px;
}

.contact-card p {
  color: #d6d6d6;
}

.contact-form {
  background: #1b2435;
  padding: 40px;
  border-radius: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: #ffd700;
  color: black;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: white;
}

@media(max-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 42px;
  }
}

/* ABOUT PAGE */

.about-hero {
  min-height: 92vh;
  padding: 150px 8% 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 55px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,215,0,0.18), transparent 28%),
    linear-gradient(rgba(5,10,25,0.82), rgba(5,10,25,0.96)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1600&auto=format&fit=crop")
    center/cover;
}

.about-hero-content,
.about-hero-panel,
.about-intro,
.about-statement,
.strength-card,
.about-cta {
  animation: fadeUp 0.9s ease both;
}

.about-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-hero-content h1 {
  max-width: 880px;
  font-size: 66px;
  line-height: 1.08;
  margin-bottom: 25px;
}

.about-hero-content p:last-child {
  max-width: 760px;
  color: #d6d6d6;
  font-size: 20px;
}

.about-hero-panel {
  padding: 38px;
  border-radius: 24px;
  border: 1px solid rgba(255,215,0,0.28);
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow: 0 25px 60px rgba(0,0,0,0.38);
  backdrop-filter: blur(14px);
  animation-delay: 0.15s;
}

.about-hero-panel span,
.about-eyebrow,
.about-statement span {
  display: inline-block;
  color: #ffd700;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-hero-panel strong {
  display: block;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-hero-panel p {
  color: #d6d6d6;
}

.about-intro {
  padding: 95px 8%;
  background: #0b1020;
  text-align: center;
}

.about-intro h2 {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: 46px;
  line-height: 1.18;
}

.about-intro p {
  max-width: 900px;
  margin: auto;
  color: #d6d6d6;
  font-size: 19px;
}

.about-mission-vision {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
  background:
    linear-gradient(135deg, rgba(17,24,39,1), rgba(8,12,25,1));
}

.about-statement {
  min-height: 390px;
  padding: 48px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.09);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.3);
}

.about-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.14), transparent 48%);
  opacity: 0;
  transition: 0.4s;
}

.about-statement:hover::before {
  opacity: 1;
}

.mission-card {
  background: #1b2435;
}

.vision-card {
  background:
    linear-gradient(rgba(27,36,53,0.86), rgba(27,36,53,0.94)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1200&auto=format&fit=crop")
    center/cover;
  animation-delay: 0.12s;
}

.about-statement h2,
.about-statement p {
  position: relative;
}

.about-statement h2 {
  font-size: 34px;
  line-height: 1.22;
  margin-bottom: 22px;
}

.about-statement p {
  color: #d6d6d6;
  font-size: 18px;
}

.about-strengths {
  padding: 100px 8%;
  background: #111827;
}

.about-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.about-section-heading h2 {
  font-size: 48px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.strength-card {
  min-height: 310px;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #1b2435, #151d2d);
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
  transition: 0.35s ease;
}

.strength-card:nth-child(2) {
  animation-delay: 0.1s;
}

.strength-card:nth-child(3) {
  animation-delay: 0.2s;
}

.strength-card:nth-child(4) {
  animation-delay: 0.3s;
}

.strength-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255,215,0,0.75);
  box-shadow: 0 24px 55px rgba(0,0,0,0.36);
}

.strength-number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(255,215,0,0.12);
  color: #ffd700;
  font-weight: bold;
  border: 1px solid rgba(255,215,0,0.28);
}

.strength-card h3 {
  color: #ffd700;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.strength-card p {
  color: #d6d6d6;
}

.about-cta {
  padding: 95px 8%;
  text-align: center;
  background:
    linear-gradient(rgba(5,10,25,0.86), rgba(5,10,25,0.94)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600&auto=format&fit=crop")
    center/cover;
}

.about-cta h2 {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: 46px;
  line-height: 1.15;
}

.about-cta p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #d6d6d6;
  font-size: 19px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 1200px) {
  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width: 992px) {
  .about-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .about-hero-content h1 {
    font-size: 46px;
  }

  .about-mission-vision {
    grid-template-columns: 1fr;
  }

  .about-intro h2,
  .about-section-heading h2,
  .about-cta h2 {
    font-size: 38px;
  }
}

@media(max-width: 640px) {
  .about-hero {
    padding-top: 180px;
  }

  .about-hero-content h1 {
    font-size: 38px;
  }

  .about-hero-panel,
  .about-statement,
  .strength-card {
    padding: 28px;
    border-radius: 18px;
  }

  .about-statement h2 {
    font-size: 28px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }
}
