.hero {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  gap: 12px;
}
.cs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: "Playfair Display", serif;
}
.cs-hero-slider {
  position: relative;
  height: 100%;
}
.cs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.cs-slide.active {
  opacity: 1;
  z-index: 2;
}
.cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cs-content {
  position: absolute;
  z-index: 3;
  bottom: 15%;
  left: 8%;
  max-width: 650px;
  color: #fff;
}
.cs-sub {
  color: white;
  letter-spacing: 2px;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.cs-content h1,
.cs-content h2 {
  color: white;
  font-size: 48px;
  font-weight: 200;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cs-content p {
  color: white;
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.cs-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cs-btn {
  padding: 14px 28px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}
.cs-btn.primary {
  background: #fff;
  color: #000;
}
.cs-btn.primary:hover {
  background: #ddd;
}
.cs-btn.outline {
  border: 1px solid #fff;
  color: #fff;
}
.cs-btn.outline:hover {
  background: #fff;
  color: #000;
}
.cs-dots {
  position: absolute;
  bottom: 30px;
  right: 50px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.cs-dots span {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.4;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.cs-dots span.active {
  opacity: 1;
}
@media (max-width: 1024px) {
  .cs-content h1,
  .cs-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .cs-content {
    left: 5%;
    bottom: 20%;
  }
  .cs-content h1,
  .cs-content h2 {
    font-size: 28px;
  }
  .cs-content p {
    font-size: 15px;
  }
  .cs-btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .cs-hero {
    height: 85vh;
  }
  .cs-content {
    max-width: 90%;
  }
}
.discover-wrapper {
  background: url("../update-images/crownsy91.jpg") center/cover no-repeat;
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  position: relative;
  display: flex;
  padding: 120px 40px;
  gap: 40px;
  overflow: hidden;
}
.discover-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: blur(1px);
  transform: scale(1.1);
  z-index: -1;
}
.discover-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}
.discover-left {
  width: 25%;
}
.discover-left .small {
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
}
.discover-left h2 {
  font-size: 42px;
  margin: 10px 0;
  font-weight: 200;
  color: #fff;
}
.discover-left p {
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.discover-right {
  width: 75%;
  position: relative;
}
.discover-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.discover-scroll::-webkit-scrollbar {
  display: none;
}
.card {
  min-width: 320px;
  height: 460px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.card.big {
  min-width: 420px;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.card:hover img {
  transform: scale(1.05);
}
.card-title {
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 20px;
  font-size: 54px;
  text-shadow:
    0 2px 4px rgb(0, 0, 0),
    0 4px 12px rgb(0, 0, 0);
}
.card-title-desc {
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 14px;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.7);
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 12px;
  cursor: pointer;
  z-index: 2;
}
.arrow.left {
  left: -10px;
}
.arrow.right {
  right: -10px;
}
@media (max-width: 900px) {
  .discover-wrapper {
    flex-direction: column;
    padding: 80px 24px;
  }
  .discover-left,
  .discover-right {
    width: 100%;
    margin-top: 0;
  }
  .discover-left {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .discover-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .card {
    min-width: 260px;
    width: 260px;
    height: 340px;
  }
  .card.big {
    min-width: 280px;
    width: 280px;
  }
  .arrow {
    display: none;
  }
}
.discover-wrapper-1 {
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  position: relative;
  display: flex;
  padding: 120px 40px;
  gap: 40px;
  overflow: hidden;
}
.discover-wrapper-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../update-images/crownsy33.jpg") center/cover no-repeat;
  filter: blur(1px);
  transform: scale(1.1);
  z-index: -1;
}
.discover-wrapper-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}
@media (max-width: 900px) {
  .discover-wrapper-1 {
    flex-direction: column;
    padding: 80px 24px;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .discover-wrapper-1 {
    padding: 60px 18px;
    gap: 18px;
  }
  .discover-wrapper-1::before {
    background-position: center center;
    transform: scale(1.15);
  }
  .discover-wrapper-1::after {
    background: rgba(0, 0, 0, 0.4);
  }
}
.discover-wrapper-2 {
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  position: relative;
  display: flex;
  padding: 120px 40px;
  gap: 40px;
  overflow: hidden;
}
.discover-wrapper-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Crownsy95.jpg") center/cover no-repeat;
  filter: blur(0px);
  transform: scale(1.1);
  z-index: -1;
}
.discover-wrapper-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}
@media (max-width: 900px) {
  .discover-wrapper-2 {
    flex-direction: column;
    padding: 80px 24px;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .discover-wrapper-2 {
    padding: 60px 18px;
    gap: 18px;
  }
  .discover-wrapper-2::before {
    background-position: center;
    transform: scale(1.15);
  }
  .discover-wrapper-2::after {
    background: rgba(0, 0, 0, 0.4);
  }
}

.cs-faq-section {
  margin-top: 13px;
  background: url("../update-images/crownsy96.jpg") center/cover no-repeat;
  color: #fff;
  padding: 100px 5%;
  font-family: "Playfair Display", serif;
}
.cs-container {
  max-width: 960px;
  margin: 0 auto;
}
.cs-faq-header {
  text-align: center;
  margin-bottom: 55px;
}
.cs-faq-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.cs-faq-header h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 18px;
}
.cs-faq-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}
.cs-faq-wrapper {
  border-top: none;
}
.cs-faq-item {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.cs-faq-question {
  width: 100%;
  background: #000;
  border: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 24px 25px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: 0.25s;
}

.cs-faq-question:hover {
  background: #111;
}
.cs-icon {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}
.cs-icon::before {
  content: "+";
}
.cs-faq-item.active .cs-icon::before {
  content: "−";
}
.cs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cs-faq-answer p {
  padding: 0 25px 25px;
}
@media (max-width: 768px) {
  .cs-faq-section {
    padding: 70px 6%;
  }
  .cs-faq-header {
    margin-bottom: 40px;
  }
  .cs-faq-question {
    font-size: 16px;
    padding: 20px 0;
  }
  .cs-faq-answer p {
    padding: 0 20px 22px 0;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .cs-faq-header h2 {
    font-size: 22px;
  }
  .cs-faq-sub {
    font-size: 11px;
    letter-spacing: 2px;
  }
}
.cs-header-crownsy {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 100vh;
  padding: 120px 6% 100px;
  text-align: center;
  font-family: "prata", serif;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../update-images/crownsy93.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* opsional */
}
.cs-header-crownsy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.cs-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: auto;
}
.cs-event-label {
  margin-top: 240px;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: none;
  margin-bottom: 20px;
}
.cs-event-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 3px;
  margin-bottom: -10px;
}
.cs-event-desc {
  font-size: 17px;
  opacity: 0.85;
  max-width: 650px;
  margin: auto;
  line-height: 1.8;
}
.cs-event-header-ramadhan::after {
  content: "";
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  display: block;
  margin: 40px auto 0;
  position: relative;
  z-index: 3;
}
.cs-event-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
}
.cs-event-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .cs-event-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .cs-event-header-ramadhan {
    padding: 90px 5% 80px;
  }
  .cs-event-title {
    font-size: 28px;
  }
  .cs-event-desc {
    font-size: 15px;
  }
  .cs-event-btn {
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 480px) {
  .cs-event-title {
    font-size: 22px;
  }
  .cs-event-btn {
    width: 100%;
    max-width: 260px;
    padding: 12px 20px;
    font-size: 11px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  min-height: 2000px;
  background: white;
  color: #fff;
}
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.35s ease;
  background: transparent;
  color: #fff;
}
.site-header.scrolled,
.site-header:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.site-header.scrolled .brand,
.site-header:hover .brand,
.site-header.scrolled .menu-toggle,
.site-header:hover .menu-toggle,
.site-header.scrolled .nav-menu a,
.site-header:hover .nav-menu a {
  color: #2c284d;
}
.site-header.hide {
  transform: translateY(-110%);
}
.site-header.show {
  transform: translateY(0);
}
.header-inner {
  max-width: 1280px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand {
  font-family: "Prata", serif;
  font-size: 26px;
  letter-spacing: 3px;
  white-space: nowrap;
  transition: 0.3s;
}
.nav-menu {
  display: flex;
  gap: 36px;
  transition: 0.3s;
}
.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.3px;
  position: relative;
  transition: 0.3s;
}
.nav-menu a::after {
  content: "";
  width: 0;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}
.nav-menu a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
}
.cs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  transform: none !important;
  line-height: 0;
}
.cs-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: 0.3s;
  margin: 0 !important;
  padding: 0;
  display: block;
}
.site-header.scrolled .cs-icon img,
.site-header:hover .cs-icon img {
  filter: invert(111%) sepia(59%) saturate(4612%) hue-rotate(222deg)
    brightness(92%) contrast(105%);
}
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* HILANGKAN TANDA PLUS DI SEBELAH ICON */
.cs-icon {
  font-size: 0 !important;
}

.cs-icon::before,
.cs-icon::after {
  content: none !important;
  display: none !important;
}

.header-hover-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  color: #222;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.site-header:hover .header-hover-content {
  max-height: 400px;
}
.hover-box {
  max-width: 1280px;
  margin: auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: center;
}
.hover-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #2c284d;
  transition: 0.3s;
}
.hover-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  transition: 0.3s;
}
#hover-img-container {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
#hover-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hover-text-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#hover-title {
  font-weight: 400;
  opacity: 1;
  transition: 0.3s;
}
#hover-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  opacity: 1;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .brand {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .header-inner {
    padding: 12px 20px;
  }
  .menu-toggle {
    display: block !important;
    order: 2;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    z-index: 1000;
  }
  .nav-menu.active {
    max-height: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  .nav-menu a {
    padding: 16px 25px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff !important;
    width: 100%;
    letter-spacing: 1px;
  }
  .nav-menu a::after {
    display: none;
  }
  .site-header.scrolled .nav-menu,
  .site-header:hover .nav-menu {
    background: #fff;
  }
  .site-header.scrolled .nav-menu a,
  .site-header:hover .nav-menu a {
    color: #2c284d !important;
    border-bottom: 1px solid #eee;
  }
  .cs-icon {
    order: 1;
  }
  .cs-icon img {
    width: 22px;
    height: 22px;
  }
  .header-hover-content {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .menu-toggle {
    display: none !important;
  }
  .nav-menu {
    display: flex !important;
    position: static;
    max-height: none;
  }
  @media (max-width: 853px) {
    .nav-menu {
      gap: 12px;
    }
    .nav-menu a {
      font-size: 10px;
    }
    .brand {
      font-size: 18px;
    }
  }
  @media (min-width: 854px) {
    .nav-menu {
      gap: 20px;
    }
    .brand {
      font-size: 22px;
    }
  }
}
@media (max-width: 768px) {
  .header-hover-content {
    display: none;
  }
}

.cs-faq-cta {
  margin-top: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cs-btn {
  padding: 14px 34px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}
.cs-btn-primary {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.cs-btn-primary:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(82, 82, 82, 0.15);
}
.cs-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #000;
}
.cs-btn-outline:hover {
  background: #504f4f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(75, 75, 75, 0.1);
}
@media (max-width: 576px) {
  .cs-faq-cta {
    flex-direction: column;
    gap: 15px;
  }
  .cs-btn {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
}
.slider-area {
  background: url("../update-images/crownsy90.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
.slider {
  position: relative;
  width: 520px;
  height: 620px;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  color: #fff;
  transition: 0.7s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-content {
  position: absolute;
  bottom: 30px;
  left: 25px;
  right: 25px;
}
.slide-content h2 {
  font-family: "Prata", serif;
  font-size: 26px;
  font-weight: 200;
  margin-bottom: 10px;
}
.slide-content p {
  font-family: "Prata", serif;
  font-size: 14px;
  opacity: 0.9;
}
.countdown {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
}
.pos1 {
  transform: translateX(0) scale(1);
  z-index: 3;
}
.pos2 {
  transform: translateX(40px) translateY(10px) scale(0.94);
  z-index: 2;
}
.pos3 {
  transform: translateX(80px) translateY(20px) scale(0.88);
  z-index: 1;
}
.brand-area {
  background:
    linear-gradient(rgba(0, 0, 0, 0.429), rgba(0, 0, 0, 0.412)),
    url("../update-images/one-piece.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 40px;
}
.brand-area h1 {
  color: black;
  font-family: "Playfair Display", serif;
  letter-spacing: 6px;
  font-size: 26px;
  margin-bottom: 30px;
}
.brand-area img {
  width: 220px;
  margin-bottom: 30px;
}
.brand-area h2 {
  margin-top: 100px;
  font-weight: 200;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgb(0, 0, 0);
}
.brand-area p {
  color: black;
  font-family: "Playfair Display", serif;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.btn {
  border: 1px solid #fff;
  padding: 10px 22px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
  }
  .brand-area {
    order: 1;
    padding: 90px 40px;
  }
  .slider-area {
    order: 2;
    padding: 90px 40px;
  }
  .slider {
    width: 520px;
    height: 620px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
  }
  .brand-area {
    order: 1;
    padding: 70px 25px;
  }
  .slider-area {
    order: 2;
    padding: 70px 25px;
  }
  .slider {
    width: 320px;
    height: 420px;
    margin: auto;
  }
}
.floating-wa,
.floating-msg {
  position: fixed;
  bottom: 20px;
  width: 140px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  z-index: 999;
  text-align: center;
  transition: all 0.3s ease;
}
.floating-wa {
  right: 20px;
  background: #fff;
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.floating-msg {
  right: 175px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .floating-wa,
  .floating-msg {
    width: 110px;
    height: 40px;
    font-size: 12px;
  }
  .floating-wa {
    right: 10px;
  }
  .floating-msg {
    right: 130px;
  }
}
.wa-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}
.wa-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 300px;
}
.wa-box button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  background: #000000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.wa-box .close {
  display: block;
  margin-top: 10px;
  cursor: pointer;
  color: #000000;
  font-size: 14px;
}
.ig-section {
  margin-top: 13px;
  width: 100%;
  padding: 110px 20px;
  background: linear-gradient(
    135deg,
    #feda75 0%,
    #fa7e1e 25%,
    #d62976 50%,
    #962fbf 75%,
    #4f5bd5 100%
  );
}
.ig-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
.ig-header {
  text-align: center;
  margin-bottom: 60px;
}
.ig-subtitle {
  text-shadow: 2px 2px 8px rgb(0, 0, 0);
  display: inline-block;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.ig-title {
  text-shadow: 2px 2px 8px rgb(0, 0, 0);
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.ig-description {
  text-shadow: 2px 2px 8px rgb(0, 0, 0);
  color: #ffffff;
  max-width: 650px;
  margin: auto;
  line-height: 1.8;
  font-size: 1rem;
}
.ig-feed {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.ig-feed iframe {
  width: 100% !important;
}
.sk-instagram-profile-feed {
  width: 100%;
}
.ig-feed {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  padding: 20px;
}
.sk-instagram-feed {
  width: 100%;
  min-height: 500px;
}
.sk-instagram-feed iframe {
  width: 100% !important;
  border: none !important;
}
