:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Cardo", sans-serif;
  --nav-font: "Inter", sans-serif;
}
:root {
  --background-color: #0a0a0a;
  --default-color: #d9d9d9;
  --heading-color: #ffffff;
  --accent-color: #ff6a00;
  --surface-color: #151515;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: rgba(255, 255, 255, 0.75);
  --nav-hover-color: #ff6a00;
  --nav-mobile-background-color: #111111;
  --nav-dropdown-background-color: #1a1a1a;
  --nav-dropdown-color: rgba(255, 255, 255, 0.85);
  --nav-dropdown-hover-color: #ff6a00;
}

.light-background {
  --background-color: #111111;
  --surface-color: #1b1b1b;
}

.dark-background {
  --background-color: #060606;
  --default-color: #d9d9d9;
  --heading-color: #ffffff;
  --surface-color: #1b1b1b;
  --contrast-color: #ffffff;
}

:root {
  /* Cassano Palette */

  --primary-black: #0a0a0a;
  --secondary-black: #111111;

  --card-color: #1b1b1b;
  --card-hover: #252525;

  --border-color: #2a2a2a;

  --orange: #ff6a00;
  --orange-hover: #ff8a00;
  --amber: #ffb000;

  --silver: #b8b8b8;
  --gray: #7a7a7a;

  --danger: #d62828;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
main,
.hero-section {
  /* Berikan margin-top sebesar tinggi header/navbar */
  margin-top: 80px;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header - Premium Cassano
--------------------------------------------------------------*/

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 997;

  padding: 18px 0;

  background: rgba(8, 8, 8, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    padding 0.45s ease,
    box-shadow 0.45s ease;
}

.scrolled .header {
  padding: 20px 0;

  background: rgba(8, 8, 8, 0.82);

  border-bottom: 1px solid rgba(255, 106, 0, 0.12);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.45),
    inset 0 -1px 0 rgba(255, 106, 0, 0.08);
}

/* =========================================================
   CASSANO HEADER BRAND
   ========================================================= */

.header .logo {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 14px;

  padding: 10px 0;

  text-decoration: none;

  transition: opacity 0.35s ease;
}

/* =========================================================
   LOGO IMAGE
   ========================================================= */

.header .logo img {
  width: 72px;
  height: 72px;

  object-fit: contain;

  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.45s ease;
}

/* =========================================================
   BRAND NAME
   ========================================================= */

.header .logo .sitename {
  margin: 0;

  color: #fff;

  font-size: 30px;
  font-weight: 400;

  letter-spacing: 0.2px;

  transition: none;
}

/* =========================================================
   LOGO HOVER
   ========================================================= */

.header .logo:hover {
  transform: none;

  background: transparent;
  box-shadow: none;
}

/* Logo glow only */

.header .logo:hover img {
  transform: scale(1.03);

  filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.45))
    drop-shadow(0 0 12px rgba(255, 106, 0, 0.18));
}

/* Brand name stays white */

.header .logo:hover .sitename {
  color: #fff;
  letter-spacing: 0.2px;
}

/* =========================================================
   SOCIAL
   ========================================================= */

.header .header-social-links {
  display: flex;

  align-items: center;

  gap: 16px;
}

.header .header-social-links a {
  color: rgba(255, 255, 255, 0.55);

  font-size: 17px;

  background: transparent;
  box-shadow: none;

  transition:
    color 0.35s ease,
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.header .header-social-links a:hover {
  color: var(--accent-color);

  background: transparent;
  box-shadow: none;

  transform: translateY(-2px);

  text-shadow:
    0 0 8px rgba(255, 106, 0, 0.45),
    0 0 15px rgba(255, 106, 0, 0.2);
}

/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 1200px) {
  .header {
    padding: 15px 0;
  }

  .header .logo img {
    width: 72px !important;
    height: 72px !important;
  }

  .header .logo .sitename {
    font-size: 28px;
  }

  .header .header-social-links {
    order: 2;

    gap: 12px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .header .logo {
    gap: 10px;
  }

  .header .logo img {
    width: 52px !important;
    height: 52px !important;
  }

  .header .logo .sitename {
    font-size: 24px;
  }

  .header .header-social-links {
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
/*--------------------------------------------------------------
# Desktop Navigation Premium
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navmenu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 48px;

    padding: 0 26px;

    border-radius: 999px;

    border: 1px solid transparent;

    color: var(--nav-color);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    text-decoration: none;

    overflow: hidden;

    transition: all 0.35s ease;
  }

  /* Glow Layer */

  .navmenu a::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background: linear-gradient(
      120deg,
      transparent 15%,
      rgba(255, 255, 255, 0.08) 50%,
      transparent 85%
    );

    transform: translateX(-130%);

    transition: 0.7s;

    pointer-events: none;
  }

  /* Hover */

  .navmenu li:hover > a,
  .navmenu a.active {
    color: var(--accent-color);

    border-color: rgba(255, 106, 0, 0.28);

    background: linear-gradient(
      180deg,
      rgba(255, 106, 0, 0.12),
      rgba(255, 106, 0, 0.03)
    );

    box-shadow:
      0 0 24px rgba(255, 106, 0, 0.15),
      inset 0 0 18px rgba(255, 106, 0, 0.05);

    transform: translateY(-2px);
  }

  .navmenu li:hover > a::after,
  .navmenu a.active::after {
    transform: translateX(130%);
  }

  /* Dropdown */

  .navmenu .dropdown ul {
    position: absolute;

    left: 0;

    top: calc(100% + 12px);

    min-width: 220px;

    margin: 0;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;

    border-radius: 14px;

    background: var(--nav-dropdown-background-color);

    border: 1px solid rgba(255, 106, 0, 0.12);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

    transition: 0.35s;

    display: block;

    z-index: 999;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;

    visibility: visible;

    top: calc(100% + 6px);
  }

  .navmenu .dropdown ul li {
    width: 100%;
  }

  .navmenu .dropdown ul a {
    min-width: auto;

    height: auto;

    justify-content: flex-start;

    padding: 12px 20px;

    border-radius: 0;

    border: none;

    background: transparent;

    color: var(--nav-dropdown-color);

    text-transform: none;

    letter-spacing: 0.5px;

    font-size: 14px;

    box-shadow: none;

    transform: none;
  }

  .navmenu .dropdown ul li:hover > a {
    color: var(--accent-color);

    background: rgba(255, 106, 0, 0.08);
  }
}

/* Navmenu - Mobile */
/*--------------------------------------------------------------
# Mobile Navigation - Premium
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  /* Toggle */

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px;
    cursor: pointer;
    line-height: 0;
    margin-right: 10px;
    transition: 0.35s ease;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

  /* Container */

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  /* Menu Panel */

  .navmenu ul {
    display: none;

    position: absolute;

    inset: 72px 18px 18px 18px;

    margin: 0;
    padding: 18px;

    list-style: none;

    border-radius: 22px;

    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--surface-color), white 2%),
      color-mix(in srgb, var(--surface-color), black 10%)
    );

    border: 1px solid rgba(255, 106, 0, 0.15);

    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.45),
      0 0 35px rgba(255, 106, 0, 0.08);

    overflow-y: auto;

    transition: 0.35s ease;

    z-index: 9998;
  }

  /* Item */

  .navmenu li + li {
    margin-top: 8px;
  }

  /* Link */

  .navmenu a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 18px;

    border-radius: 14px;

    color: var(--nav-dropdown-color);

    text-decoration: none;

    font-family: var(--nav-font);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.35s ease;
  }

  .navmenu a:hover,
  .navmenu a.active {
    color: var(--accent-color);

    background: linear-gradient(
      90deg,
      rgba(255, 106, 0, 0.12),
      rgba(255, 106, 0, 0.03)
    );

    border: 1px solid rgba(255, 106, 0, 0.18);

    box-shadow: 0 0 18px rgba(255, 106, 0, 0.1);

    transform: translateX(4px);
  }

  /* Dropdown Icon */

  .navmenu a i {
    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 106, 0, 0.08);

    color: var(--accent-color);

    transition: 0.35s;
  }

  .navmenu a:hover i,
  .navmenu .active i {
    background: var(--accent-color);

    color: var(--contrast-color);

    transform: rotate(180deg);
  }

  /* Dropdown */

  .navmenu .dropdown ul {
    position: static;

    display: none;

    margin: 12px 0 0;

    padding: 10px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.02);

    border: 1px solid rgba(255, 255, 255, 0.05);

    box-shadow: none;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  /* Active Body */

  .mobile-nav-active {
    overflow: hidden;
  }

  /* Overlay */

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    padding: 100px 30px 40px;
    transition: 0.35s;
    z-index: 9998;
  }

  /* Close Button */

  .mobile-nav-active .mobile-nav-toggle {
    position: absolute;

    top: 18px;

    right: 18px;

    margin: 0;

    font-size: 34px;

    color: var(--default-color);
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

  /* Show Menu */

  .mobile-nav-active .navmenu > ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation Animation
--------------------------------------------------------------*/

@keyframes mobileMenuFade {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-nav-active .navmenu > ul {
  animation: mobileMenuFade 0.28s ease;
}

/*--------------------------------------------------------------
# Footer Premium
--------------------------------------------------------------*/

.footer {
  position: relative;

  overflow: hidden;

  background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);

  color: var(--default-color);

  border-top: 1px solid rgba(255, 106, 0, 0.12);

  padding: 90px 0 0;
}

/* Top Glow */

.footer::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  transform: translateX(-50%);

  width: 700px;

  height: 2px;

  background: radial-gradient(circle, rgba(255, 106, 0, 0.75), transparent 70%);

  filter: blur(10px);

  opacity: 0.8;
}

/* Decorative Light */

.footer::after {
  content: "";

  position: absolute;

  right: -180px;

  top: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(255, 106, 0, 0.08), transparent 72%);

  pointer-events: none;
}

.footer-content {
  position: relative;

  z-index: 2;

  padding-bottom: 70px;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/

.footer-logo img {
  width: 120px;

  height: auto;

  margin-bottom: 28px;

  transition: 0.35s;
}

.footer-logo img:hover {
  transform: scale(1.04);
}

.footer-logo p {
  max-width: 290px;

  margin-bottom: 28px;

  color: color-mix(
    in srgb,

    var(--default-color),
    transparent 38%
  );

  line-height: 1.9;

  font-size: 14px;
}

/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/

.footer h4 {
  position: relative;

  display: inline-block;

  margin-bottom: 28px;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;

  color: var(--default-color);
}

.footer h4::after {
  content: "";

  display: block;

  width: 42px;

  height: 2px;

  margin-top: 12px;

  background: var(--accent-color);

  border-radius: 999px;
}

/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/

.footer-social {
  display: flex;

  gap: 16px;
}

.footer-social a {
  width: 46px;

  height: 46px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  text-decoration: none;

  color: color-mix(
    in srgb,

    var(--default-color),
    transparent 35%
  );

  border: 1px solid rgba(255, 106, 0, 0.15);

  background: rgba(255, 106, 0, 0.03);

  transition: 0.35s ease;
}

.footer-social a:hover {
  transform: translateY(-6px);

  color: var(--accent-color);

  border-color: var(--accent-color);

  background: rgba(255, 106, 0, 0.08);

  box-shadow: 0 0 20px rgba(255, 106, 0, 0.18);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.footer-links {
  list-style: none;

  margin: 0;

  padding: 0;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: color-mix(
    in srgb,

    var(--default-color),
    transparent 35%
  );

  text-decoration: none;

  font-size: 14px;

  transition: 0.35s ease;
}

.footer-links a::before {
  content: "";

  width: 0;

  height: 1px;

  background: var(--accent-color);

  transition: 0.35s ease;
}

.footer-links a:hover {
  color: var(--default-color);

  transform: translateX(8px);
}

.footer-links a:hover::before {
  width: 18px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.footer-contact {
  color: color-mix(
    in srgb,

    var(--default-color),
    transparent 35%
  );

  line-height: 2;

  font-size: 14px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: #000000;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}

/*==============================================================
# Premium Button
==============================================================*/

.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 34px;

  border: 1px solid color-mix(in srgb, var(--accent-color), white 20%);
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 88%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 96%) 100%
  );

  color: var(--accent-color);
  text-decoration: none;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;

  overflow: hidden;
  transition: all 0.35s ease;

  box-shadow:
    0 0 24px color-mix(in srgb, var(--accent-color), transparent 82%),
    inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.btn-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );

  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn-premium span,
.btn-premium i {
  position: relative;
  z-index: 2;
}

.btn-premium i {
  color: var(--accent-color);
  transition: transform 0.35s ease;
}

.btn-premium:hover {
  color: var(--default-color);
  border-color: var(--accent-color);

  transform: translateY(-4px);

  box-shadow:
    0 0 40px color-mix(in srgb, var(--accent-color), transparent 72%),
    inset 0 0 20px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.btn-premium:hover::before {
  transform: translateX(120%);
}

.btn-premium:hover i {
  transform: translateX(6px);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 64px;
  font-weight: 400;
}

.page-title .heading .cta-btn {
  color: var(--default-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title .heading .cta-btn:hover {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  font-family: var(--default-font);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("../img/background-headline.webp") center right/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px 40px;
  max-width: 600px;
}

.hero-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: color-mix(in srgb, white, transparent 40%);
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--default-font);
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

.hero-title .highlight {
  color: var(--accent-color);
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, white, transparent 20%);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 14px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero .btn-primary {
  background: var(--accent-color);
  color: white;
}

.hero .btn-primary:hover {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  background: color-mix(in srgb, var(--accent-color) 90%, white 10%);
  color: white;
}

.hero .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero .btn-outline:hover {
  background: white;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 40px 20px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
.info {
  padding: 60px 0;
  background: var(--background-color);
}

.info-card {
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--surface-color), black 20%) 100%
  );
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(255, 106, 0, 0.2);
}

.info-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  flex-grow: 1;
}

.info-link {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.info-link:hover {
  color: var(--accent-color);
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Identity Section
--------------------------------------------------------------*/
.identity {
  padding: 80px 0;
  background: var(--background-color);
  position: relative;
}

.identity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-color) 20%,
    var(--border-color) 80%,
    transparent 100%
  );
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 400;
  font-family: var(--default-font);
}

.section-title p {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 1px;
  line-height: 1.25;
}

#identity .row.g-4 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

#identity .identity-grid > .col-lg-6,
#identity .identity-grid > .col-md-6,
#identity .identity-grid > .col-12 {
  display: flex;
  justify-content: center;
}

#identity .identity-grid {
  max-width: 980px;
  margin: 0 auto;
}

.value-card {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  align-items: center;
}

@media (min-width: 992px) {
  #identity .value-card {
    min-height: 320px;
    padding: 44px 36px;
  }
}

@media (min-width: 1200px) {
  #identity .value-card {
    min-height: 340px;
  }
}

@media (max-width: 767.98px) {
  .value-card {
    max-width: 100%;
  }
}

#about .identity-cards,
#identity-summary .row.g-4 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#about .identity-cards .col-lg-6,
#identity-summary .col-lg-6 {
  display: flex;
  justify-content: center;
}

#about .identity-cards .value-card,
#identity-summary .value-card {
  width: 100%;
  max-width: 520px;
  min-height: 300px;
  padding: 34px 28px;
}

#identity-summary .value-card h3,
#about .identity-cards .value-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

#identity-summary .value-card p,
#about .identity-cards .value-card p {
  font-size: 14px;
  line-height: 1.65;
}

#about .section-title,
#identity-summary .section-title {
  margin-bottom: 40px;
}

.section .row.justify-content-center > .col-lg-8 {
  display: flex;
  justify-content: center;
}

.section .row.justify-content-center > .col-lg-8 > .value-card {
  width: 100%;
  max-width: 760px;
}

.value-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.15);
}

.value-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.value-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/
.leadership {
  padding: 80px 0;
  background: var(--background-color);
}

.leader-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(255, 106, 0, 0.2);
}

.leader-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.leader-info {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.leader-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-role {
  color: var(--accent-color);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.leader-desc {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  flex-grow: 1;
}

.leader-signature {
  font-size: 18px;
  font-style: italic;
  color: var(--accent-color);
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Officers Section
--------------------------------------------------------------*/

.officers {
  padding: 80px 0;
  background: var(--background-color);
}

.officer-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.officer-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(255, 106, 0, 0.2);
}

.officer-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.officer-card h4 {
  font-size: 16px;
  margin: 20px 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.officer-card p {
  font-size: 12px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/*--------------------------------------------------------------
# Officer Application
--------------------------------------------------------------*/

.officer-apply {
  display: block;
  height: 16px;
  margin: 8px 0 20px;

  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: var(--default-color);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    letter-spacing 0.3s ease;
}

/* Vacant Position */

.officer-vacant {
  cursor: pointer;
}

.officer-vacant a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.officer-vacant h4 {
  color: var(--default-color);
}

.officer-vacant .officer-apply {
  opacity: 0.55;
}

.officer-vacant:hover .officer-apply {
  opacity: 1;
  letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Gallery Details Section
--------------------------------------------------------------*/
.gallery-details .portfolio-details-slider img {
  width: 100%;
}

.gallery-details .swiper-wrapper {
  height: auto;
}

.gallery-details .swiper-button-prev,
.gallery-details .swiper-button-next {
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.25);
  width: 48px;
  height: 48px;
}

.gallery-details .swiper-button-prev:after,
.gallery-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-details .swiper-button-prev:hover:after,
.gallery-details .swiper-button-next:hover:after {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .gallery-details .swiper-button-prev,
  .gallery-details .swiper-button-next {
    display: none;
  }
}

.gallery-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.gallery-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.gallery-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.gallery-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.gallery-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.gallery-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.gallery-details .portfolio-info .btn-visit:hover {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.gallery-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-details .portfolio-description p {
  padding: 0;
}

.gallery-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.gallery-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.gallery-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.gallery-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left,
.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.gallery-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/* ==========================================================
   Events Premium
========================================================== */

.events-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.events-label span {
  width: 90px;
  height: 1px;
  background: rgba(255, 106, 0, 0.35);
}

.events-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 106, 0, 0.45);
  background: rgba(255, 106, 0, 0.05);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(255, 106, 0, 0.08);
}

.events-badge i {
  font-size: 14px;
}

.events-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.events-headline span {
  color: var(--accent-color);
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.25);
}

.events-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.events-divider span {
  width: 100px;
  height: 1px;
  background: rgba(255, 106, 0, 0.35);
}

.events-divider i {
  color: var(--accent-color);
}

.events-note {
  max-width: 720px;
  margin: auto;
  color: #b8b8b8;
  font-size: 18px;
  line-height: 1.9;
}

/* ==========================================================
   Bottom Section
========================================================== */
.chapter-circle {
  width: 220px;
  height: 220px;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.55);
  background: radial-gradient(
    circle,
    rgba(255, 106, 0, 0.12),
    rgba(255, 106, 0, 0.03)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  box-shadow:
    0 0 35px rgba(255, 106, 0, 0.15),
    inset 0 0 40px rgba(255, 106, 0, 0.05);
}

.chapter-circle i {
  font-size: 34px;
  color: var(--accent-color);
}

.chapter-circle span {
  color: var(--accent-color);
  letter-spacing: 5px;
  font-size: 11px;
  font-weight: 700;
}

.chapter-title {
  font-size: 56px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 500;
}

.chapter-title span {
  color: var(--accent-color);
}

.chapter-desc {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 106, 0, 0.25);
}

.chapter-desc p {
  color: #bdbdbd;
  font-size: 18px;
  line-height: 2;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  border-bottom: 1px dashed
    color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  margin-bottom: 30px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--default-font);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--default-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border: 0;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .php-email-form button[type="submit"]:hover {
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-hero {
  padding: 80px 0 40px;
  background: var(--background-color);
  text-align: center;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-description {
  max-width: 760px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0 auto;
}

.contact {
  padding: 40px 0 80px;
  background: var(--background-color);
}

.contact-info-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 106, 0, 0.15);
}

.contact-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.contact-info-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.contact-cta-card {
  max-width: 760px;
  margin: 40px auto 0;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-cta-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 106, 0, 0.15);
}

.contact-cta-icon {
  font-size: 56px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.contact-cta-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-cta-card p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.contact-cta-card .btn-primary {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 14px 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.contact-cta-card .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 10%);
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.45);
}

/* =========================================================
   CASSANO PROTOCOL
   Scoped styles — will not affect other pages
   ========================================================= */

/* =========================================================
   OFFICIAL DOCUMENT REQUEST
   ========================================================= */

.protocol-page .protocol-document-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  margin-top: 70px;
  padding: 28px 30px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.02);
}

.protocol-page .protocol-document-request-content {
  max-width: 620px;
}

.protocol-page .protocol-document-request-label {
  display: block;

  margin-bottom: 8px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  opacity: 0.4;
}

.protocol-page .protocol-document-request h3 {
  margin: 0 0 8px;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.protocol-page .protocol-document-request p {
  margin: 0;

  font-size: 13px;
  line-height: 1.7;

  opacity: 0.55;
}

/* =========================================================
   OFFICIAL DOCUMENT REQUEST LINK
   ========================================================= */

.protocol-page .protocol-document-request-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0;

  padding: 10px 0;

  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  text-decoration: none;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;

  box-shadow: none;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.protocol-page .protocol-document-request-link:hover {
  color: #ff7a00;

  background: transparent;
  border-color: #ff7a00;

  box-shadow: none;
  transform: none;

  gap: 16px;
}

.protocol-page .protocol-document-request-link:focus {
  outline: none;

  background: transparent;
  box-shadow: none;
}

.protocol-page .protocol-document-request-arrow {
  font-size: 15px;
  line-height: 1;

  opacity: 0.65;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.protocol-page
  .protocol-document-request-link:hover
  .protocol-document-request-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .protocol-page .protocol-document-request {
    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    padding: 24px;
  }

  .protocol-page .protocol-document-request h3 {
    font-size: 16px;
  }
}

/* =========================================================
   PROTOCOL CONTENTS
   ========================================================= */

.protocol-page .protocol-contents {
  margin-bottom: 40px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.02);

  overflow: hidden;
}

.protocol-page .protocol-contents-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 22px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.protocol-page .protocol-contents-head span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  opacity: 0.4;
}

.protocol-page .protocol-contents-head strong {
  font-size: 13px;
  font-weight: 600;

  opacity: 0.75;
}

.protocol-page .protocol-contents-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.protocol-page .protocol-contents-list a {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 22px;

  color: inherit;
  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition:
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.protocol-page .protocol-contents-list a:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.protocol-page .protocol-contents-list a span:first-child {
  min-width: 22px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;

  opacity: 0.35;
}

.protocol-page .protocol-contents-list a span:last-child {
  font-size: 13px;
  line-height: 1.4;

  opacity: 0.65;

  transition: opacity 0.25s ease;
}

.protocol-page .protocol-contents-list a:hover {
  padding-left: 26px;

  background: rgba(255, 255, 255, 0.04);
}

.protocol-page .protocol-contents-list a:hover span:last-child {
  opacity: 1;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .protocol-page .protocol-contents-list {
    grid-template-columns: 1fr;
  }

  .protocol-page .protocol-contents-list a:nth-child(odd) {
    border-right: none;
  }

  .protocol-page .protocol-contents-head {
    padding: 16px 18px;
  }

  .protocol-page .protocol-contents-list a {
    padding: 13px 18px;
  }
}

.protocol-page {
  padding: 120px 0 80px;
}

.protocol-page .protocol-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Protocol Page ---------- */

.protocol-page {
  padding: 60px 0 50px;
}

/* ---------- Header ---------- */

.protocol-page .protocol-header {
  text-align: center;
  margin-bottom: 70px;
}

.protocol-page .protocol-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.55;
}

.protocol-page .protocol-title {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.05;
}

.protocol-page .protocol-subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.6;
}

.protocol-page .protocol-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ---------- Document ---------- */

.protocol-page .protocol-document {
  padding: 50px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.025);
}

/* ---------- Sections ---------- */

.protocol-page .protocol-section {
  padding: 38px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.protocol-page .protocol-section:first-child {
  padding-top: 0;
}

.protocol-page .protocol-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.protocol-page .protocol-section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;

  margin-bottom: 18px;
}

.protocol-page .protocol-section-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.protocol-page .protocol-number {
  flex-shrink: 0;

  min-width: 32px;

  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;

  opacity: 0.7;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 8px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.protocol-page .protocol-section h2 {
  margin: 0;

  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.protocol-page .protocol-section p {
  margin: 0 0 16px;

  font-size: 18px;
  line-height: 1.85;
  opacity: 0.72;
}

.protocol-page .protocol-section p:last-child {
  margin-bottom: 0;
}

/* ---------- Lists ---------- */

.protocol-page .protocol-list {
  margin: 18px 0 0;
  padding: 0;

  list-style: none;
}

.protocol-page .protocol-list li {
  position: relative;

  margin-bottom: 14px;
  padding-left: 20px;

  font-size: 16px;
  line-height: 1.8;

  opacity: 0.72;
}

.protocol-page .protocol-list li::before {
  content: "";

  position: absolute;
  top: 0.75em;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;
  background: currentColor;

  opacity: 0.45;
}

/* ---------- Highlight ---------- */

.protocol-page .protocol-note {
  margin-top: 24px;
  padding: 18px 20px;

  border-left: 2px solid currentColor;

  background: rgba(255, 255, 255, 0.025);
}

.protocol-page .protocol-note p {
  margin: 0;

  font-size: 13px;
  line-height: 1.8;
}

/* ---------- Declaration ---------- */

.protocol-page .protocol-declaration {
  margin-top: 50px;
  padding-top: 35px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);

  text-align: center;
}

.protocol-page .protocol-declaration h3 {
  margin: 0 0 14px;

  font-size: 16px;
  font-weight: 600;
}

.protocol-page .protocol-declaration p {
  max-width: 650px;
  margin: 0 auto;

  font-size: 13px;
  line-height: 1.8;
  opacity: 0.6;
}

/* ---------- Signature ---------- */

.protocol-page .protocol-signature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 55px;
}

.protocol-page .signature-box {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.protocol-page .signature-box strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.protocol-page .signature-box span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.45;
}

/* Jika hanya 1 signature */
.protocol-page .protocol-signature:has(.signature-box:only-child) {
  grid-template-columns: 1fr;
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
  .protocol-page {
    padding: 60px 0 50px;
  }

  .protocol-page .protocol-container {
    width: calc(100% - 30px);
  }

  .protocol-page .protocol-header {
    margin-bottom: 45px;
  }

  .protocol-page .protocol-title {
    font-size: 40px;
  }

  .protocol-page .protocol-document {
    padding: 28px 22px;
    border-radius: 10px;
  }

  .protocol-page .protocol-section {
    padding: 30px 0;
  }

  .protocol-page .protocol-section-head {
    gap: 12px;
  }

  .protocol-page .protocol-section h2 {
    font-size: 18px;
  }

  .protocol-page .protocol-section p,
  .protocol-page .protocol-list li {
    font-size: 15px;
  }

  .protocol-page .protocol-signature {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* ==========================================================
   CASSANO SOUND SYSTEM
   ========================================================== */

.sound-entrance {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #080808;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.sound-entrance.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sound-entrance-content {
  width: min(90%, 500px);

  text-align: center;
}

.sound-entrance-brand {
  font-size: 14px;
  font-weight: 700;

  letter-spacing: 5px;
  text-transform: uppercase;
}

.sound-entrance-line {
  width: 45px;
  height: 1px;

  margin: 18px auto;

  background: rgba(255, 255, 255, 0.35);
}

.sound-entrance-content p {
  margin: 0 0 35px;

  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;

  opacity: 0.45;
}

#enter-site {
  appearance: none;

  padding: 13px 32px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  background: transparent;

  color: inherit;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

#enter-site:hover {
  background: #fff;
  color: #000;

  border-color: #fff;
}

.sound-hint {
  display: block;

  margin-top: 18px;

  font-size: 9px;

  letter-spacing: 2px;

  opacity: 0.3;
}


/* ==========================================================
   SOUND CONTROL
   ========================================================== */

.sound-control {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 9998;

  padding: 10px 15px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;

  background: rgba(10, 10, 10, 0.75);

  backdrop-filter: blur(8px);

  color: #fff;

  font-size: 9px;

  letter-spacing: 1.5px;

  cursor: pointer;

  opacity: 0.6;

  transition:
    opacity 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.sound-control:hover {
  opacity: 1;

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.4);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

  .sound-entrance-brand {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .sound-entrance-content p {
    font-size: 9px;
    letter-spacing: 2px;
  }

  #enter-site {
    padding: 12px 28px;
  }

  .sound-control {
    right: 15px;
    bottom: 15px;

    padding: 9px 12px;
  }

}
