/* ========================================
  0. @FONT-FACE — GOTHAM ROUNDED
  ======================================== */
  @font-face {
	font-family: "Gotham Rounded";
	src: url("../fonts/gothamrnd_bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
  }
  @font-face {
	font-family: "Gotham Rounded";
	src: url("../fonts/gothamrnd_bolditalic.otf") format("opentype");
	font-weight: 700;
	font-style: italic;
	font-display: swap;
  }
  @font-face {
	font-family: "Gotham Rounded";
	src: url("../fonts/gothamrnd_medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
  }
  @font-face {
	font-family: "Gotham Rounded";
	src: url("../fonts/gothamrnd_mediumitalic.otf") format("opentype");
	font-weight: 500;
	font-style: italic;
	font-display: swap;
  }
  @font-face {
	font-family: "Gotham Rounded";
	src: url("../fonts/gothamrnd_book.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
  }
  
  /* ========================================
	1. CSS CUSTOM PROPERTIES
	======================================== */
  :root {
	--gradient: linear-gradient(to right, #c2185b 0%, #9c27b0 35%, #00bcd4 100%);
	--color-pink: #c2185b;
	--color-purple: #9c27b0;
	--color-teal: #00bcd4;
	--color-text: #44474c;
	--color-muted: #7a7d82;
	--color-bg: #ffffff;
	--color-card: #f8f9fa;
	--color-border: #e0e0e0;
	--color-dark-start: #1a0a2e;
	--color-dark-end: #0d0d0d;
	--font-heading: "Gotham Rounded", "Nunito", sans-serif;
	--font-body: "Poppins", sans-serif;
	--max-width: 1200px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
	--transition: all 0.3s ease;
	--background-overlay: linear-gradient(to right, rgba(194, 24, 91, 0.7) 0%, rgba(156, 39, 176, 0.7) 50%, rgba(0, 188, 212, 0.7) 100%);
  }
  
  /* ========================================
	2. RESET & BASE
	======================================== */
  *,
  *::before,
  *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  html {
	scroll-behavior: smooth;
  }
  body {
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	overflow-x: hidden;
  }
  img {
	max-width: 100%;
	display: block;
  }
  a {
	text-decoration: none;
	color: inherit;
  }
  ul {
	list-style: none;
  }
  
  /* ========================================
	3. TYPOGRAPHY
	======================================== */
  .gradient-text {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
  }
  .section-label {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.75rem;
	color: var(--color-muted);
	margin-bottom: 12px;
	font-weight: 600;
	text-align: center !important;
  }
  .section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
  }
  .section-subtitle {
	color: var(--color-text);
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
	padding-bottom: 24px;
  }
  .section-header {
	text-align: center;
	margin-bottom: 48px;
  }
  
  /* ========================================
	4. LAYOUT UTILITIES
	======================================== */
  .container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
  }
  .section {
	padding: 80px 20px;
  }
  .section-light {
	background: var(--color-card);
  }
  .section-gradient-bg {
	background: url("../assets/bg-gradient.png") center center / cover no-repeat;
	position: relative;
  }
  .section-gradient-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
	pointer-events: none;
  }
  .section-gradient-bg > * {
	position: relative;
	z-index: 1;
  }
  .section-dark {
	background: linear-gradient(135deg, var(--color-dark-start), var(--color-dark-end));
	color: #fff;
  }
  .text-center {
	text-align: center;
  }
  .text-justify {
	text-align: justify;
  }
  .flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
  }
  .grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
  }
  .grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
  }
  
  /* ========================================
	5. REUSABLE COMPONENTS
	======================================== */
  .placeholder-img {
	background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 0.85rem;
	border-radius: var(--radius-md);
	overflow: hidden;
	text-align: center;
	background-position: 100% auto;
	background-size: cover;
  }
  .placeholder-img.landscape { aspect-ratio: 16/9; }
  .placeholder-img.square { aspect-ratio: 1/1; }
  .placeholder-img.portrait { aspect-ratio: 3/4; }
  .placeholder-img.ratio-4-3 { aspect-ratio: 4/3; }
  .placeholder-img.wide { aspect-ratio: 21/9; }
  
  /* FITUR FIX UNTUK MENGHILANGKAN CELAH / GAP PADA GAMBAR */
  .placeholder-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 1;
  }
  
  .card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: var(--transition);
  }
  .card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
  }
  .card-body {
	padding: 24px;
  }
  
  .btn {
	display: inline-block;
	padding: 14px 36px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	font-family: var(--font-body);
	cursor: pointer;
	transition: var(--transition);
	border: none;
	text-align: center;
  }
  .btn-primary {
	background: var(--gradient);
	color: #fff;
  }
  .btn-primary:hover {
	transform: scale(1.05);
  }
  
  .badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
  }
  .badge-dark {
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
  }
  .badge-gradient {
	background: var(--gradient);
	color: #fff;
  }
  
  .gradient-divider {
	width: 60px;
	height: 3px;
	background: var(--gradient);
	margin: 30px auto;
	border-radius: 2px;
  }
  
  /* ========================================
	6. NAVBAR
	======================================== */
  .navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: var(--transition);
	background: transparent;
  }
  .navbar.scrolled {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  }
  .navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
  }
  .navbar-brand .logo {
    height: 80px;
    width: auto;
    border-radius: 8px;
  }
  .navbar-brand span {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.1rem;
  }
  .nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
  }
  .nav-links a {
	font-weight: 500;
	font-size: 0.95rem;
	transition: var(--transition);
	position: relative;
  }
  .navbar.scrolled .nav-links a {
	color: var(--color-text);
  }
  .nav-links a:hover {
	color: var(--color-pink);
  }
  .nav-links a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: width 0.3s ease;
  }
  .nav-links a:hover::after {
	width: 100%;
  }
  .hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
  }
  .hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-text);
	transition: var(--transition);
	border-radius: 2px;
  }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .mobile-menu {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
  }
  .mobile-menu.active {
	display: flex;
  }
  .mobile-menu a {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--color-text);
	transition: var(--transition);
  }
  .mobile-menu a:hover {
	color: var(--color-pink);
  }