:root {
  --primary-red: #c62828;
  --secondary-red: #a30000;
  --dark-red: #730000;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #333;
  /* background: #fafafa; */
}

/* ==========================
           NAVBAR
========================== */

.navbar-custom {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
  padding: 3px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
  height: 90px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-left: 10px;
  position: relative;
  padding: 10px 12px !important;
  transition: 0.3s;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
  width: calc(100% - 24px);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.dropdown-menu-custom {
  border: none;
  border-radius: 14px;
  padding: 12px;
  margin-top: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.dropdown-menu-custom .dropdown-item {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 16px;
  border-radius: 10px;
  color: #333;
}

.dropdown-menu-custom .dropdown-item:hover {
  background: #f8e6e6;
  color: var(--primary-red);
}

.mobile-submenu {
  padding-left: 18px;
  margin-bottom: 10px;
}

.mobile-submenu a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 0;
  font-size: 15px;
}

.mobile-submenu a:hover {
  color: #fff;
}

/* ==========================
           OFFCANVAS
        ========================== */

.offcanvas {
  background: var(--dark-red);
  color: #fff;
}

.offcanvas-title {
  font-weight: 600;
}

.offcanvas .nav-link {
  color: #fff !important;
  font-size: 17px;
  font-weight: 400;
  padding: 12px 0;
}

.btn-close {
  filter: invert(1);
}

/* ==========================
           CONTENT
========================== */

.slider {
  border-bottom: solid 1px #fff;
}
main {
  min-height: 70vh;
  border-top: solid 1px #fff;
}

.hero-box {
  background: #fff;
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-box h1 {
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-box p {
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* ==========================
           FOOTER
========================== */

.footer {
  background: var(--dark-red);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 25px;
}

.footer-logo {
  height: 50px;
}

.footer h5 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer p {
  line-height: 1.8;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: var(--dark-red);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 40px 0 20px;
}

.copyright {
  text-align: center;
  font-size: 14px;
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 45px;
  }

  .hero-box {
    padding: 50px 25px;
  }
}

.parallax-section {
  min-height: 520px;
  background-image: url("images/parallax-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.parallax-overlay {
  min-height: 520px;
  /* background: rgba(0, 0, 0, 0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
}

.parallax-content {
  max-width: 950px;
  background: rgba(255, 255, 255, 0.88);
  padding: 45px 50px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.parallax-content h2 {
  margin-bottom: 25px;
  font-size: 42px;
  font-weight: 700;
  color: #111;
}

.parallax-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.parallax-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .parallax-section,
  .parallax-overlay {
    min-height: auto;
    background-attachment: scroll;
  }

  .parallax-overlay {
    padding: 50px 15px;
  }

  .parallax-content {
    padding: 30px 22px;
  }

  .parallax-content h2 {
    font-size: 30px;
  }

  .parallax-content p {
    font-size: 16px;
  }
}

.explore-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #d62828;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.3);
}

.explore-btn:hover {
  background: #b71c1c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(183, 28, 28, 0.4);
}

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  background-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d32f2f' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d32f2f' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 14.354a.5.5 0 0 1 0-.708L10.293 8 4.646 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708 0z'/%3E%3C/svg%3E");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.product-breadcrumb {
  background: #f8f9fa;
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #ececec;
}

.product-breadcrumb .breadcrumb {
  margin: 0;
}

.product-breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
}

.product-breadcrumb .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumb .breadcrumb-item a:hover {
  color: #dc3545;
}

.product-breadcrumb .breadcrumb-item.active {
  color: #212529;
  font-weight: 600;
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #adb5bd;
}

.luna-about-section {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  overflow: hidden;
}

.luna-container {
  width: min(1200px, 92%);
  margin: auto;
}

.luna-hero {
  position: relative;
  min-height: 520px;
  background: url("images/parallax-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.luna-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.luna-hero-content {
  position: relative;
  max-width: 720px;
  z-index: 2;
}

.luna-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 800;
}

.luna-hero p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 680px;
}

.luna-section {
  padding: 80px 0;
}

.luna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.luna-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 22px;
  color: #b5121b;
  line-height: 1.2;
}

.luna-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.luna-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
  display: block;
}

.luna-highlight {
  background: linear-gradient(135deg, #b5121b, #7c0b12);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.luna-highlight h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 15px;
}

.luna-highlight p {
  max-width: 780px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

.luna-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.luna-stat {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 30px 20px;
}

.luna-stat strong {
  display: block;
  font-size: 42px;
  margin-bottom: 8px;
}

.luna-stat span {
  font-size: 15px;
  letter-spacing: 0.3px;
}

.luna-card-area {
  background: #f7f7f7;
  padding: 85px 0;
}

.luna-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.luna-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.luna-card h3 {
  color: #b5121b;
  font-size: 23px;
  margin-bottom: 15px;
}

.luna-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.75;
}

.luna-final {
  position: relative;
  background-image: url("images/luna/luna-3.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax */
  padding: 120px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.luna-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.luna-final .luna-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.luna-final h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 20px;
  font-weight: 700;
}

.luna-final p {
  font-size: 18px;
  line-height: 1.8;
}

/* Mobile fallback */
@media (max-width: 991px) {
  .luna-final {
    background-attachment: scroll;
  }
}

@media (max-width: 900px) {
  .luna-grid,
  .luna-cards,
  .luna-stats {
    grid-template-columns: 1fr;
  }

  .luna-hero {
    min-height: auto;
    padding: 90px 0;
  }

  .luna-section,
  .luna-card-area {
    padding: 60px 0;
  }
}



.mission-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: url("images/our-mission.jpg") center/cover fixed no-repeat;
  overflow: hidden;
  color: #fff;
}

.mission-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.45), rgba(0,0,0,.15));
  z-index: 1;
}

.mission-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}

.mission-content {
  max-width: 720px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.mission-subtitle {
  display: inline-block;
  color: #ffdf7e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mission-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 800;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 22px;
  color: rgba(255,255,255,.92);
}

.mission-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mission-section {
    min-height: auto;
    background-attachment: scroll;
  }

  .mission-container {
    padding: 70px 18px;
  }

  .mission-content {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .mission-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}


.values-section {
  position: relative;
  padding: 100px 0;
  background: #f8f5f0;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -140px;
  background: rgba(184, 24, 34, .09);
  border-radius: 50%;
}

.values-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -120px;
  background: rgba(255, 196, 70, .16);
  border-radius: 50%;
}

.values-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.values-header {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.values-header span {
  display: inline-block;
  color: #b81822;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.values-header h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: #1e1e1e;
  font-weight: 800;
}

.values-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.05);
  transition: .3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,.13);
}

.value-card:nth-child(1),
.value-card:nth-child(2),
.value-card:nth-child(3),
.value-card:nth-child(4) {
  grid-column: span 2;
}

.value-card-wide {
  grid-column: 2 / span 2;
  text-align: center;
  background: linear-gradient(135deg, #b81822, #7d1018);
  color: #fff;
}

.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(184, 24, 34, .1);
  color: #b81822;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  font-weight: 800;
}

.value-card-wide .value-icon {
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,.18);
  color: #fff;
}

.value-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
  color: #1f1f1f;
  font-weight: 800;
}

.value-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

.value-card-wide h3,
.value-card-wide p {
  color: #fff;
}

.value-card-wide p {
  color: rgba(255,255,255,.9);
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:nth-child(1),
  .value-card:nth-child(2),
  .value-card:nth-child(3),
  .value-card:nth-child(4),
  .value-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .values-section {
    padding: 70px 0;
  }

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

  .value-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .values-header p {
    font-size: 16px;
  }
}


.tadim-about{
    padding:100px 0;
    background:#fff;
}

.tadim-about .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

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

.section-heading span{
    display:inline-block;
    color:#b11f24;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:clamp(38px,5vw,60px);
    margin-bottom:15px;
    color:#222;
    font-weight:800;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.about-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.about-content{
    background:#fff;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.about-sidebar{
    display:grid;
    gap:20px;
    align-content:start;
}

.info-card{
    background:linear-gradient(135deg,#b11f24,#85181c);
    color:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(177,31,36,.15);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.info-card .number{
    font-size:42px;
    font-weight:800;
    line-height:1;
    margin-bottom:10px;
}

.info-card .label{
    font-size:16px;
    opacity:.95;
}

@media(max-width:992px){

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

    .about-sidebar{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .tadim-about{
        padding:70px 0;
    }

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

    .info-card{
        padding:25px;
    }

    .info-card .number{
        font-size:34px;
    }

}




.about-section {
    padding: 80px 0;
    background: #fff;
    font-family: Arial, sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 430px;
}

.about-images .image {
    display: block;
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.about-images .image:hover img {
    transform: scale(1.05);
}

.image-main {
    width: 68%;
    height: 340px;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-overlap {
    width: 60%;
    height: 290px;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.subtitle {
    color: #2fbf86;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #243645;
    margin: 0 0 24px;
    font-weight: 700;
}

.about-content p {
    color: #34495e;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-content ul {
    padding-left: 18px;
    margin: 20px 0 30px;
}

.about-content ul li {
    color: #243645;
    font-size: 17px;
    margin-bottom: 10px;
}

.about-content ul li::marker {
    color: #2fbf86;
}

.read-more {
    display: inline-block;
    background: #2fbf86;
    color: #fff;
    padding: 15px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

.read-more:hover {
    background: #249b6c;
}

/* Mobil */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        min-height: 360px;
    }

    .image-main {
        width: 78%;
        height: 260px;
    }

    .image-overlap {
        width: 70%;
        height: 220px;
    }

    .about-content h2 {
        font-size: 30px;
    }
}