/* ==========================================================
   STYLE.CSS — PANDIGA EDUCREATION SPORT
   NOTE: File ini hanya dirapikan struktur heading-nya.
   Tidak ada value CSS, selector, warna, ukuran, margin, padding,
   atau behavior yang diubah.
========================================================== */

@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
	font-weight: 400;
}

@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
	font-weight: 600;
}

@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
	font-weight: 700;
}

@font-face {
	font-family: "Poppins";
	src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
	font-weight: 800;
}

/* ==========================================================
   01. ROOT VARIABLES
========================================================== */
:root {
	--pandiga-blue: #064fa8;
	--pandiga-blue-light: #0d6fe8;
	--pandiga-blue-dark: #07356f;
	--pandiga-navy: #08204a;
	--pandiga-soft-blue: #eef6ff;
	--pandiga-white: #ffffff;
	--pandiga-gold: #f2b705;
	--pandiga-orange: #ff7a00;
	--pandiga-green: #12a66a;
	--pandiga-purple: #6f56d9;
	--pandiga-red: #ef3f4f;
	--pandiga-text: #20304f;
	--pandiga-muted: #6b7890;
	--pandiga-border: rgba(6, 79, 168, 0.14);
	--pandiga-shadow: 0 24px 70px rgba(8, 32, 74, 0.18);
	--pandiga-shadow-soft: 0 14px 34px rgba(8, 32, 74, 0.12);
}

/* ==========================================================
   02. RESET & BASE ELEMENTS
========================================================== */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Poppins", Arial, Helvetica, sans-serif;
	color: var(--pandiga-text);
	background:
		linear-gradient(rgba(225, 239, 255, 0.38), rgba(225, 239, 255, 0.38)),
		url("../img/body-bg.jpg") center center / cover fixed no-repeat;
	min-height: 100vh;
	padding: 26px 0;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
}

/* ==========================================================
   03. GLOBAL LAYOUT
========================================================== */
.site-wrapper {
	width: min(1460px, calc(100% - 140px));
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	box-shadow: 0 30px 90px rgba(8, 32, 74, 0.25);
}

main {
	background: #fff;
}

/* ==========================================================
   04. NAVBAR
========================================================== */
.pandiga-navbar {
	min-height: 76px;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--pandiga-border);
	backdrop-filter: blur(10px);
	position: relative;
	z-index: 50;
}

.navbar-brand {
	font-weight: 900;
	color: var(--pandiga-blue-dark) !important;
	letter-spacing: 0.3px;
}

.navbar-brand img {
	height: 48px;
	width: auto;
}

.brand-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(
		135deg,
		var(--pandiga-blue),
		var(--pandiga-blue-light)
	);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	box-shadow: 0 10px 22px rgba(6, 79, 168, 0.28);
}

.pandiga-navbar .nav-link {
	position: relative;
	font-weight: 800;
	color: var(--pandiga-navy);
	margin: 0 14px;
	padding: 24px 0;
}

.pandiga-navbar .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 16px;
	width: 0;
	height: 3px;
	border-radius: 20px;
	background: var(--pandiga-blue);
	transition: 0.25s ease;
}

.pandiga-navbar .nav-link:hover,
.pandiga-navbar .nav-link.active {
	color: var(--pandiga-blue);
}

.pandiga-navbar .nav-link:hover::after,
.pandiga-navbar .nav-link.active::after {
	width: 100%;
}

.btn-nav-contact {
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(
		180deg,
		var(--pandiga-blue-light),
		var(--pandiga-blue)
	);
	color: #fff;
	padding: 12px 26px;
	border-radius: 13px;
	font-weight: 900;
	box-shadow: 0 12px 24px rgba(6, 79, 168, 0.28);
}

.btn-nav-contact i {
	font-size: 15px;
}

.btn-nav-contact:hover {
	color: #fff;
	background: linear-gradient(
		180deg,
		var(--pandiga-blue),
		var(--pandiga-blue-dark)
	);
}

/* ==========================================================
   05. HOMEPAGE — HERO SLIDER
========================================================== */
.pandiga-hero {
	position: relative;
}

.heroSwiper {
	width: 100%;
	height: 470px;
	overflow: visible;
}

.hero-slide {
	position: relative;
	background-size: cover;
	background-position: center;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(5, 33, 77, 0.92) 0%,
			rgba(6, 79, 168, 0.68) 38%,
			rgba(6, 79, 168, 0.12) 76%
		),
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding: 78px 72px;
	color: #fff;
}

.hero-content span {
	display: inline-block;
	color: var(--pandiga-gold);
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 8px;
}

.hero-content h1 {
	font-size: 62px;
	line-height: 1.05;
	font-weight: 800;
	margin: 0 0 18px;
	letter-spacing: -1px;
	text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.hero-content p {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.65;
	margin-bottom: 28px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-buttons .btn-outline-light {
	border-radius: 50px;
	padding: 14px 30px;
	font-weight: 900;
	border-width: 2px;
}

.hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 20;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	color: var(--pandiga-blue-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 34px rgba(8, 32, 74, 0.25);
	transform: translateY(-50%);
	transition: 0.25s ease;
}

.hero-arrow i {
	font-size: 18px;
	line-height: 1;
}

.hero-arrow-prev {
	left: 15px;
}

.hero-arrow-next {
	right: 15px;
}

.hero-arrow:hover {
	background: var(--pandiga-blue);
	color: #fff;
}

/* ==========================================================
   06. HOMEPAGE — SERVICES
========================================================== */
.service-section {
	margin-top: -1px;
	padding: 34px 36px 26px;
	background: linear-gradient(180deg, rgba(246, 251, 255, 0.98), #fff);
	border-radius: 34px 34px 0 0;
	position: relative;
	z-index: 5;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

.section-title-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: linear-gradient(
		180deg,
		var(--pandiga-blue-light),
		var(--pandiga-blue)
	);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 22px rgba(6, 79, 168, 0.25);
}

.section-title-icon i {
	color: #fff;
	font-size: 17px;
	line-height: 1;
}

.section-title h2 {
	font-size: 24px;
	font-weight: 800;
	color: var(--pandiga-blue-dark);
	margin: 0;
	padding-left: 0;
}

/*
.section-title h2::before {
    content: "\f00a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--pandiga-blue-light), var(--pandiga-blue));
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
*/
.section-title p {
	margin: 0;
	color: var(--pandiga-muted);
	font-size: 16px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.service-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--pandiga-border);
	border-radius: 18px;
	overflow: hidden;
	text-align: center;
	box-shadow: var(--pandiga-shadow-soft);
	transition: 0.25s ease;
}

.service-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 22px 48px rgba(8, 32, 74, 0.18);
}

.service-card img {
	width: 100%;
	height: 138px;
	object-fit: cover;
}

.service-icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	margin: -31px auto 12px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 25px;
	border: 4px solid #fff;
	background: linear-gradient(
		180deg,
		var(--pandiga-blue-light),
		var(--pandiga-blue)
	);
	box-shadow: 0 12px 25px rgba(6, 79, 168, 0.28);
}

.service-icon i {
	color: #fff;
	font-size: 24px;
	line-height: 1;
}

.service-card:nth-child(2) .service-icon {
	background: linear-gradient(180deg, #ffd15b, #e5a400);
}

.service-card:nth-child(3) .service-icon {
	background: linear-gradient(180deg, #3185ff, #064fa8);
}

.service-card:nth-child(4) .service-icon {
	background: linear-gradient(180deg, #22c783, #09915d);
}

.service-card:nth-child(5) .service-icon {
	background: linear-gradient(180deg, #ff9a3d, #f06400);
}

.service-card:nth-child(6) .service-icon {
	background: linear-gradient(180deg, #8d72ff, #6044c8);
}

.service-card h4 {
	font-size: 15px;
	color: var(--pandiga-navy);
	font-weight: 800;
	margin: 0 12px 8px;
}

.service-card p {
	color: #53627c;
	font-size: 13px;
	line-height: 1.45;
	margin: 0 14px 18px;
	min-height: 42px;
}

.service-card::after {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	border-radius: 20px;
	background: var(--pandiga-blue);
	margin: 0 auto 16px;
}

.service-card:nth-child(2)::after {
	background: var(--pandiga-gold);
}

.service-card:nth-child(4)::after {
	background: var(--pandiga-green);
}

.service-card:nth-child(5)::after {
	background: var(--pandiga-orange);
}

.service-card:nth-child(6)::after {
	background: var(--pandiga-purple);
}

/* ==========================================================
   07. HOMEPAGE — WHY CHOOSE US
========================================================== */
.why-section {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 34px;
	padding: 28px 42px 38px;
	background: linear-gradient(180deg, #fff, #f7fbff);
	border-top: 1px solid rgba(6, 79, 168, 0.08);
}

.why-left h2 {
	color: var(--pandiga-blue-dark);
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 4px;
}

.why-left .subtitle {
	color: #d79b00;
	font-style: italic;
	font-weight: 700;
	margin-bottom: 28px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.why-grid div {
	padding-right: 10px;
	border-right: 1px dashed rgba(6, 79, 168, 0.25);
}

.why-grid div:last-child {
	border-right: none;
}

.why-grid i {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(180deg, #0d72eb, #064fa8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	margin-bottom: 12px;
	box-shadow: 0 12px 22px rgba(6, 79, 168, 0.24);
}

.why-grid div:nth-child(2) i {
	background: linear-gradient(180deg, #22c783, #09915d);
}

.why-grid div:nth-child(3) i {
	background: linear-gradient(180deg, #ffd15b, #e5a400);
}

.why-grid div:nth-child(4) i {
	background: linear-gradient(180deg, #ff5968, #d91835);
}

.why-grid h5 {
	color: var(--pandiga-blue-dark);
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 8px;
}

.why-grid p {
	color: #53627c;
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.why-gallery {
	display: grid;
	grid-template-columns: 1fr 1.25fr 1fr;
	gap: 10px;
	align-items: center;
}

.why-gallery img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 18px;
	border: 4px solid #fff;
	box-shadow: var(--pandiga-shadow-soft);
}

.why-gallery img:nth-child(2) {
	height: 190px;
}

/* ==========================================================
   08. FOOTER — BASE WRAPPER / LEGACY SUPPORT
========================================================== */
.footer-section {
	width: min(1460px, calc(100% - 56px));
	margin: 0 auto 24px;
	padding: 36px 20px;
	background: var(--pandiga-blue-dark);
	color: #fff;
	border-radius: 0 0 12px 12px;
}

.footer-section h5 {
	font-weight: 900;
	margin-bottom: 8px;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 8px;
}

.brand-pandiga img {
	height: 48px;
	width: auto;
	margin-right: 12px;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.brand-text strong {
	font-size: 36px;
	font-weight: 900;
	color: #083e92;
	letter-spacing: 1px;
}

.brand-text small {
	font-size: 13px;
	color: #d62828;
	font-weight: 700;
	letter-spacing: 3px;
}

/* ==========================================================
   09. HOMEPAGE — COUNTER & TESTIMONIAL
========================================================== */
.counter-testimonial-section {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	gap: 22px;
	padding: 0 42px 42px;
	background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.counter-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: linear-gradient(
		180deg,
		var(--pandiga-blue-light),
		var(--pandiga-blue-dark)
	);
	border-radius: 18px;
	padding: 24px 28px;
	color: #fff;
	box-shadow: 0 22px 45px rgba(6, 79, 168, 0.25);
}

.counter-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.counter-item:last-child {
	border-right: none;
}

.counter-item i {
	font-size: 34px;
	color: rgba(255, 255, 255, 0.95);
}

.counter-item h3 {
	margin: 0;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
}

.counter-item p {
	margin: 6px 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.86);
}

.testimonial-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(6, 79, 168, 0.14);
	border-radius: 18px;
	padding: 26px 30px;
	box-shadow: 0 18px 42px rgba(8, 32, 74, 0.12);
	overflow: hidden;
}

.quote-icon {
	color: var(--pandiga-blue);
	font-size: 24px;
	margin-bottom: 10px;
}

.testimonial-card p {
	color: var(--pandiga-navy);
	font-weight: 600;
	line-height: 1.7;
	margin-bottom: 14px;
}

.testimonial-card h5 {
	color: var(--pandiga-blue);
	font-size: 14px;
	font-weight: 900;
	margin: 0;
}

.quote-watermark {
	position: absolute;
	right: 22px;
	bottom: -16px;
	color: rgba(6, 79, 168, 0.08);
	font-size: 86px;
}

.testimonial-card small {
	display: block;
	color: var(--pandiga-muted);
	font-size: 12px;
	font-weight: 700;
	margin-top: 4px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	align-items: center;
}

.circle-icon {
	width: 42px;
	height: 42px;
	min-width: 42px;

	border-radius: 50%;
	background: #fff;
	color: var(--pandiga-gold);

	display: flex;
	align-items: center;
	justify-content: center;

	line-height: 1;
	flex-shrink: 0;

	position: relative;
}

.circle-icon i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	color: var(--pandiga-gold);
	font-size: 15px;
	line-height: 1;
	margin: 0;
	padding: 0;
}

.section-title-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 22px;
}

.see-all-service {
	text-decoration: none;
	color: var(--pandiga-blue);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
}

.see-all-service i {
	transition: 0.3s;
}

.see-all-service:hover i {
	transform: translateX(6px);
}

.subtitle {
	position: relative;
	display: inline-block;
	font-family: "Allura", cursive;
	font-size: 34px;
	color: #d8a638;
	margin-bottom: 30px;
	padding: 0 40px;
}
.subtitle::before,
.subtitle::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 30px;
	height: 2px;
	background: #d8a638;
}

.subtitle::before {
	left: 0;
}

.subtitle::after {
	right: 0;
}

.hero-btn-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;

	padding: 8px 10px 8px 30px;
	border-radius: 999px;

	background: linear-gradient(180deg, #0d72eb, #064fa8);
	color: #fff;

	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;

	box-shadow: 0 14px 28px rgba(6, 79, 168, 0.34);
}

.hero-btn-main:hover {
	color: #fff;
	background: linear-gradient(180deg, #064fa8, #07356f);
}

/* ==========================================================
   10. BLOG — LATEST BLOG / EVENT / DETAIL / FILTER
========================================================== */
.latest-blog-section {
	padding: 38px 42px 48px;
	background: #ffffff;
	border-top: 1px solid rgba(6, 79, 168, 0.08);
}

.latest-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.latest-blog-card {
	background: #fff;
	border: 1px solid var(--pandiga-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--pandiga-shadow-soft);
	transition: 0.25s ease;
}

.latest-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px rgba(8, 32, 74, 0.16);
}

.latest-blog-card img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.latest-blog-body {
	padding: 22px;
}

.latest-blog-body small {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pandiga-blue);
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 12px;
}

.latest-blog-body h4 {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
	margin-bottom: 10px;
}

.latest-blog-body h4 a {
	color: var(--pandiga-navy);
}

.latest-blog-body h4 a:hover {
	color: var(--pandiga-blue);
}

.latest-blog-body p {
	color: var(--pandiga-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.page-hero {
	position: relative;
	padding: 70px 42px;
	background: linear-gradient(
		90deg,
		var(--pandiga-blue-dark),
		var(--pandiga-blue)
	);
	color: #fff;
}

.page-hero h1 {
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 10px;
}

.page-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

.blog-detail-section {
	padding: 42px;
	background: #fff;
}

.blog-detail-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--pandiga-shadow-soft);
}

.blog-detail-card > img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.blog-detail-meta {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	padding: 24px 30px 0;
	color: var(--pandiga-blue);
	font-size: 13px;
	font-weight: 800;
}

.blog-detail-content {
	padding: 28px 30px 36px;
	color: var(--pandiga-text);
	line-height: 1.8;
}

.blog-filter-section {
	padding: 34px 42px 0;
	background: #fff;
}

.blog-filter-form {
	background: #f7fbff;
	border: 1px solid var(--pandiga-border);
	border-radius: 18px;
	padding: 24px;
	box-shadow: var(--pandiga-shadow-soft);
}

.blog-filter-form label {
	font-size: 13px;
	font-weight: 800;
	color: var(--pandiga-blue-dark);
	margin-bottom: 8px;
}

.btn-filter-blog {
	background: var(--pandiga-blue);
	color: #fff;
	font-weight: 800;
	border-radius: 10px;
	padding: 10px 18px;
}

.btn-filter-blog:hover {
	background: var(--pandiga-blue-dark);
	color: #fff;
}

.btn-reset-blog {
	background: #fff;
	border: 1px solid var(--pandiga-border);
	color: var(--pandiga-blue-dark);
	font-weight: 800;
	border-radius: 10px;
	padding: 10px 18px;
}

/* ==========================================================
   11. GLOBAL COMPONENT — PAGE BREADCRUMB
========================================================== */

.hero-breadcrumb-bottom {
	position: absolute;
	right: 42px;
	bottom: 24px;

	display: flex;
	align-items: center;
	gap: 10px;

	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
}

.hero-breadcrumb-bottom a {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.hero-breadcrumb-bottom a:hover {
	color: #ffd15b;
}

/* ==========================================================
   12. BLOG — DETAIL FOOTER
========================================================== */

.blog-detail-footer {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 1px solid rgba(8, 32, 74, 0.08);
}

.btn-back-blog {
	display: inline-flex;
	align-items: center;
	gap: 12px;

	padding: 14px 26px;

	border-radius: 50px;

	background: #f7fbff;
	color: var(--pandiga-blue-dark);

	text-decoration: none;
	font-weight: 800;

	transition: 0.3s;
}

.btn-back-blog:hover {
	background: var(--pandiga-blue);
	color: #fff;
}

/* ==========================================================
   13. HOMEPAGE — CTA MARKETING
========================================================== */

.pandiga-cta-section {
	padding: 90px 0;
}

.pandiga-cta-card {
	background: linear-gradient(135deg, #0f5132, #198754);
	border-radius: 28px;
	padding: 50px;
	color: #fff;
	overflow: hidden;
	position: relative;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.pandiga-cta-card h2 {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 18px;
	line-height: 1.3;
}

.pandiga-cta-card p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	line-height: 1.8;
}

.section-badge {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.cta-officer-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.cta-officer-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	color: #fff;
	text-decoration: none;
	transition: 0.3s ease;
}

.cta-officer-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
	color: #fff;
}

.cta-officer-photo {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-officer-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-officer-photo i {
	font-size: 22px;
}

.cta-officer-info {
	flex: 1;
}

.cta-officer-info h5 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
}

.cta-officer-info span {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.cta-wa-icon {
	font-size: 1.8rem;
}

@media (max-width: 991px) {
	.pandiga-cta-card {
		padding: 35px;
	}

	.pandiga-cta-card h2 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.pandiga-cta-section {
		padding: 70px 0;
	}

	.pandiga-cta-card {
		padding: 30px 22px;
		border-radius: 22px;
	}

	.pandiga-cta-card h2 {
		font-size: 1.7rem;
	}

	.cta-officer-item {
		padding: 14px;
	}
}

/* ==========================================================
   14. CONTACT PAGE — PREMIUM COMPACT
========================================================== */

.contact-page-hero {
	padding: 105px 0 55px;
	background: linear-gradient(135deg, #0f5132, #198754);
	color: #fff;
}

.contact-hero-inner {
	max-width: 760px;
}

.contact-hero-inner span,
.contact-mini-title,
.contact-section-heading span {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.contact-hero-inner h1 {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 12px;
}

.contact-hero-inner p {
	font-size: 0.98rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.86);
	margin: 0;
}

.contact-map-section {
	background: #f7f9fc;
}

.contact-map-wrapper {
	width: 100%;
	height: 390px;
	overflow: hidden;
	background: #e9ecef;
}

.contact-map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.map-empty-state {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #6c757d;
}

.map-empty-state i {
	font-size: 2.5rem;
	color: #198754;
	margin-bottom: 12px;
}

.contact-main-section {
	padding: 70px 0;
	background: #f7f9fc;
}

.contact-panel {
	height: 100%;
	background: #fff;
	border-radius: 22px;
	padding: 30px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
}

.contact-mini-title {
	color: #198754;
	background: #e9f5ef;
	padding: 7px 14px;
	border-radius: 50px;
	letter-spacing: 0.04em;
}

.contact-panel h2 {
	font-size: 1.55rem;
	font-weight: 800;
	color: #152238;
	line-height: 1.35;
	margin-bottom: 10px;
}

.contact-desc {
	font-size: 0.92rem;
	color: #6c757d;
	line-height: 1.75;
	margin-bottom: 24px;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-info-item {
	display: flex;
	gap: 13px;
	align-items: flex-start;
}

.contact-info-item i {
	width: 40px;
	height: 40px;
	border-radius: 13px;
	background: linear-gradient(135deg, #0f5132, #198754);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.95rem;
}

.contact-info-item h5 {
	font-size: 0.95rem;
	font-weight: 800;
	margin: 0 0 3px;
	color: #152238;
}

.contact-info-item p {
	font-size: 0.9rem;
	margin: 0;
	color: #6c757d;
	line-height: 1.6;
}

.contact-panel label {
	font-size: 0.88rem;
	font-weight: 700;
	color: #152238;
	margin-bottom: 7px;
}

.contact-panel .form-control {
	height: 45px;
	border-radius: 13px;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	font-size: 0.92rem;
	padding: 10px 14px;
}

.contact-panel textarea.form-control {
	height: auto;
}

.contact-panel .form-control:focus {
	background: #fff;
	border-color: #198754;
	box-shadow: 0 0 0 0.18rem rgba(25, 135, 84, 0.12);
}

.btn-contact-submit {
	border: 0;
	background: linear-gradient(135deg, #0f5132, #198754);
	color: #fff;
	padding: 11px 22px;
	border-radius: 50px;
	font-size: 0.93rem;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	transition: 0.3s ease;
}

.btn-contact-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 13px 30px rgba(25, 135, 84, 0.24);
}

.contact-marketing-section {
	padding: 65px 0 85px;
	background: #fff;
}

.contact-section-heading {
	max-width: 650px;
	margin: 0 auto 35px;
	text-align: center;
}

.contact-section-heading span {
	color: #198754;
	margin-bottom: 8px;
}

.contact-section-heading h2 {
	font-size: 1.75rem;
	font-weight: 800;
	color: #152238;
	margin-bottom: 10px;
}

.contact-section-heading p {
	font-size: 0.95rem;
	color: #6c757d;
	line-height: 1.7;
	margin: 0;
}

.contact-marketing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
}

.marketing-card {
	background: #fff;
	border-radius: 22px;
	padding: 26px 22px;
	text-align: center;
	text-decoration: none;
	color: #152238;
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
	transition: 0.3s ease;
}

.marketing-card:hover {
	transform: translateY(-5px);
	color: #152238;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.marketing-photo {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	margin: 0 auto 15px;
	background: #e9f5ef;
	color: #198754;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	font-size: 1.65rem;
}

.marketing-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.marketing-card h5 {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 4px;
}

.marketing-card span {
	display: block;
	font-size: 0.86rem;
	color: #6c757d;
}

.marketing-wa {
	margin-top: 17px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 9px 16px;
	border-radius: 50px;
	background: #e9f5ef;
	color: #198754;
	font-size: 0.88rem;
	font-weight: 800;
}

@media (max-width: 991px) {
	.contact-page-hero {
		padding: 95px 0 48px;
	}

	.contact-map-wrapper {
		height: 330px;
	}

	.contact-main-section {
		padding: 55px 0;
	}
}

@media (max-width: 767px) {
	.contact-hero-inner h1 {
		font-size: 1.85rem;
	}

	.contact-map-wrapper {
		height: 280px;
	}

	.contact-panel {
		padding: 24px;
		border-radius: 18px;
	}

	.contact-panel h2 {
		font-size: 1.35rem;
	}

	.contact-section-heading h2 {
		font-size: 1.45rem;
	}
}

/* ==========================================================
   15. FOOTER — CONTENT, SOCIAL, BACK TO TOP
========================================================== */

.footer-section {
	background: #0f172a;
	color: #fff;
	padding: 70px 0 25px;
}

.footer-brand h4 {
	font-size: 1.35rem;
	font-weight: 800;
	margin-bottom: 12px;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.95rem;
	line-height: 1.75;
	max-width: 330px;
}

.footer-section h5 {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 18px;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	font-size: 0.93rem;
	transition: 0.3s ease;
}

.footer-section ul li a:hover {
	color: #fff;
	padding-left: 4px;
}

.footer-contact li {
	display: flex;
	gap: 10px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.93rem;
	line-height: 1.6;
}

.footer-contact i {
	color: #198754;
	margin-top: 4px;
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:10px;
}

.footer-social a{
    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;
    text-decoration:none;

    transition:.25s;
}

.footer-social a:hover{
    color:#27ae60;
}

.footer-social a i{
    width:34px;
    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 45px;
	padding-top: 22px;
	text-align: center;
}

.footer-bottom small {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.88rem;
}

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 0;
	background: #198754;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: 0.3s ease;
	z-index: 999;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: #0f5132;
}

@media (max-width: 767px) {
	.footer-section {
		padding: 55px 0 22px;
	}

	.footer-bottom {
		margin-top: 30px;
	}
}

/* ======================================================
   16. ABOUT PAGE
====================================================== */

.about-page-hero {
	background:
		linear-gradient(90deg, rgba(7, 53, 111, 0.94), rgba(6, 79, 168, 0.82)),
		url("../img/about/about-hero.jpg") center/cover no-repeat;
}

.about-intro-section {
	padding: 70px 42px;
	background: #fff;
}

.about-label {
	display: inline-block;
	padding: 7px 16px;
	border-radius: 50px;
	background: var(--pandiga-soft-blue);
	color: var(--pandiga-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.about-intro-content h2 {
	font-size: 2rem;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
	line-height: 1.3;
	margin-bottom: 10px;
}

.about-intro-content h5 {
	font-size: 1rem;
	font-weight: 800;
	color: #d79b00;
	margin-bottom: 18px;
}

.about-intro-content p {
	color: var(--pandiga-muted);
	font-size: 0.95rem;
	line-height: 1.85;
	margin-bottom: 24px;
}

.about-main-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: 50px;
	background: linear-gradient(
		180deg,
		var(--pandiga-blue-light),
		var(--pandiga-blue)
	);
	color: #fff;
	font-weight: 900;
	font-size: 0.93rem;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(6, 79, 168, 0.25);
	transition: 0.3s ease;
}

.about-main-btn:hover {
	color: #fff;
	background: linear-gradient(
		180deg,
		var(--pandiga-blue),
		var(--pandiga-blue-dark)
	);
	transform: translateY(-2px);
}

.about-intro-image {
	border-radius: 26px;
	overflow: hidden;
	box-shadow: var(--pandiga-shadow-soft);
	border: 6px solid #fff;
}

.about-intro-image img {
	width: 100%;
	height: 390px;
	object-fit: cover;
}

.about-vision-section {
	margin-top:70px;
	padding: 0 42px 70px;
	background: #fff;
}

.about-vm-card {
	height: 100%;
	background: linear-gradient(180deg, #f7fbff, #fff);
	border: 1px solid var(--pandiga-border);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--pandiga-shadow-soft);
}

.about-vm-icon {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: linear-gradient(
		180deg,
		var(--pandiga-blue-light),
		var(--pandiga-blue)
	);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 18px;
}

.about-vm-card h3 {
	font-size: 1.35rem;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
	margin-bottom: 6px;
}

.about-vm-card span {
	display: block;
	color: #d79b00;
	font-size: 0.9rem;
	font-weight: 800;
	margin-bottom: 14px;
}

.about-vm-card p {
	color: var(--pandiga-muted);
	font-size: 0.94rem;
	line-height: 1.75;
	margin: 0;
}

.about-values-section {
	padding: 70px 42px;
	background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.about-section-heading {
	max-width: 680px;
	margin: 0 auto 32px;
	text-align: center;
}

.about-section-heading span {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pandiga-blue);
	margin-bottom: 8px;
}

.about-section-heading h2 {
	font-size: 1.75rem;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
	margin-bottom: 10px;
}

.about-section-heading p {
	font-size: 0.95rem;
	color: var(--pandiga-muted);
	line-height: 1.7;
	margin: 0;
}

.about-values-card {
	max-width: 780px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--pandiga-border);
	border-radius: 24px;
	padding: 32px;
	text-align: center;
	box-shadow: var(--pandiga-shadow-soft);
}

.about-values-icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffd15b, #e5a400);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 1.4rem;
}

.about-values-card p {
	color: var(--pandiga-muted);
	font-size: 0.96rem;
	line-height: 1.8;
	margin: 0;
}

.about-cta-section {
	margin-top:70px;
	padding: 0 42px 80px;
	background: #fff;
}

.about-cta-card {
	background: linear-gradient(
		135deg,
		var(--pandiga-blue-dark),
		var(--pandiga-blue)
	);
	color: #fff;
	border-radius: 28px;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	box-shadow: 0 24px 70px rgba(8, 32, 74, 0.18);
}

.about-cta-card span {
	display: inline-block;
	color: var(--pandiga-gold);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}

.about-cta-card h2 {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 10px;
}

.about-cta-card p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

.about-cta-card a {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: var(--pandiga-blue);
	border-radius: 50px;
	padding: 12px 22px;
	font-size: 0.93rem;
	font-weight: 900;
	text-decoration: none;
	transition: 0.3s ease;
}

.about-cta-card a:hover {
	background: var(--pandiga-gold);
	color: var(--pandiga-blue-dark);
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.about-intro-section,
	.about-values-section {
		padding: 55px 28px;
	}

	.about-vision-section {
		padding: 0 28px 55px;
	}

	.about-cta-section {
		padding: 0 28px 65px;
	}

	.about-cta-card {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.about-intro-content h2 {
		font-size: 1.55rem;
	}

	.about-intro-image img {
		height: 280px;
	}

	.about-vm-card,
	.about-values-card {
		padding: 26px;
		border-radius: 20px;
	}

	.about-cta-card {
		padding: 28px;
		border-radius: 22px;
	}

	.about-cta-card h2 {
		font-size: 1.45rem;
	}
}


/* ==========================================================
   17. HOMEPAGE ENHANCEMENT — ABOUT & LEADERSHIP
========================================================== */

.home-about-section {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 34px;
	align-items: center;
	padding: 42px;
	background: linear-gradient(180deg, #ffffff, #f7fbff);
	border-top: 1px solid rgba(6, 79, 168, 0.08);
}

.home-about-image {
	border-radius: 24px;
	overflow: hidden;
	border: 6px solid #fff;
	box-shadow: var(--pandiga-shadow-soft);
}

.home-about-image img {
	width: 100%;
	height: 330px;
	object-fit: cover;
}

.home-about-content span {
	display: inline-block;
	padding: 7px 15px;
	border-radius: 50px;
	background: var(--pandiga-soft-blue);
	color: var(--pandiga-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.home-about-content h2 {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
	line-height: 1.3;
	margin-bottom: 8px;
}

.home-about-content h5 {
	font-size: 0.98rem;
	font-weight: 800;
	color: #d79b00;
	margin-bottom: 15px;
}

.home-about-content p {
	color: var(--pandiga-muted);
	font-size: 0.94rem;
	line-height: 1.8;
	margin-bottom: 22px;
}

.home-about-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 22px;
	border-radius: 50px;
	background: linear-gradient(180deg, var(--pandiga-blue-light), var(--pandiga-blue));
	color: #fff;
	font-size: 0.92rem;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(6, 79, 168, 0.24);
	transition: 0.3s ease;
}

.home-about-btn:hover {
	color: #fff;
	background: linear-gradient(180deg, var(--pandiga-blue), var(--pandiga-blue-dark));
	transform: translateY(-2px);
}

.home-leadership-section {
	padding: 42px;
	background: #ffffff;
	border-top: 1px solid rgba(6, 79, 168, 0.08);
}

.home-leadership-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.home-leader-card {
	background: linear-gradient(180deg, #f7fbff, #ffffff);
	border: 1px solid var(--pandiga-border);
	border-radius: 20px;
	padding: 24px 18px;
	text-align: center;
	box-shadow: var(--pandiga-shadow-soft);
	transition: 0.3s ease;
}

.home-leader-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px rgba(8, 32, 74, 0.16);
}

.home-leader-photo {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: linear-gradient(180deg, var(--pandiga-blue-light), var(--pandiga-blue));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	font-size: 1.8rem;
	border: 4px solid #fff;
	box-shadow: 0 12px 26px rgba(6, 79, 168, 0.24);
}

.home-leader-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-leader-card h4 {
	font-size: 1rem;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
	margin-bottom: 5px;
}

.home-leader-card span {
	display: block;
	font-size: 0.86rem;
	font-weight: 800;
	color: #d79b00;
	margin-bottom: 11px;
}

.home-leader-card p {
	font-size: 0.84rem;
	line-height: 1.6;
	color: var(--pandiga-muted);
	margin: 0;
}

@media (max-width: 991px) {
	.home-about-section {
		grid-template-columns: 1fr;
		padding: 36px 28px;
	}

	.home-about-image img {
		height: 300px;
	}

	.home-leadership-section {
		padding: 36px 28px;
	}

	.home-leadership-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.home-about-section {
		padding: 30px 22px;
	}

	.home-about-content h2 {
		font-size: 1.45rem;
	}

	.home-about-image img {
		height: 240px;
	}

	.home-leadership-section {
		padding: 30px 22px;
	}

	.home-leadership-grid {
		grid-template-columns: 1fr;
	}

	.home-leader-card {
		padding: 22px 18px;
	}
}

/* ==========================================================
   18. ABOUT PAGE — ADVANTAGES & BUSINESS UNITS
========================================================== */

.about-advantages-section {
	padding: 70px 42px;
	background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.about-advantages-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	max-width: 980px;
	margin: 0 auto;
}

.about-advantage-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--pandiga-border);
	border-radius: 22px;
	padding: 24px;
	box-shadow: var(--pandiga-shadow-soft);
	transition: 0.3s ease;
}

.about-advantage-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 60px rgba(8, 32, 74, 0.14);
}

.about-advantage-number {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: linear-gradient(180deg, var(--pandiga-blue), var(--pandiga-blue-dark));
	color: #fff;
	font-size: 0.95rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 12px 24px rgba(6, 79, 168, 0.24);
}

.about-advantage-icon {
	display: none;
}

.about-advantage-card p {
	color: var(--pandiga-muted);
	font-size: 0.93rem;
	line-height: 1.7;
	margin: 0;
	padding-top: 4px;
}

.about-business-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.about-business-card {
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid var(--pandiga-border);
	box-shadow: var(--pandiga-shadow-soft);
	text-decoration: none;
	color: var(--pandiga-text);
	transition: 0.3s ease;
}

.about-business-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 26px 64px rgba(8, 32, 74, 0.16);
	color: var(--pandiga-text);
}

.about-business-image img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.about-business-body {
	position: relative;
	padding: 24px;
}

.about-business-icon {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	margin-top: -52px;
	margin-bottom: 16px;
	background: linear-gradient(180deg, var(--pandiga-blue-light), var(--pandiga-blue));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid #fff;
	box-shadow: 0 14px 28px rgba(6, 79, 168, 0.24);
}

.about-business-card h4 {
	font-size: 1.05rem;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
	margin-bottom: 10px;
}

.about-business-card p {
	color: var(--pandiga-muted);
	font-size: 0.9rem;
	line-height: 1.65;
	margin-bottom: 18px;
}

.about-business-card span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pandiga-blue);
	font-size: 0.86rem;
	font-weight: 900;
}

.about-business-card span i {
	transition: 0.3s ease;
}

.about-business-card:hover span i {
	transform: translateX(5px);
}

.about-business-action {
	margin-top: 32px;
	text-align: center;
}

@media (max-width: 991px) {
	.about-advantages-section {
		padding: 55px 28px;
	}

	.about-advantages-grid,
	.about-business-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.about-advantages-section {
		padding: 45px 22px;
	}

	.about-advantages-grid,
	.about-business-grid {
		grid-template-columns: 1fr;
	}

	.about-business-image img {
		height: 190px;
	}
}

/* ==========================================================
   19. ABOUT PAGE — STORY ENHANCEMENT & SERVICE DETAIL
========================================================== */

.about-story-card {
	max-width: 980px;
	margin: 0 auto;
	background: linear-gradient(135deg, #ffffff, #f7fbff);
	border: 1px solid var(--pandiga-border);
	border-radius: 26px;
	padding: 34px;
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 24px;
	box-shadow: var(--pandiga-shadow-soft);
}

.about-story-icon {
	width: 76px;
	height: 76px;
	border-radius: 22px;
	background: linear-gradient(180deg, var(--pandiga-blue-light), var(--pandiga-blue));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	box-shadow: 0 16px 34px rgba(6, 79, 168, .25);
}

.about-story-content p {
	color: var(--pandiga-muted);
	font-size: .96rem;
	line-height: 1.85;
	margin-bottom: 24px;
}

.about-story-points {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.about-story-points div {
	background: #fff;
	border: 1px solid var(--pandiga-border);
	border-radius: 16px;
	padding: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
}

.about-story-points i {
	color: var(--pandiga-blue);
}

@media(max-width:767px){
	.about-story-card {
		grid-template-columns: 1fr;
		padding: 26px;
	}

	.about-story-points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.service-detail-section {
	padding: 70px 42px;
	background: #fff;
}

.service-detail-image {
	border-radius: 26px;
	overflow: hidden;
	border: 6px solid #fff;
	box-shadow: var(--pandiga-shadow-soft);
}

.service-detail-image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.service-detail-content span {
	display: inline-block;
	padding: 7px 15px;
	border-radius: 50px;
	background: var(--pandiga-soft-blue);
	color: var(--pandiga-blue);
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.service-detail-content h2 {
	font-size: 2rem;
	font-weight: 900;
	color: var(--pandiga-blue-dark);
	margin-bottom: 16px;
}

.service-detail-content p {
	color: var(--pandiga-muted);
	font-size: .96rem;
	line-height: 1.85;
	margin-bottom: 24px;
}

.service-detail-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 26px;
}

.service-detail-points div {
	background: #f7fbff;
	border: 1px solid var(--pandiga-border);
	border-radius: 14px;
	padding: 12px 14px;
	font-size: .9rem;
	font-weight: 800;
	color: var(--pandiga-blue-dark);
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-detail-points i {
	color: var(--pandiga-blue);
}

.service-detail-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.service-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 20px;
	border-radius: 50px;
	background: #f7fbff;
	border: 1px solid var(--pandiga-border);
	color: var(--pandiga-blue-dark);
	font-size: .92rem;
	font-weight: 900;
	text-decoration: none;
}

.service-back-btn:hover {
	background: var(--pandiga-blue);
	color: #fff;
}

@media(max-width:767px){
	.service-detail-section {
		padding: 45px 22px;
	}

	.service-detail-image img {
		height: 280px;
	}

	.service-detail-points {
		grid-template-columns: 1fr;
	}
}


/* ==================================================
17. SERVICES PAGE
================================================== */

.services-page-hero {
    background: linear-gradient(rgba(8, 35, 64, 0.72), rgba(8, 35, 64, 0.72)),
        url("../images/services/services-hero.jpg") center/cover no-repeat;
}

.service-list-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(15, 37, 64, 0.08);
    transition: all 0.35s ease;
}

.service-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(15, 37, 64, 0.14);
}

.service-list-image {
    height: 230px;
    overflow: hidden;
}

.service-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.service-list-card:hover .service-list-image img {
    transform: scale(1.08);
}

.service-list-body {
    position: relative;
    padding: 32px 28px 30px;
}

.service-list-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.service-list-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-list-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-list-body p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 22px;
}

.service-list-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.service-list-link i {
    font-size: 13px;
    transition: all 0.3s ease;
}

.service-list-link:hover i {
    transform: translateX(5px);
}

.service-categories {
    background: #f7f9fc;
}

.service-category-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 14px 40px rgba(15, 37, 64, 0.07);
}

.service-category-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.service-category-card p {
    margin: 0;
    color: var(--text-color);
}

.services-why-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 14px 42px rgba(15, 37, 64, 0.08);
}

.services-why-card i {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.services-why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.services-why-card p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
}

.services-cta {
    padding: 80px 0;
}

.services-cta-box {
    background: linear-gradient(135deg, var(--primary-color), #0b4f9c);
    color: #fff;
    border-radius: 28px;
    padding: 46px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.services-cta-box h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.services-cta-box p {
    margin: 0;
    max-width: 680px;
    opacity: 0.9;
}

.services-cta-box .section-subtitle {
    color: #fff;
}

.services-cta-box .btn-main {
    white-space: nowrap;
    background: #fff;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .services-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .service-list-image {
        height: 210px;
    }

    .services-cta-box {
        padding: 34px 26px;
    }

    .services-cta-box h2 {
        font-size: 26px;
    }
}


.service-list-placeholder {
    background: linear-gradient(135deg, #eef6ff, #f8fbff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list-placeholder i {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.services-intro {
    padding-top: 80px;
    padding-bottom: 60px;
}

.all-services {
    padding-bottom: 80px;
}

.services-why {
    padding-top: 80px;
    padding-bottom: 90px;
}

.service-list-card {
    min-height: 100%;
}

.service-list-body {
    min-height: 230px;
}

.service-list-body h3,
.services-why-card h3 {
    line-height: 1.35;
}

.service-list-body p,
.services-why-card p {
    font-size: 14px;
}

@media (max-width: 767px) {
    .services-intro {
        padding-top: 60px;
    }

    .service-list-body {
        min-height: auto;
    }
}

/* Service Detail Enhancement */

.service-detail-hero {
    background: linear-gradient(rgba(8, 35, 64, 0.75), rgba(8, 35, 64, 0.75)),
        url("../img/services/service-detail-hero.jpg") center/cover no-repeat;
}

.btn-back-page {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
}

.service-detail-main,
.service-sidebar-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(15, 37, 64, 0.08);
}

.service-detail-main {
    overflow: hidden;
}

.service-detail-image {
    height: 420px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content,
.service-info-section {
    padding: 38px;
}

.service-detail-content h2,
.service-info-section h3,
.service-sidebar-card h3 {
    font-weight: 800;
    color: var(--dark-color);
}

.service-rich-content {
    color: var(--text-color);
    line-height: 1.85;
}

.service-rich-content p:last-child {
    margin-bottom: 0;
}

.service-info-section {
    border-top: 1px solid rgba(15, 37, 64, 0.08);
}

.service-feature-box {
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 18px;
    background: #f7faff;
    height: 100%;
}

.service-feature-box i,
.service-empty-box i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-box h4,
.service-empty-box h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-feature-box p,
.service-empty-box p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
}

.service-empty-box {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
    background: #f7faff;
}

.service-detail-sidebar {
    position: sticky;
    top: 110px;
}

.service-sidebar-card {
    padding: 30px;
    margin-bottom: 24px;
}

.service-sidebar-card p {
    color: var(--text-color);
    line-height: 1.7;
}

.service-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: var(--text-color);
}

.service-sidebar-list li i {
    color: var(--primary-color);
    margin-top: 4px;
}

@media (max-width: 991px) {
    .service-detail-sidebar {
        position: static;
    }

    .service-detail-image {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .service-detail-content,
    .service-info-section {
        padding: 28px 22px;
    }

    .service-detail-image {
        height: 240px;
    }

    .service-empty-box,
    .service-feature-box {
        flex-direction: column;
    }
}

/* Service Detail Premium */

.service-detail-premium-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.service-detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 25, 50, 0.92), rgba(5, 25, 50, 0.58), rgba(5, 25, 50, 0.2)),
        linear-gradient(0deg, rgba(5, 25, 50, 0.88), rgba(5, 25, 50, 0.1));
}

.service-detail-hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    padding: 160px 0 90px;
}

.service-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 28px;
    opacity: 0.9;
}

.service-detail-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.service-detail-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.service-detail-hero-content h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
}

.service-detail-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 0;
    opacity: 0.92;
}

.service-detail-premium-page {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 42%);
}

.service-detail-premium-card,
.service-booking-card,
.service-sidebar-info-card,
.service-sidebar-mini-cta {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(15, 37, 64, 0.08);
}

.service-detail-premium-card {
    padding: 44px;
    margin-bottom: 34px;
}

.service-detail-premium-card h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 22px;
}

.service-rich-content {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 16px;
}

.service-rich-content p:last-child {
    margin-bottom: 0;
}

.service-detail-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 34px;
}

.service-highlight-item {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    gap: 18px;
    box-shadow: 0 18px 48px rgba(15, 37, 64, 0.07);
    transition: all 0.35s ease;
}

.service-highlight-item:hover {
    transform: translateY(-6px);
}

.service-highlight-item i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.service-highlight-item h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.service-highlight-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.7;
}

.service-section-header {
    margin-bottom: 28px;
}

.service-feature-premium {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7faff, #ffffff);
    border: 1px solid rgba(15, 37, 64, 0.06);
}

.service-feature-premium span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-feature-premium h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-feature-premium p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.75;
}

.service-package-placeholder {
    display: flex;
    gap: 22px;
    padding: 30px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(255, 255, 255, 0.9));
    border: 1px dashed rgba(0, 102, 204, 0.25);
}

.service-package-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
}

.service-package-placeholder h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.service-package-placeholder p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.8;
}

.service-detail-premium-sidebar {
    position: sticky;
    top: 110px;
}

.service-booking-card {
    padding: 34px;
    margin-bottom: 26px;
    background:
        linear-gradient(160deg, #ffffff, #f3f8ff);
}

.service-booking-card h3,
.service-sidebar-info-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 14px;
}

.service-booking-card p {
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-sidebar-info-card {
    padding: 32px;
    margin-bottom: 26px;
}

.service-sidebar-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar-info-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-sidebar-info-card li:last-child {
    margin-bottom: 0;
}

.service-sidebar-info-card li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.service-sidebar-mini-cta {
    padding: 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--dark-color);
    color: #fff;
}

.service-sidebar-mini-cta i {
    color: #fff;
    font-size: 24px;
    margin-top: 4px;
}

.service-sidebar-mini-cta p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
}

.service-detail-bottom-cta {
    padding: 0 0 90px;
    background: #fff;
}

.service-detail-bottom-box {
    background: linear-gradient(135deg, var(--primary-color), #0b4f9c);
    border-radius: 30px;
    padding: 46px 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.service-detail-bottom-box h2 {
    font-size: 34px;
    font-weight: 900;
    margin: 0;
}

.service-detail-bottom-box .section-subtitle {
    color: #fff;
}

.service-detail-bottom-box .btn-main {
    background: #fff;
    color: var(--primary-color);
    white-space: nowrap;
}

@media (max-width: 991px) {
    .service-detail-premium-sidebar {
        position: static;
    }

    .service-detail-hero-content h1 {
        font-size: 44px;
    }

    .service-detail-bottom-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .service-detail-premium-hero {
        min-height: 540px;
    }

    .service-detail-hero-content {
        padding: 130px 0 70px;
    }

    .service-detail-hero-content h1 {
        font-size: 36px;
    }

    .service-detail-highlight-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-premium-card {
        padding: 30px 24px;
    }

    .service-package-placeholder {
        flex-direction: column;
    }

    .service-detail-bottom-box {
        padding: 34px 26px;
    }

    .service-detail-bottom-box h2 {
        font-size: 26px;
    }
}

.service-list-body {
    padding: 34px 30px 32px;
}

.service-list-icon {
    display: none;
}

.service-list-category {
    margin-bottom: 12px;
}

.service-list-body h3 {
    margin-top: 0;
}


/* ==================================================
18. GALLERY PAGE
================================================== */

.gallery-v2-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(5, 22, 45, 0.82), rgba(5, 22, 45, 0.48), rgba(5, 22, 45, 0.18)),
        url("../img/gallery/gallery-hero.jpg") center/cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-v2-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: linear-gradient(180deg, transparent, #fff);
}

.gallery-v2-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 100px 0 90px;
}

.gallery-v2-hero-content .section-subtitle {
    color: #fff;
}

.gallery-v2-hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.03;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.gallery-v2-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 0;
    opacity: 0.92;
}

.gallery-v2-section {
    padding: 95px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(0, 102, 204, 0.06), transparent 34%),
        #fff;
}

.gallery-v2-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
    align-items: end;
    margin-bottom: 42px;
}

.gallery-v2-intro h2 {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin-bottom: 0;
}

.gallery-v2-intro p {
    color: var(--text-color);
    line-height: 1.85;
    margin-bottom: 0;
}

.gallery-v2-filter {
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 58px;
}

.gallery-filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    color: var(--dark-color);
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(15, 37, 64, 0.08);
    transition: all 0.3s ease;
}

.gallery-filter-btn.is-active,
.gallery-filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 102, 204, 0.24);
}

.gallery-v2-heading {
    margin-bottom: 30px;
}

.gallery-v2-heading span {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}

.gallery-v2-heading h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 0;
}

.gallery-v2-grid {
    columns: 3 310px;
    column-gap: 30px;
}

.gallery-page-item {
    break-inside: avoid;
    margin-bottom: 30px;
}

.gallery-page-item.is-hidden {
    display: none;
}

.gallery-v2-card {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 56px rgba(15, 37, 64, 0.1);
    transform: translateY(0);
    transition: all 0.35s ease;
}

.gallery-v2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(15, 37, 64, 0.18);
}

.gallery-v2-card img {
    width: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
    transition: all 0.65s ease;
}

.gallery-page-item:nth-child(3n + 1) .gallery-v2-card img {
    min-height: 360px;
}

.gallery-page-item:nth-child(3n + 2) .gallery-v2-card img {
    min-height: 280px;
}

.gallery-page-item:nth-child(3n + 3) .gallery-v2-card img {
    min-height: 330px;
}

.gallery-v2-card:hover img {
    transform: scale(1.1);
}

.gallery-v2-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(5, 25, 50, 0.02), rgba(5, 25, 50, 0.86));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.35s ease;
}

.gallery-v2-card:hover .gallery-v2-overlay {
    opacity: 1;
}

.gallery-v2-overlay span {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.gallery-v2-overlay h3 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1.2;
}

.gallery-v2-overlay i {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(9px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.gallery-v2-card:hover .gallery-v2-overlay i {
    transform: scale(1);
}

.gallery-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #f7faff;
    border-radius: 28px;
}

.gallery-load-more-wrap {
    text-align: center;
    margin-top: 44px;
}

.gallery-load-more.is-hidden {
    display: none;
}

.gallery-v2-cta {
    padding: 0 0 95px;
    background: #fff;
}

.gallery-cta-box {
    background:
        linear-gradient(135deg, var(--primary-color), #0b4f9c);
    color: #fff;
    border-radius: 34px;
    padding: 50px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    box-shadow: 0 22px 60px rgba(0, 102, 204, 0.22);
}

.gallery-cta-box h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 12px;
}

.gallery-cta-box p {
    margin: 0;
    max-width: 700px;
    opacity: 0.9;
    line-height: 1.75;
}

.gallery-cta-box .section-subtitle {
    color: #fff;
}

.gallery-cta-box .btn-main {
    background: #fff;
    color: var(--primary-color);
    white-space: nowrap;
}

@media (max-width: 991px) {
    .gallery-v2-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .gallery-v2-hero {
        min-height: 360px;
    }

    .gallery-v2-hero-content {
        padding: 80px 0 70px;
    }

    .gallery-v2-hero-content h1 {
        font-size: 40px;
    }

    .gallery-v2-section {
        padding: 72px 0;
    }

    .gallery-v2-intro h2 {
        font-size: 31px;
    }

    .gallery-v2-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .gallery-filter-btn {
        flex: 0 0 auto;
    }

    .gallery-v2-card img,
    .gallery-page-item:nth-child(3n + 1) .gallery-v2-card img,
    .gallery-page-item:nth-child(3n + 2) .gallery-v2-card img,
    .gallery-page-item:nth-child(3n + 3) .gallery-v2-card img {
        min-height: 260px;
    }

    .gallery-cta-box {
        padding: 36px 28px;
    }

    .gallery-cta-box h2 {
        font-size: 26px;
    }
}

.gallery-load-more-wrap:empty {
    display: none;
}

.gallery-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 170px;
    height: auto;
    padding: 14px 28px;
    border-radius: 999px;
}

.gallery-v2-cta {
    margin-top: 0;
}

.gallery-cta-box {
    min-height: auto;
}

/* Gallery Premium Polish Fix */

.gallery-v2-hero {
    background:
        linear-gradient(90deg, rgba(8, 35, 64, 0.68), rgba(8, 35, 64, 0.38)),
        url("../img/gallery/gallery-hero.jpg") center/cover no-repeat;
}

.gallery-v2-hero::after {
    display: none;
}

.gallery-filter-btn {
    background: #fff !important;
    color: var(--dark-color) !important;
    border: 1px solid rgba(15, 37, 64, 0.08) !important;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.gallery-v2-cta .gallery-cta-box {
    background: linear-gradient(135deg, var(--primary-color), #0b4f9c) !important;
    color: #fff !important;
}

.gallery-v2-cta .gallery-cta-box h2,
.gallery-v2-cta .gallery-cta-box p,
.gallery-v2-cta .gallery-cta-box span {
    color: #fff !important;
}

.gallery-load-more-wrap:empty,
.gallery-load-more.is-hidden {
    display: none !important;
}

.gallery-final-cta {
    padding: 0 0 95px;
    background: #fff;
}

.gallery-final-cta-box {
    background: linear-gradient(135deg, var(--primary-color), #0b4f9c);
    color: #fff;
    border-radius: 34px;
    padding: 50px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    box-shadow: 0 22px 60px rgba(0, 102, 204, 0.22);
}

.gallery-final-cta-box span,
.gallery-final-cta-box h2,
.gallery-final-cta-box p {
    color: #fff;
}

.gallery-final-cta-box span {
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gallery-final-cta-box h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 12px;
}

.gallery-final-cta-box p {
    margin: 0;
    max-width: 700px;
    opacity: 0.9;
    line-height: 1.75;
}

.gallery-final-cta-btn {
    background: #fff;
    color: var(--primary-color);
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 800;
    white-space: nowrap;
}

.gallery-final-cta-btn:hover {
    background: #f3f8ff;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .gallery-final-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .gallery-final-cta-box {
        padding: 36px 28px;
    }

    .gallery-final-cta-box h2 {
        font-size: 26px;
    }
}

/* Gallery Emergency Fix */

.gallery-v2-section .gallery-filter-btn {
    background: #ffffff !important;
    color: var(--dark-color) !important;
    opacity: 1 !important;
}

.gallery-v2-section .gallery-filter-btn.active,
.gallery-v2-section .gallery-filter-btn:hover,
.gallery-v2-section .gallery-filter-btn:focus {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    opacity: 1 !important;
}

.gallery-v2-section .gallery-filter-btn.active * {
    color: #ffffff !important;
}

.pandiga-gallery-loadmore-wrap {
    text-align: center;
    margin-top: 44px;
}

.pandiga-gallery-loadmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 999px;
    padding: 14px 30px;
    font-weight: 800;
    border: none;
}

.pandiga-gallery-loadmore:hover {
    background: var(--dark-color);
    color: #ffffff;
}

/* Matikan kemungkinan CTA lama yang masih tertinggal */
.gallery-cta,
.gallery-v2-cta,
.gallery-cta-box,
.gallery-final-cta,
.gallery-final-cta-box {
    display: none !important;
}

.gallery-v2-section .gallery-filter-btn {
    background: #ffffff !important;
    color: var(--dark-color) !important;
    opacity: 1 !important;
}

.gallery-v2-section .gallery-filter-btn.is-active,
.gallery-v2-section .gallery-filter-btn:hover,
.gallery-v2-section .gallery-filter-btn:focus {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    opacity: 1 !important;
}

.gallery-v2-section .gallery-filter-btn.is-active {
    color: #ffffff !important;
}

.gallery-v2-section .gallery-filter-btn:not(.is-active) {
    color: var(--dark-color) !important;
}

.gallery-v2-filter .gallery-filter-btn {
    background: #ffffff !important;
    color: var(--dark-color) !important;
    border: 1px solid rgba(15, 37, 64, 0.1) !important;
    opacity: 1 !important;
}

.gallery-v2-filter .gallery-filter-btn span {
    color: var(--dark-color) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.gallery-v2-filter .gallery-filter-btn.is-active,
.gallery-v2-filter .gallery-filter-btn:hover,
.gallery-v2-filter .gallery-filter-btn:focus {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.gallery-v2-filter .gallery-filter-btn.is-active span,
.gallery-v2-filter .gallery-filter-btn:hover span,
.gallery-v2-filter .gallery-filter-btn:focus span {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* ==================================================
   19. HOME TESTIMONIAL & CUSTOMER SATISFACTION
================================================== */

.counter-section {
    padding: 40px 6% 20px;
}

.home-testimonial-section {
    padding: 80px 6%;
    background: #f8fafc;
}

.home-testimonial-card {
    height: 300px;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 18px;
}

.home-testimonial-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
    max-height: 96px;
    overflow-y: auto;
    padding-right: 6px;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-rating i {
    color: #cbd5e1;
}

.testimonial-rating i.is-active {
    color: #f59e0b;
}


.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-profile h5 {
    margin: 0;
    font-weight: 700;
    color: #0f172a;
}

.testimonial-profile small {
    color: #64748b;
}

.testimonial-pagination {
    margin-top: 30px;
    text-align: center;
}

.customer-satisfaction-section {
    padding: 80px 6%;
    background: linear-gradient(135deg, #0f766e, #0f172a);
}

.customer-satisfaction-card {
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 30px;
    padding: 44px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

.satisfaction-main span {
    color: #0f766e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.satisfaction-main h2 {
    font-size: 64px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0;
}

.satisfaction-main p {
    color: #475569;
    line-height: 1.8;
}

.satisfaction-btn {
    margin-top: 16px;
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    padding: 12px 22px;
}

.satisfaction-item {
    margin-bottom: 18px;
}

.satisfaction-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 600;
}

.satisfaction-progress {
    height: 10px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.satisfaction-progress span {
    display: block;
    height: 100%;
    background: #0f766e;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .customer-satisfaction-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .satisfaction-main h2 {
        font-size: 48px;
    }
}


/* ==================================================
   20. SURVEY KEPUASAN PAGE
================================================== */

.survey-section {
    padding: 80px 0;
    background: #f8fafc;
}

.survey-card {
    max-width: 1060px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 44px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.survey-intro {
    margin-bottom: 30px;
}

.survey-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0;
}

.survey-intro p {
    color: #64748b;
    line-height: 1.8;
    max-width: 760px;
}

.survey-form label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.survey-form .form-control,
.survey-form .form-select {
    border-radius: 14px;
    min-height: 48px;
    border-color: #dbe3ef;
}

.survey-rating-box {
    margin: 34px 0;
    padding: 28px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.survey-rating-box h4 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 22px;
}

.survey-rating-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.survey-rating-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0f172a;
}

.survey-rating-label i {
    color: #0f766e;
}

.survey-check {
    margin: 20px 0 28px;
    color: #475569;
}

.survey-submit-btn {
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    padding: 13px 26px;
    font-weight: 700;
}

.survey-submit-btn:hover {
    background: #115e59;
    color: #fff;
}

@media (max-width: 768px) {
    .survey-card {
        padding: 28px;
        border-radius: 22px;
    }

    .survey-rating-grid {
        grid-template-columns: 1fr;
    }

    .survey-intro h2 {
        font-size: 28px;
    }
}


/* ==================================================
   21. SURVEY KEPUASAN PREMIUM
================================================== */

.survey-hero {
    padding: 130px 6% 90px;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(15, 23, 42, 0.92)),
        url('../img/about/about-pandiga.png') center/cover no-repeat;
    color: #fff;
}

.survey-hero-content {
    max-width: 760px;
}

.survey-hero-content span {
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ccfbf1;
}

.survey-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 14px 0;
}

.survey-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.survey-premium-section {
    padding: 80px 6%;
    background: #f8fafc;
}

.survey-premium-card {
    max-width: 1080px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 46px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.survey-form-header {
    margin-bottom: 30px;
}

.survey-form-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0;
}

.survey-form-header p {
    color: #64748b;
    line-height: 1.8;
}

.survey-premium-form label {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.survey-premium-form .form-control,
.survey-premium-form .form-select {
    min-height: 50px;
    border-radius: 16px;
    border-color: #dbe3ef;
}

.survey-star-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.survey-star-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 22px;
}

.survey-star-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.survey-star-label i {
    color: #0f766e;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-btn {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 26px;
    color: #cbd5e1;
    cursor: pointer;
    transition: 0.2s ease;
}

.star-btn:hover,
.star-btn.is-selected {
    color: #f59e0b;
    transform: translateY(-2px);
}

.survey-check {
    margin: 24px 0 30px;
    color: #475569;
}

.survey-submit-btn {
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    padding: 14px 28px;
    font-weight: 800;
}

.survey-submit-btn:hover {
    background: #115e59;
    color: #fff;
}

@media (max-width: 768px) {
    .survey-hero {
        padding: 110px 6% 70px;
    }

    .survey-hero-content h1 {
        font-size: 36px;
    }

    .survey-premium-card {
        padding: 30px;
        border-radius: 24px;
    }

    .survey-star-grid {
        grid-template-columns: 1fr;
    }

    .survey-form-header h2 {
        font-size: 28px;
    }
}

.satisfaction-source {
    display: block;
    margin-top: -8px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}