@charset "utf-8";
/* CSS Document 

TemplateMo 603 Nexaverse

https://templatemo.com/tm-603-nexaverse

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00f0ff;
	--secondary: #ff00d4;
	--accent: #9d4edd;
	--dark-1: #001a33; /* Slightly more blue */
	--dark-2: #00264d;
	--dark-3: #003366;
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
	--glow-cyan: rgba(0, 240, 255, 0.5);
	--glow-magenta: rgba(255, 0, 212, 0.4);
    --volten-blue: #003366;
    --volten-blue-deep: #001a33;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--volten-blue);
    background-attachment: fixed;
	color: #ffffff;
	overflow-x: hidden;
	min-height: 100vh;
	line-height: 1.6;
	letter-spacing: 0.2px;
}

/* Ambient Background */
.ambient-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float 20s ease-in-out infinite;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
	top: -200px;
	left: -200px;
	animation-delay: 0s;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
	bottom: -150px;
	right: -150px;
	animation-delay: -7s;
}

.orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 78, 146, 0.4) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -14s;
}

@keyframes float {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	25% {
		transform: translate(50px, -30px) scale(1.05);
	}

	50% {
		transform: translate(-30px, 50px) scale(0.95);
	}

	75% {
		transform: translate(-50px, -20px) scale(1.02);
	}
}

/* The Background Grid Pattern Overlay */
.grid-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
	z-index: 1;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--volten-blue);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-ring {
	width: 80px;
	height: 80px;
	position: relative;
}

.loader-ring::before,
.loader-ring::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	border: 2px solid transparent;
}

.loader-ring::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top-color: var(--primary);
	border-right-color: var(--primary);
	animation: spin 1.2s linear infinite;
}

.loader-ring::after {
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-bottom-color: var(--primary);
	border-left-color: var(--primary);
	animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-text {
	margin-top: 30px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	color: var(--primary);
	text-transform: uppercase;
}

/* Main Container */
.container {
	position: relative;
	z-index: 10;
	padding: 20px 20px;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Home Wrapper */
.home-wrapper {
	display: flex;
	flex-direction: column; /* Stack header on top and menu grid below */
	align-items: center;
	justify-content: center;
	gap: 24px; /* Balanced spacing between header and menu grid */
	width: 54%; /* Limit menu home area to 54% width on desktop */
	margin: 0 auto; /* Center it horizontally */
	min-height: 80vh;
	padding: 40px 0;
}

.header {
    width: 100%;
    max-width: 100%; /* Take full width of centered container */
    text-align: center;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3 columns for perfect symmetric 2x3 grid */
	gap: 14px;
	margin: 16px 0 0 0;
	width: 100%;
	max-width: 100%; /* Take full width of centered container */
}

@media (max-width: 992px) {
	.home-wrapper {
		flex-direction: column;
		gap: 10px;
        padding: 0;
	}
    .header, .menu-grid {
        max-width: 100%;
    }
	.menu-grid {
		margin-top: 0;
        grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.home-wrapper {
		gap: 8px;
	}
}

/* Header */
.header {
	text-align: center;
	margin-bottom: 0;
	opacity: 0;
	animation: fadeUp 0.8s ease-out 1s forwards;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}

	from {
		transform: translateY(30px);
	}
}

.logo {
	width: 150px;
	height: 150px;
	margin: 16px auto 8px;
	position: relative;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFF5CC 50%, #FFD700 100%);
    box-shadow: 0 0 35px rgba(185, 147, 54, 0.4), inset 0 0 20px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(185, 147, 54, 0.6);
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    border-radius: 50%;
    border: 5px solid #165A92;
}

.brand-name {
	font-family: 'Inter', sans-serif;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 6px;
	margin-bottom: 6px;
	margin-top: 4px;
	color: #ffffff;
	text-transform: uppercase;
    display: block;
    padding: 3px 15px;
}

.sub-brand {
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #cc0000;
    margin-bottom: 2px;
    text-transform: uppercase;
    background: #ffffff;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.motivational-quote {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
	max-width: 380px;
	margin: 0 auto;
	line-height: 1.6;
	text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.tagline {
	font-size: 13px;
	letter-spacing: 5px;
	color: #ff0000;
	text-transform: uppercase;
	font-weight: 600;
}



.menu-item {
	min-height: 180px;
	background: rgba(0, 50, 120, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1.5px solid rgba(91, 192, 235, 0.35);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 20px 12px 16px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-align: center;
}

/* Semua kartu menu gradasi biru Volten */
.menu-item[data-section="about"],
.menu-item[data-section="services"],
.menu-item[data-section="gallery"],
.menu-item[data-section="clients"],
.menu-item[data-section="testimonials"],
.menu-item[data-section="contact"] {
	background: linear-gradient(145deg, #001a33 0%, #003366 60%, #004080 100%);
	border-color: rgba(0, 180, 255, 0.45);
}

/* Glossy top shine */
.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 45%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.10) 0%,
			rgba(255, 255, 255, 0.03) 50%,
			transparent 100%);
	border-radius: 20px 20px 0 0;
	pointer-events: none;
}

.menu-item::after {
	display: none;
}

.menu-item:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow:
		0 16px 35px rgba(0, 0, 0, 0.5),
		0 0 25px rgba(91, 192, 235, 0.2);
	filter: brightness(1.12);
}

.menu-item.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.menu-item.initial-load {
	animation: menuAppear 0.5s ease-out forwards;
}

.menu-item.initial-load:nth-child(1) { animation-delay: 0.5s; }
.menu-item.initial-load:nth-child(2) { animation-delay: 0.6s; }
.menu-item.initial-load:nth-child(3) { animation-delay: 0.7s; }
.menu-item.initial-load:nth-child(4) { animation-delay: 0.8s; }
.menu-item.initial-load:nth-child(5) { animation-delay: 0.9s; }
.menu-item.initial-load:nth-child(6) { animation-delay: 1.0s; }

@keyframes menuAppear {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Menu Badge - Icon Circle */
.menu-badge {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	margin-bottom: 10px;
	position: relative;
	background: rgba(255, 255, 255, 0.12);
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
	transition: all 0.4s ease;
	overflow: hidden;
}

/* Semua badge gradasi biru Volten */
.menu-item .menu-badge {
	background: radial-gradient(circle at 40% 30%, rgba(0, 180, 255, 0.4), rgba(0, 51, 102, 0.6));
	box-shadow: 0 4px 20px rgba(0, 150, 220, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Inner glossy shine */
.menu-badge::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 12%;
	right: 12%;
	height: 40%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.35) 0%,
			transparent 100%);
	border-radius: 50%;
	pointer-events: none;
}

/* Animated ring */
.menu-badge::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: rgba(255,255,255,0.6);
	border-right-color: rgba(255,255,255,0.3);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.menu-item:hover .menu-badge {
	transform: scale(1.1);
}

.menu-item:hover .menu-badge::after {
	opacity: 1;
	animation: badgeSpin 2s linear infinite;
}

@keyframes badgeSpin {
	to {
		transform: rotate(360deg);
	}
}

.menu-title {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #ffffff;
	transition: all 0.3s ease;
	margin-bottom: 6px;
	line-height: 1.3;
}

.menu-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    flex-grow: 1;
}

.menu-item:hover .menu-title {
	color: #ffffff;
}

/* Content Sections */
.content-section {
	display: none;
	opacity: 0;
	padding: 18px 30px 80px; /* Increased top padding to 18px */
	position: relative;
    background: #C9DBEA !important; /* Kembali ke biru-abu lembut untuk kontras kartu */
    color: #1a1a2e;
    border-radius: 50px;
    margin: 40px auto; /* Center the section horizontally */
    width: 54%; /* Limit content width to 54% on desktop */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 1400px) {
    .content-section, .home-wrapper {
        width: 65%; /* Gentle transition for smaller desktop displays */
    }
}

@media (max-width: 1100px) {
    .content-section, .home-wrapper {
        width: 80%; /* Expand for small laptops/tablets */
    }
}

@media (max-width: 992px) {
    .content-section, .home-wrapper {
        width: 95%; /* Take up most of the space on tablets */
    }
    .content-section {
        border-radius: 40px;
    }
}

@media (max-width: 768px) {
    .content-section, .home-wrapper {
        width: 100%; /* Full screen on mobile */
    }
    .content-section {
        border-radius: 30px;
    }
}

.content-section h1, 
.content-section h2, 
.content-section h3, 
.content-section h4, 
.content-section p,
.content-section span:not(.intro-badge, .intro-floating-card span, .metric-value, .letter-badge, .card-icon) {
    color: #1a1a2e !important;
}

.content-section .section-title {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

.content-section .section-subtitle {
    color: rgba(26, 26, 46, 0.6) !important;
}

/* Ensure cards inside remain visible or adjust */
.content-section .glass-card,
.content-section .value-card,
.content-section .program-card,
.content-section .client-logo-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.content-section .intro-subtext {
    color: #444 !important;
}

.content-section.active {
	display: block;
	animation: sectionIn 0.6s ease-out forwards;
}

@keyframes sectionIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Section Header Small */
.section-header-small {
	position: fixed;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 100;
	background: #DCE9F3;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 12px 24px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.small-logo {
	width: 64px;
	height: 64px;
}

.small-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.small-brand h3 {
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #7bb9e8 !important;
}

.small-brand p {
	font-size: 11px;
	letter-spacing: 1px;
	color: #ff0000 !important;
	margin-top: 2px;
    font-weight: 700;
}

/* Volten Section Main Header Styles - No Background */
#about .section-header {
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: none;
    border-bottom: none;
}

#about .section-header .section-title {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

#about .section-header .section-subtitle {
    color: rgba(26, 26, 46, 0.6) !important;
}

/* Marketing Plan (Gallery) Red Subtitle */
#gallery .section-subtitle {
    color: #cc0000 !important;
    font-weight: 500;
}

/* Back Button */
.back-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 12px 24px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 100;
}

.back-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

/* Section Content */
.section-header {
	text-align: center;
	margin-top: 0;
	margin-bottom: 50px;
}

.section-title {
	font-family: 'Inter', sans-serif;
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 10px;
	color: #ff0000;
	text-transform: uppercase;
}

.section-subtitle {
	font-size: 16px;
	color: #004e92;
	letter-spacing: 1px;
	font-weight: 600;
}

/* Glass Cards */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.glass-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== NEW INTRODUCTION SECTION STYLES ===== */

/* Hero Banner */
.intro-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.intro-hero-content {
	max-width: 550px;
}

.intro-badge {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(0, 240, 255, 0.1);
	border: 1px solid rgba(0, 240, 255, 0.3);
	border-radius: 50px;
	font-size: 12px;
	letter-spacing: 2px;
	color: var(--primary);
	margin-bottom: 25px;
}

.intro-headline {
	font-family: 'Inter', sans-serif;
	font-size: 58px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 25px;
	color: #ffffff;
}

.intro-headline span {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.intro-subtext {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 35px;
}

.intro-cta-group {
	display: flex;
	gap: 15px;
}

.intro-cta-primary {
	padding: 16px 36px;
	background: #165A92;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	color: #ffffff !important;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 20px rgba(22, 90, 146, 0.3);
}

.intro-cta-primary:hover {
	background: linear-gradient(135deg, #0056b3, #00f0ff);
	box-shadow: 0 15px 30px rgba(0, 240, 255, 0.4);
	transform: translateY(-5px);
}

.intro-cta-secondary {
	padding: 16px 36px;
	background: #ffcc00;
	border: 1px solid #e6b800;
	border-radius: 50px;
	color: #1a1a2e;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.intro-cta-secondary:hover {
	background: #ffdb4d;
    transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

.intro-cta-secondary:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(255, 255, 255, 0.05);
}

/* Hero Visual */
.intro-hero-visual {
	position: relative;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro-orb {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.3), rgba(0, 240, 255, 0.1) 50%, transparent 70%);
	filter: blur(40px);
	animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}
}

.intro-floating-card {
	position: absolute;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 14px;
	padding: 16px 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	animation: floatCard 6s ease-in-out infinite;
}

.intro-floating-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
	border-radius: 14px 14px 0 0;
	pointer-events: none;
}

.card-icon {
	font-size: 20px;
}

.card-text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.5px;
}

.card-1 {
	top: 30px;
	left: 10%;
	animation-delay: 0s;
}

.card-2 {
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	animation-delay: -2s;
}

.card-3 {
	bottom: 30px;
	left: 20%;
	animation-delay: -4s;
}

@keyframes floatCard {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.card-2 {
	animation-name: floatCardAlt;
}

@keyframes floatCardAlt {

	0%,
	100% {
		transform: translateY(-50%);
	}

	50% {
		transform: translateY(calc(-50% - 15px));
	}
}

/* Metrics Strip */
.intro-metrics {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 40px 50px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.intro-metrics::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.metric-item {
	text-align: center;
}

.metric-value {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline;
}

.metric-suffix {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.metric-label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 8px;
	letter-spacing: 1px;
}

.metric-divider {
	width: 1px;
	height: 50px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Core Values */
.intro-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 60px;
}

.value-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 35px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.value-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.value-number {
	font-family: 'Syne', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: rgba(0, 240, 255, 0.15);
	margin-bottom: 15px;
	line-height: 1;
}

.value-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 12px;
}

.value-card p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

/* Tech Stack */
.intro-tech {
	text-align: center;
}

.tech-label {
	font-size: 12px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.tech-marquee {
	overflow: hidden;
	position: relative;
	padding: 20px 0;
}

.tech-marquee::before,
.tech-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.tech-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--dark-1), transparent);
}

.tech-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, var(--dark-1), transparent);
}

.tech-track {
	display: flex;
	gap: 40px;
	animation: marquee 20s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.tech-item {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	white-space: nowrap;
	transition: color 0.3s ease;
}

.tech-item:hover {
	color: var(--primary);
}

/* Services Row Layout */
.services-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.service-row {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.service-row::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.service-row::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary), var(--accent));
	border-radius: 20px 0 0 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-row:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-row:hover::after {
	opacity: 1;
}

.service-row-icon {
	width: 240px;
	height: 180px;
	min-width: 140px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.service-row-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	border-radius: 12px 12px 50% 50%;
}

.service-row-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.service-row-content {
	flex: 1;
}

.service-row-content h4 {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--primary);
}

.service-row-content p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

.service-row-arrow {
	display: none;
}

/* Tabs */
.tabs-container {
	margin-bottom: 30px;
}

.tab-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.tab-btn {
	padding: 12px 28px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.tab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.tab-btn:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
}

.tab-btn.active {
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 212, 0.2));
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
	animation: tabFade 0.4s ease-out;
}

@keyframes tabFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 333px));
	gap: 20px;
	justify-content: center;
}

.gallery-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 333 / 225;
	cursor: pointer;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	transition: all 0.4s ease;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	border-color: var(--primary);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 40%, rgba(10, 10, 18, 0.9) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay h4 {
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	color: var(--primary);
	margin-bottom: 5px;
}

.gallery-overlay p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* Filter Buttons */
.filter-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.testimonial-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 30px;
	font-family: 'Syne', sans-serif;
	font-size: 80px;
	color: rgba(0, 240, 255, 0.1);
	line-height: 1;
}

.testimonial-text {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--primary);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h5 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
}

.author-info p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-text h3 {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--primary);
}

.about-text p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 15px;
}

.about-text a {
    color: var(--primary);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.program-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.program-list li strong {
    font-size: 1rem;
    color: var(--neon-cyan);
    display: block;
}

.program-list li span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.program-list li i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.program-list li:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateX(8px);
}

.program-list li:hover i {
    opacity: 1;
    color: var(--neon-cyan);
    transform: translateY(-50%) rotate(360deg);
}

#about, #services, #gallery, #clients, #testimonials, #contact {
    margin-bottom: 100px;
}

.about-text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.about-text a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.about-text a:hover::after {
    width: 100%;
}

.about-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
}

/* Contact Form */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	padding: 16px 40px;
	background: #165A92;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: #ffffff !important;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.submit-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow:
		0 15px 30px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 200, 220, 0.25);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
}

.contact-item:hover {
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.1));
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: var(--primary);
	position: relative;
	overflow: hidden;
}

.contact-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.contact-details h4 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 5px;
}

.contact-details p {
	color: #ffffff;
	font-size: 15px;
}

/* Exit animations */
.menu-item.exit-up {
	animation: exitDown 0.5s ease-out forwards !important;
	pointer-events: none;
}

@keyframes exitDown {
	to {
		transform: translateY(50px);
		opacity: 0;
	}
}

.menu-item.return {
	animation: menuReturn 0.4s ease-out forwards !important;
}

@keyframes menuReturn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Footer */
.footer {
	margin-top: auto;
	padding: 30px 0;
	text-align: center;
	opacity: 0;
	animation: fadeUp 0.5s ease-out 1.7s forwards;
}

.footer p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 1px;
}

.footer a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: var(--secondary);
}

/* Responsive Design */
/* ==========================================================================
   Responsive Design - Refined for Multi-Media Perfection
   ========================================================================== */

/* Laptop & Large Tablets (992px and below) */
@media (max-width: 992px) {
    .container {
        padding: 20px 0;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        width: 100%;
        gap: 15px;
        padding: 0 10px;
    }

    .menu-item {
        height: 160px;
    }

    .intro-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .intro-hero-content {
        max-width: 100%;
    }

    .intro-cta-group {
        justify-content: center;
    }

    .intro-hero-visual {
        height: 350px;
    }

    .intro-metrics {
        flex-wrap: wrap;
        gap: 30px;
    }

    .metric-divider {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablets & Mobile (768px and below) */
@media (max-width: 768px) {
    .brand-name {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .logo {
        width: 240px;
        height: 240px;
        margin: 10px auto 5px;
    }

    .header {
        margin-bottom: 0;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .menu-item {
        height: 140px;
        padding: 15px;
    }

    .menu-badge {
        width: 75px;
        height: 75px;
        font-size: 27px;
    }

    .section-title {
        font-size: 32px;
    }

    .intro-headline {
        font-size: 32px;
    }

    .intro-hero-visual {
        height: 250px;
    }

    .section-header-small {
        position: fixed;
        top: 15px;
        left: 15px;
        right: 15px;
        padding: 8px 15px;
        justify-content: space-between;
        width: fit-content;
        max-width: calc(100% - 30px);
    }

    .back-btn {
        position: fixed;
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 11px;
    }

    .content-section {
        padding: 9px 15px 60px; /* Reduced bottom padding to bring CTA closer to sticky footer */
    }

    .intro-metrics {
        padding: 30px 20px;
    }

    .metric-item {
        flex: 1 1 120px;
    }

    .metric-value {
        font-size: 32px;
    }

    .service-row {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .service-row-icon {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .tab-buttons {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 11px;
    }

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

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 20px 0;
    }

    .brand-name {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .logo {
        width: 210px;
        height: 210px;
        margin: 5px auto 5px;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        padding: 0;
    }

    .menu-item {
        height: 125px;
    }

    .menu-badge {
        width: 56px;
        height: 56px;
    }

    .menu-badge i {
        font-size: 20px;
    }

    .menu-title {
        font-size: 9px;
    }

    .intro-headline {
        font-size: 26px;
    }

    .intro-hero-visual {
        display: none;
    }

    .intro-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .intro-cta-primary, 
    .intro-cta-secondary {
        width: 100%;
        text-align: center;
    }

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

    .tech-item {
        font-size: 12px;
        padding: 0 15px;
    }

    .tab-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        flex: 1 1 40%;
    }
}

/* About Section Beautification */
.about-visuals {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 240, 255, 0.8);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

/* Icon Colors */
.icon-cyan { color: #00f0ff !important; }
.icon-gold { color: #ffcc00 !important; }
.icon-purple { color: #9d4ede !important; }

/* Value Item Variations */
.value-blue { border-left-color: #0077ff !important; }
.value-cyan { border-left-color: #00f0ff !important; }
.value-white { border-left-color: #ffffff !important; }

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    margin-top: 10px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: #1ebe57;
}

.whatsapp-btn i {
    font-size: 20px;
}

/* Programs Grid Styles */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for spacious layout on 54% width container */
    gap: 25px; /* Slightly tighter gap for 54% width container */
    margin-top: 40px;
}

.program-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 78, 146, 0.1);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 78, 146, 0.3);
}

.program-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffcc00;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.program-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-visual img {
    transform: scale(1.1);
}

.program-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 0 20px var(--glow-cyan);
}

.program-info {
    padding: 18px 15px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95); /* Light background for blue text */
}

.program-info h3 {
    font-family: 'Inter', sans-serif;
    color: #004e92 !important;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card .cta-button.email {
    background: linear-gradient(135deg, #004e92 0%, #000428 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 30px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 78, 146, 0.4);
}

.program-card .cta-button.email:hover {
    background: #ffcc00;
    color: #000428 !important;
    border-color: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
}

.program-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-list li {
    background: rgba(255, 255, 255, 0.01);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.program-list li[onclick] {
    cursor: pointer;
}

.program-list li:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--primary);
    transform: translateX(12px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.program-list li strong {
    color: var(--primary);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.program-list li i.fa-circle-info {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--primary);
    font-size: 14px;
    opacity: 0.6;
}

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

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .program-info {
        padding: 15px;
    }
    .program-info h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* Program Modal Styles */
.program-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.program-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 5, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: #DCE9F3;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    overflow-y: auto;
    z-index: 10;
    animation: modalFadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-footer {
    padding: 25px 40px 45px;
    display: flex;
    justify-content: center;
    gap: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-btn {
    text-decoration: none !important;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    min-width: 180px;
}

.modal-consult {
    background: #165A92;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(22, 90, 146, 0.2);
}

.modal-consult:hover {
    background: #1e6fb3;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(22, 90, 146, 0.4);
}

.modal-back {
    background: #165A92;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
}

.modal-back:hover {
    background: #1e6fb3;
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(22, 90, 146, 0.4);
}

@media (max-width: 580px) {
    .modal-footer {
        flex-direction: column;
        padding: 20px 25px 35px;
    }
    .modal-btn {
        width: 100%;
        min-width: unset;
    }
}

.modal-header-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
}

.modal-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content-text {
    padding: 40px;
}

.modal-content-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #cc0000 !important; /* Judul modal merah agar seragam */
    margin-bottom: 25px;
    text-align: center;
}

.modal-content-text p {
    font-size: 15px;
    color: #1a1a2e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-list li {
    cursor: pointer;
}

.program-list li:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .modal-header-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }
    .modal-content-text {
        padding: 30px 20px;
    }
    .modal-content-text h2 {
        font-size: 24px;
    }
}

/* Subsection Header Styles */
.about-subsection-header {
    margin: 40px 0 25px;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.about-subsection-header h3 {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.subsection-subtitle {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Quote Section Styles */
.about-quote {
    background: rgba(0, 240, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    border: 1px dashed rgba(0, 240, 255, 0.3);
}

.about-quote i {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    opacity: 0.6;
}

.about-quote p {
    font-size: 18px;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* TFU Values Grid Styles */
.tfu-values-grid {
    margin-top: 20px;
}

.tfu-values-grid h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.value-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-large:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
}

.value-card-large:hover::before {
    opacity: 1;
}

.letter-badge {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 240, 255, 0.5);
    margin-bottom: 15px;
    line-height: 1;
    transition: all 0.4s ease;
}

.value-card-large:hover .letter-badge {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 30px var(--glow-cyan);
}

.value-card-large h4 {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card-large p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .values-container {
        grid-template-columns: 1fr;
    }
}

/* Transformation & Consultation CTA Styles */
.about-transformation-cta,
.program-consultation-cta {
    margin-top: 50px;
    padding: 40px;
    background: #165A92 !important;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 15px 35px rgba(22, 90, 146, 0.4);
    margin-bottom: 25px;
}

.about-transformation-cta h3,
.program-consultation-cta h3 {
    font-size: 26px;
    font-family: 'Syne', sans-serif;
    color: #ffffff !important; /* White text as requested */
    margin-bottom: 30px;
}

.program-consultation-cta h3 {
    margin-bottom: 10px;
}

.cta-instruction {
    color: #ffffff !important; /* White text as requested */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
    opacity: 0.9;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

.cta-button.whatsapp {
    background: #25d366; /* Keep WA green but could be themed if needed */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.whatsapp:hover {
    background: linear-gradient(135deg, #0056b3, #00f0ff);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.3);
}

.cta-button.email, .cta-button.yellow, .modal-consult.yellow {
    background: #165A92;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(22, 90, 146, 0.2);
}

.cta-button.email:hover, .cta-button.yellow:hover, .modal-consult.yellow:hover {
    background: #ffdb4d;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

@media (max-width: 480px) {
    .about-transformation-cta {
        padding: 30px 20px;
    }
    
    .about-transformation-cta h3 {
        font-size: 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
.sticky-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 49, 84, 0.9); /* Mid-dark navy, better balance than previous deep navy */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    gap: 5px;
    z-index: 2000;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 240, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-nav.visible {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
}

.sticky-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    padding: 8px 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border-radius: 20px;
}

/* Uniform Icon Container */
/* Uniform Icon Container matching Home Icons */
.sticky-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.15) 0%, rgba(91, 192, 235, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #5BC0EB;
}

.sticky-icon-box::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 10%;
    right: 10%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
}

.sticky-nav-item i {
    font-size: 15px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(91, 192, 235, 0.4);
}

.sticky-nav-item span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #d1d1d1;
    opacity: 0.9;
}

.sticky-nav-item:hover,
.sticky-nav-item.active {
    color: #5BC0EB;
}

.sticky-nav-item:hover span,
.sticky-nav-item.active span {
    color: #5BC0EB;
    opacity: 1;
}

.sticky-nav-item:hover .sticky-icon-box,
.sticky-nav-item.active .sticky-icon-box {
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.25) 0%, rgba(91, 192, 235, 0.15) 100%);
    border-color: #5BC0EB;
    box-shadow: 0 0 15px rgba(91, 192, 235, 0.3);
    transform: translateY(-2px);
}

/* Program Logo Box specific adjustments with continuous glow */
.program-logo-box {
    width: 54px !important;
    height: 54px !important;
    animation: blinkGlow 2s ease-in-out infinite;
    border-color: rgba(91, 192, 235, 0.5) !important;
}

.program-logo-box img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(91, 192, 235, 0.8));
}

@keyframes blinkGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(91, 192, 235, 0.4), inset 0 0 5px rgba(91, 192, 235, 0.2); 
        border-color: rgba(91, 192, 235, 0.3);
    }
    50% { 
        box-shadow: 0 0 25px rgba(91, 192, 235, 0.8), inset 0 0 10px rgba(91, 192, 235, 0.4);
        border-color: #5BC0EB;
    }
}

/* Animation is now continuous for the logo box */

@media (max-width: 480px) {
    .sticky-nav {
        width: 95%;
        bottom: 15px;
        padding: 6px 8px;
    }

    .sticky-nav-item {
        flex: 1;
        width: auto;
    }

    .sticky-icon-box {
        width: 32px;
        height: 32px;
    }

    .sticky-nav-item i {
        font-size: 14px;
    }

    .sticky-icon-box img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .sticky-nav {
        width: 90%;
        bottom: 15px;
        padding: 5px 10px;
    }

    .sticky-nav-item {
        flex: 1;
        width: auto;
    }

    .sticky-nav-item span {
        font-size: 8px;
    }
}

/* Clients Grid Styles */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.client-logo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.client-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    opacity: 1;
}

.client-logo-card:hover img {
    opacity: 1;
    transform: scale(1.08);
}

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

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-logo-card {
        height: 100px;
        padding: 5px;
    }
}

/* Portfolio CTA Styles */
.portfolio-cta {
    margin-top: 60px;
    padding: 60px 40px;
    background: #165A92;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
}

.portfolio-cta h3 {
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
}

.portfolio-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: #ffffff;
    color: #000000 !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn:hover {
    background: #20ba5a;
}

.email-btn:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .logo {
        margin: 20px auto 15px;
    }
    
    .portfolio-cta {
        padding: 40px 20px;
    }
    
    .portfolio-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}







/* Responsiveness for Mitra Bisnis Volten International */
@media (max-width: 768px) {
    .brand-name {
        font-size: clamp(20px, 6vw, 32px) !important;
        letter-spacing: 2px !important;
        white-space: nowrap !important;
    }
    .sub-brand {
        font-size: clamp(10px, 3.5vw, 16px) !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
        display: block !important;
        width: 100% !important;
        overflow: visible !important;
        word-break: keep-all !important;
    }
    .small-brand h3 {
        font-size: clamp(12px, 4vw, 16px) !important;
        white-space: nowrap !important;
    }
    .small-brand p {
        font-size: clamp(8px, 2.8vw, 12px) !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
    .section-header-small {
        padding: 6px 12px !important;
        gap: 6px !important;
        max-width: 95vw !important;
        left: 10px !important;
    }
    .small-logo {
        width: 32px !important;
        height: 32px !important;
    }
    .home-wrapper {
        padding: 0 !important;
        gap: 10px !important;
    }
    .header {
        width: 100% !important;
        padding: 0 5px !important;
    }
    .logo {
        width: 130px !important;
        height: 130px !important;
        margin-top: 16px !important;
    }
    .menu-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .menu-item {
        min-height: 160px !important;
        padding: 14px 8px 12px !important;
    }
    .menu-badge {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        min-height: 56px !important;
        font-size: 22px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
    }
    .menu-title {
        font-size: 10px !important;
        letter-spacing: 0.8px !important;
    }
    .menu-desc {
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 9px 10px 60px !important;
        margin: 20px 10px 30px !important;
        border-radius: 20px !important;
    }
}

/* ===== CONSOLIDATED STYLES ===== */

/* Hero Benefits Styles */
.hero-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 80px;
    transition: all 0.3s ease;
    cursor: default;
}
.hero-benefit-item:hover {
    transform: translateY(-5px);
}
.benefit-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 30%, rgba(0, 180, 255, 0.4), rgba(0, 51, 102, 0.6));
    border: 2px solid rgba(0, 180, 255, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 150, 220, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
    position: relative;
    transition: all 0.4s ease;
}
.benefit-badge::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #FFDF00;
    border-right-color: rgba(255, 223, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hero-benefit-item:hover .benefit-badge {
    background: rgba(255, 223, 0, 0.15);
    border-color: rgba(255, 223, 0, 0.5);
    transform: scale(1.1);
}
.hero-benefit-item:hover .benefit-badge::after {
    opacity: 1;
    animation: badgeSpin 2s linear infinite;
}
@keyframes badgeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.benefit-badge i {
    background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
.benefit-title {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    transition: all 0.3s ease;
}
.hero-benefit-item:hover .benefit-title {
    color: #ffffff;
    letter-spacing: 3px;
}
.gold-gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Volten Animated Badge */
@keyframes badgeBlinkGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(91, 192, 235, 0.5), inset 0 0 5px rgba(91, 192, 235, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px #5BC0EB, inset 0 0 15px rgba(91, 192, 235, 0.6);
        transform: scale(1.05);
    }
}
.volten-animated-badge {
    animation: badgeBlinkGlow 2s ease-in-out infinite !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}
.volten-animated-badge img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

/* Testimoni Carousel Styles */
.testimoni-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
}
.testimoni-carousel::-webkit-scrollbar { height: 8px; }
.testimoni-carousel::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
.testimoni-carousel::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.carousel-landscape {
    scroll-snap-align: start;
    flex: 0 0 85%;
    min-width: 280px;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.carousel-portrait {
    scroll-snap-align: start;
    flex: 0 0 60%;
    min-width: 200px;
    max-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

/* FAQ Styles */
.faq-group { margin-bottom: 40px; }
.faq-group-title { color: #004e92; font-size: 22px; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.faq-item { background: #ffffff; padding: 25px; border-radius: 20px; border: 1px solid rgba(0,78,146,0.1); margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); transition: transform 0.3s ease; }
.faq-item:hover { transform: translateY(-5px); border-color: #cc0000; }
.faq-question { color: #004e92; font-weight: 700; font-size: 16px; margin-bottom: 10px; line-height: 1.4; display: flex; align-items: flex-start; gap: 10px; }
.faq-question i { margin-top: 3px; font-size: 14px; }
.faq-answer { color: #1a1a2e; font-size: 15px; line-height: 1.6; margin: 0; padding-left: 24px; }

/* Membership Styles */
.package-card { background: #ffffff; padding: 30px; border-radius: 25px; border: 1px solid rgba(0,78,146,0.1); margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.package-card h3 { color: #004e92; font-size: 20px; font-weight: 800; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.package-table-container { overflow-x: auto; margin: 20px 0; border-radius: 20px; border: 1px solid rgba(0,0,0,0.05); }
.package-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.package-table th { background: #004e92; color: #ffffff; padding: 15px; text-align: center; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.package-table td { padding: 15px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; color: #1a1a2e; }
.package-table tr:last-child td { border-bottom: none; }
.package-table tr:nth-child(even) { background: rgba(0,78,146,0.02); }
.package-table .highlight-price { font-weight: 800; color: #cc0000; }
.zone-info { background: #f8f9fa; padding: 20px; border-radius: 15px; border-left: 5px solid #ffcc00; margin-top: 20px; }
.zone-info p { margin: 5px 0; font-size: 14px; color: #666; font-weight: 500; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .carousel-landscape { flex: 0 0 calc(33.333% - 14px); }
    .carousel-portrait { flex: 0 0 calc(25% - 15px); }
}

@media (max-width: 992px) {
    .header, .menu-grid { max-width: 100%; }
    .menu-grid { margin-top: 0; grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
    .carousel-landscape { flex: 0 0 calc(50% - 10px); }
    .carousel-portrait { flex: 0 0 calc(33.333% - 14px); }
    .volten-animated-badge { width: 56px !important; height: 56px !important; min-width: 56px !important; min-height: 56px !important; }
    .volten-animated-badge img { width: 38px !important; height: 38px !important; }
    .faq-group-title { font-size: 18px; }
    .faq-question { font-size: 15px; }
    .faq-answer { font-size: 14px; }
    
    #about .section-header-split { gap: 20px !important; margin-bottom: 30px !important; }
    #about h2 { font-size: 24px !important; }
    #about h3 { font-size: 18px !important; }
    #about p { font-size: 14px !important; line-height: 1.6 !important; }
    #about [style*="padding: 60px 40px"], 
    #about [style*="padding: 50px 40px"],
    #about [style*="padding: 40px 30px"],
    #about [style*="padding: 40px"] { 
        padding: 30px 20px !important; 
    }
    #about .split-video, #about .split-text { min-width: 100% !important; }
    #about [style*="display: grid"] { grid-template-columns: 1fr !important; gap: 15px !important; }
    #about .reward-grid-mobile div[style*="display: grid"],
    #about .value-card-mobile div[style*="display: grid"],
    #about .reward-grid-mobile[style*="display: grid"],
    #about .value-card-mobile[style*="display: grid"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-benefit-item { min-width: 85px; gap: 8px; }
    .benefit-badge { width: 55px; height: 55px; }
    .benefit-badge i { font-size: 1.2rem; }
    .benefit-title { font-size: 0.65rem; }
    .hero-benefits h3 { font-size: 0.9rem !important; letter-spacing: 0.5px !important; }
}
