:root {
  --bg: #0f0f0f;
  --text: #dbdbdb;
  --accent: #a08963;
  --highlight: #c9b194;
  --card-bg: #1a1a1a;
  --border: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===== Header ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  filter: brightness(200%);
}

.logo h1 {
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--highlight);
}

/* ===== Nav Bar ===== */
nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  transition: right 0.3s ease;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--highlight);
  text-shadow: 0 0 6px rgba(201, 177, 148, 0.6);
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* ===== Main Content ===== */
main {
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Hero Section ===== */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, rgba(160, 137, 99, 0.03) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 177, 148, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(201, 177, 148, 0.12);
  border: 1px solid rgba(201, 177, 148, 0.25);
  border-radius: 30px;
  color: var(--highlight);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--highlight);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-content > p {
  font-size: 1.25rem;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 50px;
}

.hero-story {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(201, 177, 148, 0.15);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-story .story-label {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  opacity: 0.8;
}

.hero-story h2 {
  font-size: 2.2rem;
  color: var(--highlight);
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-story p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 20px;
  text-align: left;
}

.hero-story strong {
  color: var(--highlight);
  font-weight: 600;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.label {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.8;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--highlight);
  margin-top: 10px;
}

/* ===== Story Section - HIDDEN (now part of hero) ===== */
.story-section {
  display: none;
}

/* ===== Mission Section ===== */
.mission-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, transparent 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-card {
  background: var(--card-bg);
  padding: 50px 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.mission-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mission-card:nth-child(2) {
  animation-delay: 0.4s;
}

.mission-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(201, 177, 148, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-wrapper i {
  width: 36px;
  height: 36px;
  stroke: var(--highlight);
}

.mission-card h3 {
  font-size: 1.8rem;
  color: var(--highlight);
  margin-bottom: 15px;
}

.mission-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.85;
}

/* ===== Services Section ===== */
.services-section {
  padding: 100px 20px;
  background-color: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-item {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(201, 177, 148, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--highlight);
}

.service-item h3 {
  font-size: 1.3rem;
  color: var(--highlight);
  margin-bottom: 12px;
}

.service-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.8;
}

/* ===== Values Section ===== */
.values-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, transparent 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.value-card {
  background: var(--card-bg);
  padding: 40px 35px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--highlight);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.85;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(160, 137, 99, 0.05) 0%, rgba(26, 26, 26, 0.3) 100%);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.2s;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--highlight);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--highlight);
  color: #000;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 177, 148, 0.3);
}

.btn-primary i {
  width: 20px;
  height: 20px;
  stroke: #000;
}

.btn-secondary {
  border: 1px solid var(--highlight);
  color: var(--highlight);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(201, 177, 148, 0.1);
  transform: translateY(-3px);
}

.btn-secondary i {
  width: 20px;
  height: 20px;
  stroke: var(--highlight);
}

/* ===== Footer ===== */
footer {
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .socials {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

footer .socials i[data-lucide] {
  width: 22px;
  height: 22px;
  stroke: var(--highlight);
  transition: 0.3s;
}

footer .socials a {
  color: var(--highlight);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

footer .socials a:hover i[data-lucide] {
  stroke: var(--text);
  transform: scale(1.1);
}

footer .socials a:hover {
  color: var(--text);
  transform: scale(1.2);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Scroll Animation Classes ===== */
.fade-in-view {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-view.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    height: 100vh;
    width: 240px;
    gap: 25px;
    transition: right 0.4s ease;
  }

  nav ul.show {
    right: 0;
  }

  header {
    padding: 18px 25px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content > p {
    font-size: 1.05rem;
  }

  .hero-story h2 {
    font-size: 1.8rem;
  }

  .hero-story p {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
    display: none;
  }

  .image-placeholder {
    height: 300px;
    display: none;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .mission-card {
    padding: 35px 25px;
  }

  .mission-card h3 {
    font-size: 1.5rem;
  }

  .story-text p {
    font-size: 0.95rem;
  }

  .cta-content h2 {
    font-size: 1.7rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}