@import url('../components-pengunjung/navbar.css');
@import url('../components-pengunjung/sticky-search.css');
@import url('../global-css/footer-pengunjung.css');

.premium-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg,#ffffff 0%,#fffef7 40%,#fff9e6 70%,#fff4d9 100%);
	overflow: hidden;
	padding: 100px 0 80px;
	color: #2c3e50;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.animated-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(255,241,0,0.08), rgba(255,237,78,0.12), rgba(255,215,0,0.08), rgba(255,241,0,0.08));
	background-size: 400% 400%;
	animation: gradientShift 12s ease-in-out infinite;
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
}

.element {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255,241,0,0.05), rgba(52,152,219,0.05));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,241,0,0.1);
	animation: floatElement 8s ease-in-out infinite;
}

.element-1 {
	width: 120px;
	height: 120px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
	background: linear-gradient(135deg, rgba(255,241,0,0.06), rgba(52,152,219,0.04));
}

.element-2 {
	width: 80px;
	height: 80px;
	top: 70%;
	right: 10%;
	animation-delay: 2s;
	background: linear-gradient(135deg, rgba(52,152,219,0.05), rgba(255,241,0,0.04));
}

.element-3 {
	width: 60px;
	height: 60px;
	top: 20%;
	right: 25%;
	animation-delay: 4s;
	background: linear-gradient(135deg, rgba(255,241,0,0.04), rgba(52,152,219,0.06));
}

.element-4 {
	width: 100px;
	height: 100px;
	bottom: 20%;
	left: 20%;
	animation-delay: 1s;
	background: linear-gradient(135deg, rgba(52,152,219,0.04), rgba(255,241,0,0.05));
}

.element-5 {
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	animation-delay: 3s;
	background: linear-gradient(135deg, rgba(255,241,0,0.05), rgba(52,152,219,0.05));
}

.element-6 {
	width: 70px;
	height: 70px;
	top: 30%;
	left: 70%;
	animation-delay: 5s;
	background: linear-gradient(135deg, rgba(52,152,219,0.05), rgba(255,241,0,0.04));
}

.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(52,152,219,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(52,152,219,0.02) 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 10;
	color: #2c3e50;
}

.hero-badges {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.badge-trending, .badge-users {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255,241,0,0.3);
	border-radius: 50px;
	padding: 10px 20px;
	font-size: 0.85rem;
	font-weight: 600;
	animation: slideInUp 0.8s ease-out 0.2s both;
	color: #2c3e50;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.badge-trending {
	background: rgba(255,241,0,0.15);
	border-color: rgba(255,241,0,0.4);
}

.badge-users {
	background: rgba(52,152,219,0.15);
	border-color: rgba(52,152,219,0.4);
}

.hero-title {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
	animation: slideInUp 0.8s ease-out 0.4s both;
	color: #2c3e50;
	text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gradient-text {
	background: linear-gradient(135deg,#fff100,#d68910,#3498db);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 200%;
	animation: gradientTextShift 4s ease-in-out infinite;
}

.hero-description {
	font-size: 1.3rem;
	line-height: 1.6;
	margin-bottom: 40px;
	font-weight: 400;
	animation: slideInUp 0.8s ease-out 0.6s both;
	max-width: 90%;
	color: #34495e;
}

.hero-description strong {
	background: linear-gradient(135deg,#fff100,#ffd700);
	padding: 2px 8px;
	border-radius: 6px;
	font-weight: 700;
	color: #2c3e50;
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 50px;
	animation: slideInUp 0.8s ease-out 0.8s both;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255,241,0,0.2);
	border-radius: 15px;
	padding: 20px;
	transition: all 0.3s ease;
	color: #2c3e50;
}

.feature-item:hover {
	background: rgba(255,255,255,0.95);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border-color: #fff100;
}

.feature-icon {
	font-size: 2rem;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg,#fff100,#ffd700);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #2c3e50;
	box-shadow: 0 4px 15px rgba(255,241,0,0.3);
}

.feature-text strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 4px;
}

.feature-text span {
	opacity: 0.8;
	font-size: 0.9rem;
}

.hero-visual {
	position: relative;
	z-index: 10;
	animation: slideInUp 0.8s ease-out 0.8s both;
}

.visual-card {
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(25px);
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
	border: 1px solid rgba(255,241,0,0.2);
	color: #2c3e50;
	position: relative;
	overflow: hidden;
}

.visual-card.floating {
	animation: cardFloat 6s ease-in-out infinite;
}

.card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.card-dots {
	display: flex;
	gap: 6px;
}

.card-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff6b6b;
}

.card-dots span:nth-child(2) {
	background: #feca57;
}

.card-dots span:nth-child(3) {
	background: #48cab2;
}

.card-title {
	font-weight: 700;
	color: #2c3e50;
}

.stat-row {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}

.stat {
	flex: 1;
	text-align: center;
}

.stat-label {
	font-size: 0.8rem;
	color: #7f8c8d;
	margin-bottom: 5px;
}

.stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	color: #2c3e50;
	margin-bottom: 3px;
}

.stat-value.success {
	color: #27ae60;
}

.stat-trend {
	font-size: 0.75rem;
	font-weight: 600;
}

.stat-trend.up {
	color: #27ae60;
}

.chart-area {
	margin-bottom: 20px;
	height: 80px;
	position: relative;
}

.chart-title {
	font-size: 0.8rem;
	color: #7f8c8d;
	margin-bottom: 10px;
	text-align: center;
}

.chart-bars {
	display: flex;
	align-items: end;
	gap: 8px;
	height: 60px;
}

.bar {
	flex: 1;
	background: linear-gradient(to top,#3498db,#5dade2);
	border-radius: 4px 4px 0 0;
	animation: barGrow 1s ease-out;
	min-height: 10px;
}

.notification-popup {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 15px;
	animation: slideInRight 1s ease-out 2s both;
}

.notif-icon {
	font-size: 1.2rem;
}

.notif-text strong {
	color: #2c3e50;
	font-size: 0.9rem;
}

.notif-text span {
	color: #7f8c8d;
	font-size: 0.8rem;
}

.floating-stats {
	position: absolute;
	top: -20px;
	right: -20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mini-stat {
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(15px);
	border-radius: 15px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border: 1px solid rgba(255,255,255,0.3);
	animation: miniStatFloat 4s ease-in-out infinite;
	min-width: 80px;
}

.mini-stat:nth-child(2) {
	animation-delay: 1s;
}

.mini-stat:nth-child(3) {
	animation-delay: 2s;
}

.mini-icon {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.mini-count {
	font-size: 1rem;
	font-weight: 800;
	color: #2c3e50;
	margin-bottom: 2px;
}

.mini-label {
	font-size: 0.7rem;
	color: #7f8c8d;
	font-weight: 600;
}

.mini-stat.package-gratis {
	background: linear-gradient(135deg,#ecf0f1,#bdc3c7);
	border: 2px solid #95a5a6;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mini-stat.package-gratis:hover {
	background: linear-gradient(135deg,#bdc3c7,#95a5a6);
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 15px 35px rgba(149,165,166,0.4);
}

.mini-stat.package-gratis .mini-count {
	color: #2c3e50;
	font-weight: 800;
}

.mini-stat.package-juragankost {
	background: linear-gradient(135deg,#fff100,#ffd700);
	border: 2px solid #d68910;
	color: #2c3e50;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mini-stat.package-juragankost:hover {
	background: linear-gradient(135deg,#e6c200,#cc9900);
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 15px 35px rgba(255,241,0,0.5);
}

.mini-stat.package-juragankost .mini-count {
	color: #2c3e50;
	font-weight: 800;
}

.mini-stat.package-juragankost .mini-label {
	color: rgba(44,62,80,0.8);
}

.mini-stat.package-premium {
	background: linear-gradient(135deg,#9b59b6,#8e44ad);
	border: 2px solid #8e44ad;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mini-stat.package-premium::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.6s;
	opacity: 0;
}

.mini-stat.package-premium:hover::before {
	animation: shimmer 0.6s ease-in-out;
}

.mini-stat.package-premium:hover {
	background: linear-gradient(135deg,#8e44ad,#7d3c98);
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 15px 35px rgba(155,89,182,0.5);
}

.mini-stat.package-premium .mini-count {
	color: white;
	font-weight: 900;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mini-stat.package-premium .mini-label {
	color: rgba(255,255,255,0.9);
}

.mini-stat.package-premium .mini-icon {
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-pricing {
	min-height: 100vh;
	padding: 80px 0;
	background: linear-gradient(120deg,#fffbe6,#fffde4);
}

.section-pricing .pricing-table {
	background: linear-gradient(135deg,#fff 0%,#fffde4 60%,#fffbe6 100%);
}

.section-pricing .container {
	position: relative;
}

.pricing-main {
	transition: opacity 0.3s;
}

.pricing-period-selector {
	margin: 40px 0;
	text-align: center;
}

.period-label {
	font-size: 1.2rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.period-tabs {
	display: inline-flex;
	background: linear-gradient(90deg,#fffde4 60%,#fffbe6 100%);
	border: 2px solid #fff100;
	border-radius: 15px;
	padding: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.period-tab {
	padding: 15px 30px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	text-align: center;
	min-width: 140px;
	position: relative;
	margin: 0 5px;
	background: transparent;
	color: #2c3e50;
}

.period-tab:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.period-tab.active {
	background: linear-gradient(135deg,#fff100 60%,#ffe066 100%);
	color: #2c3e50;
	box-shadow: 0 4px 16px rgba(255,241,0,0.13);
}

.period-tab .tab-title {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.period-tab .tab-subtitle {
	display: block;
	font-size: 0.85rem;
	opacity: 0.8;
	font-weight: 500;
}

.period-tab.active .tab-subtitle {
	opacity: 0.9;
}

.section-pricing .pricing-table {
	background: linear-gradient(135deg,#fffde4 0%,#fffbe6 100%);
	width: calc((100% / 3) - 70px);
	margin: 0 35px;
	border-radius: 20px;
	height: 760px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 10px 40px rgba(255,241,0,0.10);
	border: 1px solid #fff100;
	transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
	display: inline-block;
	vertical-align: top;
}

.section-pricing .pricing-table:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
	border-color: rgba(52,152,219,0.3);
}

.section-pricing .pricing-table.featured {
	transform: scale(1.05);
	z-index: 10;
	box-shadow: 0 20px 60px rgba(255,241,0,0.18);
}

.section-pricing .pricing-table.featured::before {
	content: "Terpopuler";
	position: absolute;
	top: 16px;
	right: -48px;
	width: 160px;
	height: 28px;
	background: linear-gradient(135deg,#ff9800 60%,#ffc107 100%);
	color: #fff;
	font-size: 0.8rem;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(231,76,60,0.18);
	z-index: 20;
	transform: rotate(45deg);
	pointer-events: none;
}

.section-pricing .pricing-table-header {
	padding: 40px 30px 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(135deg,#fff100 0%,#ffe066 100%);
	border-bottom: 1px solid #ffe066;
}

.section-pricing .pricing-table-price {
	padding: 25px 0 35px;
	display: flex;
	background: linear-gradient(135deg, rgba(52,152,219,0.02), rgba(155,89,182,0.02));
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-pricing .yearly-price, .section-pricing .monthly-price {
	display: flex;
	padding: 0 30px;
	justify-content: center;
	width: 100%;
	flex-shrink: 0;
	transition: all 0.5s ease;
	align-items: baseline;
}

.section-pricing .pricing-main:not(.active) .monthly-price {
	display: flex;
}

.section-pricing .pricing-main:not(.active) .yearly-price {
	display: none;
}

.section-pricing .pricing-main.active .monthly-price {
	display: none;
}

.section-pricing .pricing-main.active .yearly-price {
	display: flex;
}

.section-pricing .pricing-table-price .currency {
	font-size: 1.2rem;
	color: #2c3e50;
	font-weight: 700;
	line-height: 1;
	margin-right: 4px;
}

.section-pricing .pricing-table-price .amount {
	font-size: 2.8rem;
	color: #2c3e50;
	font-weight: 800;
	line-height: 0.9;
	text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-pricing .pricing-table-price .per-category {
	font-size: .85rem;
	font-weight: 600;
	color: #7f8c8d;
	align-self: flex-end;
	margin-left: 8px;
	margin-bottom: 8px;
}

.section-pricing .pricing-table-body {
	padding: 20px 30px 80px 30px;
}

.section-pricing .pricing-table-body .body-pricing {
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #2c3e50;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #ecf0f1;
	padding-bottom: 10px;
}

.section-pricing .pricing-table-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-pricing .pricing-table-body ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.section-pricing .pricing-table-body ul li .icon-sm {
    display: flex;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
    box-shadow: 0 2px 6px rgba(39, 113, 174, 0.3);
}

.section-pricing .pricing-table-body ul li .icon-sm svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

/* Fallback untuk struktur SVG yang berbeda */
.section-pricing .pricing-table-body ul li svg {
    display: flex;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
    box-shadow: 0 2px 6px rgba(39, 113, 174, 0.3);
    padding: 4px;
    fill: currentColor;
}

/* Jika menggunakan span wrapper */
.section-pricing .pricing-table-body ul li span[class*="icon"] {
    display: flex;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
    box-shadow: 0 2px 6px rgba(39, 113, 174, 0.3);
}

.section-pricing .pricing-table-body ul li span[class*="icon"] svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    background: none;
    box-shadow: none;
    position: relative;
    padding: 0;
}

/* Remove any existing bullet styling */
.section-pricing .pricing-table-body ul li::before {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-pricing .pricing-table-body ul li {
        padding-left: 30px;
        font-size: 13px;
    }
    
    .section-pricing .pricing-table-body ul li .icon-sm,
    .section-pricing .pricing-table-body ul li svg,
    .section-pricing .pricing-table-body ul li span[class*="icon"] {
        width: 18px;
        height: 18px;
        top: 1px;
    }
    
    .section-pricing .pricing-table-body ul li .icon-sm svg,
    .section-pricing .pricing-table-body ul li span[class*="icon"] svg {
        width: 9px;
        height: 9px;
    }
}

.section-pricing .pricing-table-body ul li {
	font-weight: 400;
	color: #5a6c7d;
	margin-bottom: 12px;
	position: relative;
	padding-left: 35px;
	font-size: 0.85rem;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.section-pricing .pricing-table-body ul li:hover {
	color: #2c3e50;
}

.section-pricing .monthly-features, .section-pricing .yearly-features {
	display: none;
}

.section-pricing .pricing-main:not(.active) .monthly-features, .section-pricing .pricing-main.active .yearly-features {
	display: block;
	animation: fadeIn 0.5s ease forwards;
}

.section-pricing .pricing-table-header .title-pricing {
	font-size: 1.4rem;
	font-weight: 700;
	margin-top: 0;
	color: #22313a;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 2px rgba(255,255,255,0.15);
	background: none;
}

/* Jika struktur SVG berbeda, adjust sesuai output dari _icon-functions.tpl */
.section-pricing .pricing-table-body ul li [class*="icon-"] {
    display: flex;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1px;
    box-shadow: 0 2px 6px rgba(39, 113, 174, 0.3);
}

.section-pricing .pricing-table-body ul li [class*="icon-"] svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.section-pricing .pricing-table-footer {
	text-align: center;
	padding: 20px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 60px);
}

.section-pricing .pricing-table-footer .pricing-footer-see {
	margin: 0 0 20px 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #b59f00;
	cursor: pointer;
	transition: color 0.3s ease;
	text-decoration: underline;
}

.section-pricing .pricing-table-footer .pricing-footer-see:hover {
	color: #b59f00;
}

.section-pricing .pricing-table-footer a {
	display: inline-block;
	padding: 15px 40px;
	color: #222;
	background: linear-gradient(135deg,#fff100 0%,#ffe066 100%);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	box-shadow: 0 8px 32px 0 rgba(255,193,7,0.18), 0 2px 8px 0 rgba(255,241,0,0.12);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: 100%;
	border: none;
}

.section-pricing .pricing-table-footer a:hover {
	background: linear-gradient(135deg,#ffe066 0%,#fff100 100%);
	color: #222;
	box-shadow: 0 12px 36px rgba(255,193,7,0.22);
	transform: translateY(-2px) scale(1.03);
}
.section-pricing .pricing-table-footer a.not-active {
    background: rgba(255,255,255,0.5);
    color: rgba(44,62,80,0.5);
    cursor: not-allowed;
    box-shadow: none;
    cursor: not-allowed;
}
.section-header {
	margin-bottom: 60px !important;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #2c3e50;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg,#fff100,#ffdb00);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #6c757d;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.section-subtitle small {
	font-size: 0.85rem;
	color: #95a5a6;
	font-style: italic;
}

.promo-banner {
	background: linear-gradient(90deg,#fff100 0%,#ffe066 60%,#ffd24d 100%);
	border-radius: 20px;
	padding: 25px;
	margin: 40px 0;
	box-shadow: 0 8px 32px 0 rgba(255,193,7,0.10);
	overflow: hidden;
	position: relative;
}

.promo-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 100px;
	height: 200%;
	background: rgba(255,255,255,0.1);
	transform: rotate(20deg);
}

.promo-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: white;
	position: relative;
	z-index: 2;
}

.promo-icon {
	font-size: 2rem;
	margin-right: 20px;
	animation: bounce 2s infinite;
}

.promo-text {
	flex: 1;
	font-size: 1.1rem;
	line-height: 1.4;
	color: black;
}

.promo-text strong {
	font-weight: 700;
	font-size: 1.2rem;
}

.promo-badge {
	background: white;
	color: black;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	border: 2px solid rgba(255,255,255,0.3);
	box-shadow: 0 2px 8px rgba(255,193,7,0.10);
	backdrop-filter: blur(10px);
}

.pricing-real {
	padding: 15px 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 12px;
	min-height: 60px;
}

.section-pricing .pricing-real .monthly-price, .section-pricing .pricing-real .yearly-price {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.section-pricing .pricing-main:not(.active) .pricing-real .monthly-price {
	display: flex;
}

.section-pricing .pricing-main:not(.active) .pricing-real .yearly-price {
	display: none;
}

.section-pricing .pricing-main.active .pricing-real .monthly-price {
	display: none;
}

.section-pricing .pricing-main.active .pricing-real .yearly-price {
	display: flex;
}

.pricing-real-ribbon {
	border-radius: 8px;
	color: var(--white);
	display: inline-block;
	height: auto;
	padding: 8px 12px;
	position: relative;
	width: max-content;
	font-weight: 700;
	font-size: .75rem;
	letter-spacing: .5px;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	white-space: nowrap;
}

.pricing-real-ribbon-color {
	background: linear-gradient(135deg,#27ae60,#2ecc71);
}

.pricing-real-ribbon-color:after {
	display: none;
}

.pricing-real-discount {
	opacity: .8;
	padding: 0;
	margin: 0;
	text-decoration: line-through;
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .02rem;
	color: #95a5a6;
	text-align: center;
	white-space: nowrap;
}

.section-pricing .pricing-table.package-highlight {
	transform: scale(1.08);
	border-color: #f39c12 !important;
	box-shadow: 0 25px 80px rgba(243,156,18,0.3) !important;
	animation: packagePulse 0.6s ease-in-out;
}

#paket-comparison-section {
	padding: 4rem 2rem;
	background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
	position: relative;
	overflow: visible;
}

#paket-comparison-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(255,193,7,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0,123,255,0.1) 0%, transparent 50%);
	pointer-events: none;
}

#paket-comparison-section .paket-container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

#paket-comparison-section .paket-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

#paket-comparison-section .paket-col-12 {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 15px;
}

#paket-comparison-section .paket-title-main {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 0.5rem;
	text-align: center;
	background: linear-gradient(135deg,#fff100 0%,#3498db 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

#paket-comparison-section .paket-description {
	text-align: center;
	color: #6c757d;
	font-size: 1.1rem;
	margin-bottom: 3rem;
	padding: 0px 0px 20px;
}

.paket-comparison-wrapper {
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	position: relative;
	overflow: visible;
}

.paket-comparison-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg,#ffd700,#ff6b35,#007bff,#28a745);
	animation: paket-shimmer 3s ease-in-out infinite;
	border-radius: 20px 20px 0 0;
}

#paket-comparison-table {
	border: 0;
	text-align: center;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	background: transparent !important;
	border-radius: 15px;
	overflow: visible;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	position: relative;
}

#paket-comparison-table tr:first-child {
	background: linear-gradient(135deg,#ffd700 0%,#ffed4e 100%);
	position: relative;
}

#paket-comparison-table tr:first-child::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

#paket-comparison-table tr {
	border: 0;
	transition: all 0.3s ease;
	position: relative;
}

#paket-comparison-table tr:nth-child(even) {
	background: rgba(255,255,224,0.5);
}

#paket-comparison-table tr:nth-child(odd) {
	background: rgba(255,255,255,0.8);
}

#paket-comparison-table td:first-child {
	border: 0;
	text-align: left;
	padding: 20px 30px;
	font-weight: 600;
	color: #2c3e50;
	font-size: 0.95rem;
	position: relative;
	background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
	border-right: 3px solid #dee2e6;
}

#paket-comparison-table td:first-child::before {
	content: '●';
	color: #007bff;
	margin-right: 10px;
	font-size: 0.8rem;
}

#paket-comparison-table td:not(:first-child) {
	border: 0;
	background: rgba(255,255,255,0.9);
	padding: 18px 15px;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
	text-align: center;
	color: #2c3e50;
}

#paket-comparison-table tr:hover {
	background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,248,255,0.95) 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(0,123,255,0.15);
	z-index: 10;
	position: relative;
}

#paket-comparison-table tr:hover td:not(:first-child) {
	background: transparent;
	color: #2c3e50;
	font-weight: 600;
}

#paket-comparison-table tr:hover td:first-child {
	background: linear-gradient(135deg,#007bff 0%,#0056b3 100%);
	color: #fff;
	border-radius: 10px 0 0 10px;
}

.paket-header-column {
	text-align: center;
	padding: 25px 20px;
	background: linear-gradient(135deg,#ffd700 0%,#ffed4e 100%) !important;
	color: #22313a !important;
	box-shadow: none !important;
	position: relative;
	overflow: hidden;
}

.paket-header-column:first-child {
	border-radius: 10px 0 0 0 !important;
}

.paket-header-column:last-child {
	border-radius: 0 10px 0 0 !important;
}

.paket-header-column:not(:first-child):not(:last-child) {
	border-radius: 0 !important;
}

.paket-header-column::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
	animation: paket-header-shine 4s ease-in-out infinite;
}

.paket-header-column .paket-name-title {
	margin: 0 0 15px 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: #22313a !important;
	text-shadow: none !important;
	position: relative;
	z-index: 1;
}

.paket-header-column .paket-select-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #fff !important;
	color: #22313a !important;
	border: 2px solid #fff100 !important;
	box-shadow: 0 8px 32px 0 rgba(255,193,7,0.13), 0 2px 8px 0 rgba(255,241,0,0.10);
	font-weight: 700;
	transition: all 0.2s;
	position: relative;
	z-index: 1;
	text-decoration: none;
	border-radius: 25px;
	backdrop-filter: blur(10px);
}

.paket-header-column .paket-select-btn:hover, .paket-header-column .paket-select-btn:active, .paket-header-column .paket-select-btn:focus {
	background: rgba(255,255,255,0.05) !important;
	color: #22313a !important;
	border: 2px solid #fff100 !important;
	box-shadow: 0 8px 32px 0 rgba(255,193,7,0.10), 0 2px 8px 0 rgba(255,241,0,0.08);
	transform: none !important;
	cursor: pointer;
}

.paket-header-column .paket-select-btn.paket-inactive {
	display: inline-block;
	padding: 12px 30px;
	color: #6c757d;
	background: rgba(108,117,125,0.1);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	border-radius: 25px;
	border: 2px solid #dee2e6;
	position: relative;
	z-index: 1;
	opacity: 0.6;
}

.paket-header-column .paket-select-btn.paket-inactive:hover {
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.paket-info-tooltip {
	cursor: pointer;
	position: relative;
	background: linear-gradient(135deg,#007bff,#0056b3);
	color: white;
	border: 2px solid rgba(255,255,255,0.9);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 11px;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	text-align: center;
	line-height: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,123,255,0.4);
	z-index: 1;
}

.paket-info-tooltip:hover {
	background: linear-gradient(135deg,#0056b3,#004085);
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0,123,255,0.6);
	z-index: 999999;
}

.paket-info-tooltip .paket-tooltip-content {
	display: none;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	background: rgba(44,62,80,0.95);
	color: white;
	padding: 16px 20px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	z-index: 999999;
	box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
	width: 350px;
	max-width: 350px;
	white-space: normal;
	word-wrap: break-word;
	text-align: left;
	pointer-events: none;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid rgba(255,255,255,0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.paket-info-tooltip:hover .paket-tooltip-content {
	display: block;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.paket-info-tooltip .paket-tooltip-content::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-right-color: rgba(44,62,80,0.95);
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
}

.paket-info-tooltip .paket-tooltip-content .paket-tooltip-highlight {
	color: #ffd700;
	font-weight: 700;
	background: rgba(255,215,0,0.1);
	padding: 1px 3px;
	border-radius: 3px;
}

.paket-notes-box {
	font-size: 12px;
	padding: 20px 30px 15px 15px;
	color: #6c757d;
	background: rgba(255,255,255,0.8);
	border-radius: 10px;
	margin-top: 20px;
	border-left: 4px solid #007bff;
}

@keyframes gradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

@keyframes floatElement {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.4;
	}

	50% {
		transform: translateY(-30px) rotate(180deg);
		opacity: 0.7;
	}
}

@keyframes gradientTextShift {
	0%, 100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

@keyframes cardFloat {
	0%, 100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes barGrow {
	from {
		height: 0;
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes miniStatFloat {
	0%, 100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes shimmer {
	0% {
		opacity: 0;
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%, 20%, 53%, 80%, 100% {
		transform: translateY(0);
	}

	40%, 43% {
		transform: translateY(-10px);
	}

	70% {
		transform: translateY(-5px);
	}

	90% {
		transform: translateY(-2px);
	}
}

@media (max-width: 991px) {
	.premium-hero {
		min-height: 80vh;
		padding: 80px 0 60px;
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-description {
		font-size: 1.1rem;
		max-width: 100%;
	}

	.floating-stats {
		position: static;
		flex-direction: row;
		justify-content: center;
		margin-top: 20px;
	}

	.hero-features {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.premium-hero {
		min-height: 70vh;
		padding: 60px 0 40px;
	}

	.hero-title {
		font-size: 2.5rem;
		line-height: 1.2;
	}

	.hero-description {
		font-size: 1rem;
		padding: 0 10px;
	}

	.hero-badges {
		justify-content: center;
		flex-wrap: wrap;
	}

	.badge-trending, .badge-users {
		font-size: 0.8rem;
		padding: 8px 16px;
	}

	.hero-features {
		gap: 15px;
	}

	.feature-item {
		padding: 15px;
		text-align: center;
		flex-direction: column;
		gap: 10px;
	}

	.feature-item:hover {
		transform: translateY(-5px);
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.visual-card {
		margin-top: 30px;
		padding: 20px;
	}

	.stat-row {
		gap: 15px;
	}

	.stat-value {
		font-size: 1.2rem;
	}

	.floating-stats {
		gap: 10px;
	}

	.mini-stat {
		padding: 10px;
		min-width: 70px;
	}

	.element {
		opacity: 0.4;
	}

	.element-1, .element-4 {
		width: 80px;
		height: 80px;
	}

	.element-2, .element-3, .element-6 {
		width: 50px;
		height: 50px;
	}

	.element-5 {
		width: 30px;
		height: 30px;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes packagePulse {
	0% {
		transform: scale(1.05);
		box-shadow: 0 20px 60px rgba(243,156,18,0.2);
	}

	50% {
		transform: scale(1.12);
		box-shadow: 0 30px 90px rgba(243,156,18,0.4);
	}

	100% {
		transform: scale(1.08);
		box-shadow: 0 25px 80px rgba(243,156,18,0.3);
	}
}

@media(max-width: 1024px) {
	.section-pricing .pricing-table {
     	width: calc(60% - 20px);
        margin-bottom: 40px;
        height: 780px;
        margin-left: auto;
        margin-right: auto;
	}
}
@media(max-width: 991px) {
	.section-pricing .pricing-table {
		width: 70%;
        margin-bottom: 40px;
        height: 760px;
        margin-left: auto;
        margin-right: auto;
	}

	.section-pricing .pricing-table.featured {
		transform: none;
		margin-bottom: 50px;
	}

	.section-pricing .pricing-table-footer {
		bottom: 15px;
		width: calc(100% - 40px);
	}

	.section-pricing .pricing-table-footer a {
		padding: 12px 30px;
		font-size: 0.85rem;
	}

	.section-pricing .pricing-table-body {
		padding: 20px 30px 60px 30px;
	}

	.pricing-real {
		padding: 12px 0 6px;
		min-height: 50px;
		gap: 10px;
	}

	.pricing-real-discount {
		font-size: .75rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.promo-content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.promo-icon {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

@media(max-width: 767px) {
	.section-pricing .pricing-table {
		width: calc(100% - 20px);
		height: 680px;
		margin: 0 10px 30px 10px;
	}

	.section-pricing .pricing-table:last-child {
		height: 680px;
	}

	.section-pricing .pricing-table.featured {
		transform: none;
		border-color: #3498db;
		margin-bottom: 40px;
	}

	.section-pricing .pricing-table.featured::before {
		top: 12px;
		right: -38px;
		width: 120px;
		height: 24px;
		font-size: 0.75rem;
		padding: 0;
		border-radius: 5px;
		transform: rotate(45deg);
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 20;
	}

	.section-pricing .pricing-table-header {
		padding: 25px 20px 15px 20px;
	}

	.section-pricing .pricing-table-body {
		padding: 15px 20px 60px 20px;
	}

	.section-pricing .pricing-table-footer {
		bottom: 15px;
		width: calc(100% - 40px);
	}

	.section-pricing .pricing-table-footer a {
		padding: 12px 20px;
		font-size: 0.8rem;
	}

	.pricing-real {
		padding: 15px 0 10px;
		min-height: 60px;
		gap: 10px;
		flex-wrap: wrap;
	}

	.pricing-real-ribbon {
		font-size: .75rem;
		padding: 6px 10px;
	}

	.pricing-real-discount {
		font-size: .8rem;
	}

	.section-pricing .pricing-table-price {
		padding: 20px 0 25px;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.section-subtitle {
		font-size: 1rem;
		padding: 0 15px;
	}

	.promo-banner {
		margin: 30px 15px;
		padding: 20px;
	}

	.promo-text {
		font-size: 1rem;
	}

	.promo-text strong {
		font-size: 1.1rem;
	}
}

@keyframes paket-shimmer {
	0%, 100% {
		opacity: 0.8;
	}

	50% {
		opacity: 1;
	}
}

@keyframes paket-header-shine {
	0%, 100% {
		transform: translateX(-100%);
	}

	50% {
		transform: translateX(100%);
	}
}

@media(max-width: 991px) {
	#paket-comparison-section {
		padding: 1.5rem 0.5rem;
	}

	#paket-comparison-section td:first-child {
		padding: 15px 10px 15px 10px;
	}

	.paket-info-tooltip {
		width: 16px;
		height: 16px;
		font-size: 10px;
		line-height: 12px;
		margin-left: 5px;
	}

	.paket-info-tooltip .paket-tooltip-content, .paket-info-tooltip:hover .paket-tooltip-content {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
	}
}

@media(max-width: 767px) {
	#paket-comparison-section {
		padding: 1.5rem 0.5rem;
		overflow: visible;
	}

	#paket-comparison-section .paket-title-main {
		font-size: 1.6rem;
		margin-bottom: 0.8rem;
	}

	#paket-comparison-section .paket-description {
		font-size: 0.95rem;
		margin-bottom: 2rem;
	}

	.paket-comparison-wrapper {
		padding: 0.8rem;
		border-radius: 12px;
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
		position: relative;
		z-index: 1;
		scrollbar-width: thin;
		scrollbar-color: #007bff #f1f1f1;
	}

	.paket-comparison-wrapper::-webkit-scrollbar {
		height: 8px;
	}

	.paket-comparison-wrapper::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 10px;
	}

	.paket-comparison-wrapper::-webkit-scrollbar-thumb {
		background: linear-gradient(135deg,#007bff,#0056b3);
		border-radius: 10px;
	}

	.paket-comparison-wrapper::-webkit-scrollbar-thumb:hover {
		background: linear-gradient(135deg,#0056b3,#004085);
	}

	#paket-comparison-table {
		min-width: 650px;
		overflow: visible;
		position: relative;
		z-index: 2;
		font-size: 0.9rem;
	}

	#paket-comparison-table td:first-child {
		padding: 12px 15px !important;
		font-size: 0.8rem !important;
		position: relative;
		z-index: 3;
		min-width: 140px;
	}

	#paket-comparison-table td:not(:first-child) {
		padding: 12px 8px !important;
		font-size: 0.8rem !important;
		position: relative;
		z-index: 3;
		min-width: 100px;
	}

	#paket-comparison-table tr:hover {
		z-index: 5 !important;
	}

	.paket-header-column {
		padding: 16px 12px !important;
		position: relative;
		z-index: 3;
	}

	.paket-header-column .paket-name-title {
		font-size: 1rem !important;
		margin-bottom: 8px !important;
	}

	.paket-header-column .paket-select-btn {
		font-size: 0.8rem !important;
		padding: 8px 12px !important;
	}

	.paket-info-tooltip {
		width: 14px;
		height: 14px;
		font-size: 9px;
		line-height: 12px;
		margin-left: 3px;
	}

	.paket-info-tooltip .paket-tooltip-content, .paket-info-tooltip:hover .paket-tooltip-content {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
	}
}

/* ====== MODAL STYLES ====== */
.paket-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: modalOverlayFadeIn 0.3s ease;
}

.paket-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalOverlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.paket-modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 90vw;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    animation: modalContentSlideIn 0.3s ease;
}

@keyframes modalContentSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.paket-modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 20px 25px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.paket-modal-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.paket-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.paket-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.paket-modal-body {
    padding: 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #007bff #f1f1f1;
}

.paket-modal-body::-webkit-scrollbar {
    width: 6px;
}

.paket-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.paket-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 10px;
}

.paket-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
}

.paket-modal-body .paket-tooltip-highlight {
    color: #007bff;
    font-weight: 700;
    background: rgba(0, 123, 255, 0.1);
    padding: 2px 6px;
    border-radius: 5px;
}

@media(max-width: 767px) {
    .paket-modal-content {
        width: 95vw;
        max-width: 95vw;
        margin: 10px;
    }
    
    .paket-modal-header {
        padding: 15px 20px;
    }
    
    .paket-modal-title {
        font-size: 16px;
    }
    
    .paket-modal-body {
        padding: 20px;
        font-size: 13px;
    }
}

/* SVG Icon styling untuk tabel paket */
.paket td svg.icon-sm {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
}

.paket td svg.icon-success {
    color: #28a745;
    fill: currentColor;
}

.paket td svg.icon-danger {
    color: #dc3545;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    .paket td svg.icon-sm {
        width: 16px;
        height: 16px;
    }
}

/* ========= STICKY SEARCH CUSTOMIZATION FOR PROPERTY PAGE ========= */
/* Hide sticky search input on property pages - not needed here */
#stickySearchInput {
    display: none !important;
}

/* Hide sticky search bar on mobile for property pages */
@media (max-width: 768px), 
       (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .sticky-search-bar {
        display: none !important;
    }
}