/* ============================================================
   LUNGAPI CONSULTING — style.css
   Dark theme edition with logo, real photos, community projects
   ============================================================ */


/* ============================================================
   1. BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; width: 100%; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  background-color: #111111;   /* dark theme base */
  color: #e0e0e0;
  overflow-x: hidden;
}


/* ============================================================
   2. UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px;
}

@media (max-width: 600px) {
  .container { padding: 24px 20px; }
}


/* ============================================================
   3. HEADER & NAVIGATION
   ============================================================ */
header {
  background-color: #1A1A1A;
  border-bottom: 2px solid #CC0000;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 12px;
}

/* Logo image — sized to fit the dark header nicely */
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
}

.nav-link {
  color: #cccccc;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.3s, color 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link:hover {
  background-color: #CC0000;
  color: white;
  text-decoration: none;
}

.nav-link.active-link {
  background-color: #CC0000;
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  nav ul.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #222222;
    border: 1px solid #333;
    border-radius: 6px;
    margin-top: 8px;
    padding: 12px 16px;
    gap: 4px;
  }
  nav ul.nav-links.active { display: flex; }
  .header-container { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .logo-img { height: 42px; }
  .header-container { padding: 0 20px; }
}


/* ============================================================
   4. HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 2, 2, 0.88) 0%,
    rgba(10, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  color: white;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff8888;
  margin-bottom: 14px;
}

.hero-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 22px;
}

.hero-subtext {
  font-size: 17px;
  line-height: 1.75;
  color: #ddcccc;
  max-width: 500px;
  margin-bottom: 36px;
}

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

.btn-primary {
  background-color: #CC0000;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #991000;
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}


/* ============================================================
   5. STATS BAR
   ============================================================ */
.stats-bar {
  background-color: #CC0000;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 52px;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: white;
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  line-height: 1;
  color: white;
}

.stat-label {
  font-size: 11px;
  color: #ffcccc;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .stat { width: 50%; padding: 18px 12px; border-bottom: 1px solid rgba(255,255,255,0.15); }
}


/* ============================================================
   6. HOME INTRO CARD & FEATURE TILES
   ============================================================ */
.intro-card {
  background: #1e1e1e;
  border-left: 4px solid #CC0000;
  padding: 30px 36px;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.intro-card p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 14px;
  line-height: 1.75;
}

.intro-card p:last-child { margin-bottom: 0; }

.intro-tagline {
  font-weight: 700;
  color: #ff8888 !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.feature-tile {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #cccccc;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feature-tile:hover {
  transform: translateY(-4px);
  border-color: #CC0000;
  box-shadow: 0 6px 20px rgba(204,0,0,0.2);
}

.feature-icon {
  font-size: 28px;
  color: #CC0000;
}


/* ============================================================
   7. WORK STRIP — 3-photo row on home page
   ============================================================ */
.work-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 220px;
  margin-top: 40px;
}

.work-strip-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.work-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s;
}

.work-strip-item:hover::after {
  background: rgba(180, 0, 0, 0.5);
}

.work-strip-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
}

@media (max-width: 600px) {
  .work-strip { grid-template-columns: 1fr; height: auto; }
  .work-strip-item { height: 160px; }
}


/* ============================================================
   8. SECTION STYLES (shared)
   ============================================================ */
section {
  background: #161616;
  margin: 0;
  padding: 0;
  width: 100%;
}

section.container {
  background: #161616;
  margin: 0 auto;
  padding: 48px 40px;
  max-width: 1200px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  color: #CC0000;
}

.section-intro {
  color: #aaaaaa;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
}

/* Section photo banner (used in Services) */
.section-photo {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 36px;
}

.section-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}

.section-photo-overlay p {
  color: #dddddd;
  font-style: italic;
  font-size: 15px;
}


/* ============================================================
   9. SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  padding: 24px 20px;
  border-radius: 8px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service:hover {
  transform: translateY(-5px);
  border-color: #CC0000;
  box-shadow: 0 8px 24px rgba(204,0,0,0.15);
}

.service-icon {
  font-size: 30px;
  color: #CC0000;
  margin-bottom: 14px;
  display: block;
}

.service h3 {
  font-size: 17px;
  font-weight: 700;
  color: #eeeeee;
  margin-bottom: 8px;
}

.service p {
  font-size: 14px;
  color: #999999;
  line-height: 1.6;
}


/* ============================================================
   10. COMMUNITY PROJECTS SECTION
   ============================================================ */

/* Project block — alternating image + text layout */
.project-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #2a2a2a;
}

.project-block.reverse { direction: rtl; }
.project-block.reverse > * { direction: ltr; }

.project-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.project-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.project-image:hover img { transform: scale(1.03); }

.project-tag {
  display: inline-block;
  background: #CC0000;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.project-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #eeeeee;
  margin-bottom: 14px;
  line-height: 1.3;
}

.project-text p {
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.project-details {
  list-style: none;
  padding: 0;
}

.project-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #888888;
  margin-bottom: 8px;
}

.project-details li i {
  color: #CC0000;
  width: 16px;
  text-align: center;
}

/* Gallery rows */
.project-gallery-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #CC0000;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  padding: 10px 14px;
  font-size: 13px;
  color: #888888;
}

/* Sustainable project block */
.project-sustainable {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 32px;
  margin-top: 16px;
}

.project-sustainable-img {
  border-radius: 8px;
  overflow: hidden;
}

.project-sustainable-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.sustainable-icon {
  font-size: 32px;
  color: #44aa66;
  margin-bottom: 12px;
  display: block;
}

.project-sustainable-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #eeeeee;
  margin-bottom: 14px;
}

.project-sustainable-text p {
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .project-block,
  .project-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .project-sustainable { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .project-gallery { grid-template-columns: 1fr; }
}


/* ============================================================
   11. ABOUT SECTION
   ============================================================ */
.about-photo-banner {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center 30%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.about-photo-quote {
  font-size: 20px;
  font-style: italic;
  color: white;
  text-align: center;
  max-width: 600px;
}

.about-card {
  background: #1e1e1e;
  border-left: 4px solid #CC0000;
  padding: 32px 36px;
  border-radius: 8px;
}

.about-block { margin-bottom: 28px; }
.about-block:last-child { margin-bottom: 0; }

.about-block p {
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.75;
}

.about-heading {
  font-size: 19px;
  font-weight: 700;
  color: #CC0000;
  margin-bottom: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.value-card {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 18px;
}

.value-card i {
  font-size: 20px;
  color: #CC0000;
  margin-bottom: 8px;
  display: block;
}

.value-card strong {
  display: block;
  font-size: 15px;
  color: #eeeeee;
  margin-bottom: 4px;
}

.value-card p {
  font-size: 13px;
  color: #777777;
  margin: 0;
}


/* ============================================================
   12. CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.contact-info, .contact-form-card {
  background: #1e1e1e;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.contact-heading {
  font-size: 20px;
  font-weight: 700;
  color: #eeeeee;
  margin-bottom: 20px;
}

.contact-list { list-style: none; padding: 0; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #aaaaaa;
}

.contact-list li i {
  color: #CC0000;
  font-size: 16px;
  width: 18px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-list a {
  color: #aaaaaa;
  text-decoration: none;
}

.contact-list a:hover {
  color: #CC0000;
  text-decoration: underline;
}

/* Company registration info box */
.reg-info {
  margin-top: 24px;
  padding: 16px;
  background: #111111;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
  font-size: 13px;
  color: #666666;
  line-height: 1.8;
}

.reg-info strong {
  color: #999999;
}

.contact-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #eeeeee;
  margin-bottom: 20px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: #111111;
  border: 1px solid #333333;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #eeeeee;
  transition: border-color 0.2s;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #555555;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: #CC0000;
}

.contact-form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-card button {
  background-color: #CC0000;
  color: white;
  padding: 13px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-card button:hover {
  background-color: #991000;
  transform: scale(1.02);
}


/* ============================================================
   13. FOOTER
   ============================================================ */
footer {
  background-color: #0d0d0d;
  border-top: 2px solid #CC0000;
  padding: 48px 40px 24px;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 36px;
  display: block;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #222222;
}

.footer-col-title {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #CC0000;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 13px;
  color: #666666;
  line-height: 1.9;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-social a i {
  font-size: 16px;
  color: #CC0000;
  width: 18px;
}

.footer-social a:hover {
  color: #eeeeee;
  text-decoration: none;
}

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

.footer-bottom p {
  font-size: 12px;
  color: #444444;
}

.footer-slogan {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px !important;
  letter-spacing: 4px;
  color: #CC0000 !important;
}

@media (max-width: 700px) {
  .footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ============================================================
   14. WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  text-decoration: none;
  color: white;
}


/* ============================================================
   15. GENERAL LINKS
   ============================================================ */
a { color: #CC0000; text-decoration: none; }
a:hover { text-decoration: underline; }
