* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #1e1f22;
  background: #fff;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 1000;
  transition: 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

/* NAV */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1e1f22;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #8b0e1a;
}

.cta-btn {
  padding: 14px 28px;
  background: #d4ac4a;
  color: #000;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 172, 74, 0.3);
}

.cta-btn:hover {
  background: #c59d3e;
  transform: translateY(-2px);
}

/* TOGGLE */

.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggle-btn span {
  width: 26px;
  height: 3px;
  background: #1e1f22;
  border-radius: 2px;
}

/* CLOSE BUTTON */

.close-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 30px;
}

/* ===============================
   HERO SECTION
================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: url("/img/hero.webp") no-repeat right center/cover;
  overflow: hidden;
}

/* Left fade overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 4%;
  padding-right: 5%;
}

.hero-content {
  max-width: 640px;
}

/* Heading */
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.08;
  color: #111;
  margin-bottom: 8px;
}

.hero h1 .highlight {
  color: #8b0e1a;
}

/* Paragraph */
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 8px;
  max-width: 560px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn-primary {
  padding: 14px 28px;
  background: #8b0e1a;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #6f0b15;
}

.btn-secondary {
  padding: 14px 28px;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  border-color: #8b0e1a;
  color: #8b0e1a;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 54px;
    line-height: 1.05;
  }
}

@media (max-width: 992px) {
  .toggle-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
  }

  .nav-menu.active {
    right: 0;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    margin-bottom: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }

  .nav-links a {
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu .cta-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding: 100px 0 60px;
    background-position: 75% center;
  }

  /* Stronger overlay for mobile text legibility */
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.68) 0%,
      rgba(255, 255, 255, 0.7) 40%,
      rgba(255, 255, 255, 0.5) 100%
    );
  }

  .hero-inner {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 500px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 350px;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .logo img {
    height: 45px;
  }
}

/* =========================
   WHO SECTION (CORRECT SIZE)
========================= */

.who-section {
  background: #f6f7f9;
  padding: 80px 0; /* reduced from 120px */
}

.who-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 55px; /* reduced gap */
  align-items: center;
}

/* IMAGE */

.who-image {
  position: relative;
}

.who-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* BADGE */

.experience-badge {
  position: absolute;
  bottom: -18px;
  right: 30px;
  background: #c9a227;
  padding: 18px 26px; /* reduced */
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.experience-badge h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.experience-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTENT */

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: #8b0e1a;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: inline-block;
}

.who-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px; /* reduced */
  line-height: 1.25;
  margin-bottom: 18px;
}

.who-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  max-width: 480px;
}

/* FEATURES */

.who-features {
  display: flex;
  flex-direction: column;
  gap: 22px; /* tighter */
}

.feature {
  display: flex;
  gap: 14px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid #8b0e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b0e1a;
  font-size: 15px;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 600;
}

.feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .who-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-section {
    padding: 60px 0;
  }

  .who-content h2 {
    font-size: 26px;
  }

  .who-description {
    max-width: 100%;
  }
}

/* =========================
   GROUP STRUCTURE SECTION
========================= */

.group-structure {
  background: #f7f8fa;
  padding: 90px 0;
}

/* HEADER */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 12px;
}

.section-header .underline {
  width: 60px;
  height: 3px;
  background: #8b0e1a;
  margin: 0 auto;
  border-radius: 2px;
}

/* GRID */

.group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */

.group-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 28px 30px;
  position: relative;
  transition: 0.35s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.group-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #8b0e1a, #c9a227);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* Hover */

.group-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(139, 14, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b0e1a;
  font-size: 18px;
}

/* LOGO */

/* LOGO CENTER FIX */

.card-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px; /* fixed visual space */
  margin: 10px 0 5px;
}

.card-logo img {
  max-height: 55px;
  max-width: 180px;
  object-fit: contain;
}
/* TITLE */

.group-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

/* DESCRIPTION */

.group-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* LINK */

.card-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #8b0e1a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.card-link:hover {
  gap: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .group-grid {
    grid-template-columns: 1fr;
  }

  .group-structure {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* Make entire card clickable */

.group-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.group-card-link .group-card {
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.group-card-link:hover .group-card {
  transform: translateY(-8px);
}

.group-card-link:focus {
  outline: none;
}


/* =========================
   VALUES SECTION
========================= */

.values-section {
  background: #1f1f23;
  padding: 85px 0;
  text-align: center;
  color: #fff;
}

/* HEADER */

.values-header {
  margin-bottom: 55px;
}

.values-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a227;
  display: inline-block;
  margin-bottom: 14px;
}

.values-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 600;
}

/* GRID */

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* ITEM */

.value-item {
  padding: 10px 5px;
}

.value-icon {
  width: 65px;
  height: 65px;
  border: 1.5px solid #c9a227;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #c9a227;
  font-size: 20px;
  transition: 0.3s ease;
}

.value-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 13px;
  color: #b5b5b5;
}

/* Hover subtle effect */

.value-item:hover .value-icon {
  background: #c9a227;
  color: #1f1f23;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
}

/* Mobile - 3 top, 2 bottom */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* Very small devices */
@media (max-width: 500px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   VISION & MISSION SECTION
========================= */

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* BLOCK BASE */

.vm-block {
  display: flex;
  align-items: center;
  padding: 80px 8%;
}

/* INNER */

.vm-inner {
  max-width: 520px;
}

/* LABEL */

.vm-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

/* HEADINGS */

.vm-block h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.4;
  font-weight: 500;
}

/* LEFT SIDE */

.vm-vision {
  background: #f5f5f5;
  color: #111;
}

.vm-vision .vm-label {
  color: #8b0e1a;
}

/* RIGHT SIDE */

.vm-mission {
  background: #8b0e1a;
  color: #fff;
}

.vm-mission .vm-label {
  color: #c9a227;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .vision-mission {
    grid-template-columns: 1fr;
  }

  .vm-block {
    padding: 70px 8%;
  }

  .vm-block h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .vm-block {
    padding: 60px 6%;
  }

  .vm-block h2 {
    font-size: 20px;
    line-height: 1.5;
  }
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
  padding: 90px 0;
  background: #f5f5f5;
}

/* BOX */

.cta-box {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 60%, #2a0f12 100%);
  border-radius: 22px;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

/* HEADING */

.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 35px;
  font-weight: 600;
}

/* BUTTON */

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a227;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #b68f1f;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .cta-box {
    padding: 60px 30px;
  }

  .cta-box h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-box {
    padding: 45px 20px;
    border-radius: 16px;
  }

  .cta-box h2 {
    font-size: 20px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* CTA SECTION */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #fff;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-sub {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-btn.primary {
  background: #8b0e1a;
  color: #fff;
}

.cta-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.cta-btn {
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #bbb;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-item i {
  color: #c9a227;
}
.cta-contact-info a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-contact-info a:hover {
  color: #ffffff;
}
.cta-btn.call-btn {
  background: #8b0e1a;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn.call-btn:hover {
  background: #a61222;
  transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: linear-gradient(135deg, #0f1114, #15181d);
  color: #d4d4d4;
  padding: 70px 0 30px;
  font-size: 14px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 5px;
}

/* LOGO */

.footer-logo {
  height: 40px;
  margin-bottom: 18px;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #1e2329;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a227;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #c9a227;
  color: #111;
}

/* HEADINGS */

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 18px;
  color: #fff;
}

/* LINKS */

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #b5b5b5;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #c9a227;
}

/* CONTACT */

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-list i {
  color: #c9a227;
  font-size: 14px;
}

/* BOTTOM */

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 12px;
  color: #888;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 50px 0 25px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    font-size: 11px;
  }
}
