/* -------------------- DARK PREMIUM VARIABLES -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0a;
  --surface-dark: #151515;
  --card-dark: #1e1e1e;
  --text-light: #f0f0f0;
  --text-muted: #aaaaaa;
  --accent-gold: #c4a747;
  --accent-dim: #9e8b4b;
  --border-subtle: #2a2a2a;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------- TYPOGRAPHY & UTILS -------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--accent-gold);
  background: transparent;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

/* -------------------- NAVIGATION -------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 5px 30px rgba(0,0,0,0.7);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
}
.logo span {
  color: var(--accent-gold);
  font-weight: 400;
}
.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-menu a {
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  padding-bottom: 5px;
  color: var(--text-light);
}
.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}
.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--accent-gold);
}

/* -------------------- HERO -------------------- */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%), 
              url('ceoBack.png') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content {
  max-width: 900px;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out;
}
.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-content h1 span {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 400;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
}
.hero .btn {
  border-width: 2px;
  padding: 1rem 3rem;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* -------------------- ABOUT / STATS -------------------- */
.about {
  padding: 6rem 0;
  background: var(--surface-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 40px -15px black;
  border: 1px solid #2c2c2c;
}
.about-content h2 {
  margin-bottom: 1.5rem;
}
.about-content h2:after {
  left: 0;
  transform: none;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.signature {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-top: 2rem;
  font-style: italic;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 1rem;
}
.stat-item h4 {
  font-size: 2.2rem;
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.2;
}
.stat-item p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.badge {
  background: var(--card-dark);
  border: 1px solid var(--accent-gold);
  padding: 0.3rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-gold);
  border-radius: 30px;
  letter-spacing: 0.5px;
}

/* -------------------- PRODUCTS GRID -------------------- */
.products {
  padding: 6rem 0;
  background: var(--bg-dark);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.7);
  transition: var(--transition);
}
.product-item img {
  transition: transform 0.8s ease;
}
.product-item:hover img {
  transform: scale(1.08);
}
.product-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
}
.product-item:hover .overlay {
  opacity: 1;
}
.overlay h3 {
  font-size: 1.6rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.overlay p {
  transform: translateY(20px);
  transition: transform 0.4s ease 0.05s;
  color: var(--accent-gold);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.product-item:hover .overlay h3,
.product-item:hover .overlay p {
  transform: translateY(0);
}

/* -------------------- CONTACT PAGE STYLES -------------------- */
.contact-page {
  padding: 6rem 0;
  background: var(--surface-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  color: var(--accent-gold);
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.contact-detail {
  margin: 2rem 0;
  list-style: none;
}
.contact-detail li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}
.contact-detail i {
  color: var(--accent-gold);
  width: 25px;
  font-size: 1.3rem;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.social-links a {
  font-size: 1.6rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-links a:hover {
  color: var(--accent-gold);
  transform: translateY(-3px);
}
.iso-badge {
  margin-top: 2rem;
  font-style: italic;
  color: var(--accent-gold);
  font-size: 0.95rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--card-dark);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  font-family: var(--font-sans);
  transition: var(--transition);
}
.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: #252525;
}
.input-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form .btn {
  align-self: flex-start;
}
.map-container {
  margin-top: 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: 0;
}

/* -------------------- OUR TEAM SECTION (NEW, ANIMATED, SEO FRIENDLY) -------------------- */
    .team-section {
      padding: 6rem 0;
      background: var(--surface-dark);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      margin-top: 2rem;
    }
    .team-card {
      background: var(--card-dark);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 15px 35px rgba(0,0,0,0.5);
      border: 1px solid var(--border-subtle);
      opacity: 0;
      transform: translateY(35px);
      transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s;
    }
    .team-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .team-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 30px 45px -12px rgba(0,0,0,0.8);
      border-color: var(--accent-gold);
    }
    .team-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #0f0f0f;
      position: relative;
    }
    .team-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .team-card:hover .team-img img {
      transform: scale(1.05);
    }
    .team-info {
      padding: 1.8rem 1.5rem 2rem;
      text-align: center;
    }
    .team-name {
      font-size: 1.8rem;
      font-family: var(--font-serif);
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 0.35rem;
      letter-spacing: -0.3px;
    }
    .team-role {
      display: inline-block;
      background: rgba(196, 167, 71, 0.15);
      color: var(--accent-gold);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 500;
      padding: 0.2rem 1rem;
      border-radius: 40px;
      margin-bottom: 1rem;
      border: 0.5px solid rgba(196,167,71,0.3);
    }
    .team-bio {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 1rem 0 0.5rem;
    }
    .team-social {
      margin-top: 1.4rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
    }
    .team-social a {
      color: var(--text-muted);
      font-size: 1.1rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      transition: all 0.3s;
    }
    .team-social a:hover {
      color: var(--accent-gold);
      background: rgba(196, 167, 71, 0.2);
      transform: translateY(-3px);
    }


/* -------------------- FOOTER -------------------- */
footer {
  background: #050505;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  h2 { font-size: 2.2rem; }
  .hero-content h1 { font-size: 4rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem; }
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.4s ease;
    border-top: 1px solid var(--border-subtle);
  }
  .nav-menu.active { left: 0; }
  .nav-menu a { font-size: 1.5rem; }

  .hero-content h1 { font-size: 3rem; }
  .hero-content p { font-size: 1rem; }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-img { order: 1; }
  .about-content { order: 2; }

  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .stats { grid-template-columns: 1fr; text-align: center; }
  .badge-list { justify-content: center; }
  .contact-form .btn { align-self: stretch; text-align: center; }
}