:root {
	--primary: #2c3e50;
	--secondary: #3498db;
	--accent: #e74c3c;
	--light: #ecf0f1;
	--dark: #2c3e50;
	--success: #27ae60;
	--warning: #f39c12;
	--orange: #ff9800;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--radius: 8px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
	background-color: #f5f7fa;
	color: #333;
	line-height: 1.6;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
/* Header Styles */
header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
	color: var(--orange);
	padding: 5px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow);
}
.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	display: flex;
	align-items: center;
	gap: 15px;
}
.logo-img {
	width: 50px;
	height: 50px;
	background: var(--orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	color: var(--primary);
	padding: 5px;
	text-align: center;
	border: 2px solid var(--secondary);
}
.logo-text {
	font-size: 22px;
	font-weight: 700;
}
.logo-text h1 {
	font-size: 24px;
}
.logo-text p {
	font-size: 10px;
	font-weight: 400;
	font-style: italic;
}
nav ul {
	display: flex;
	list-style: none;
	gap: 25px;
	align-items: center;
}
nav a {
	color: var(--orange);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 5px 10px;
	border-radius: var(--radius);
}
nav a:hover, nav a.active {
	background-color: rgba(255, 255, 255, 0.2);
}
.language-switcher {
	display: flex;
	gap: 10px;
}
.lang-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--orange);
	padding: 5px 10px;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.3s ease;
}
.lang-btn.active {
	background-color: var(--secondary);
	border-color: var(--secondary);
}
.header-btn {
	font-size: 12px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--orange);
	padding: 5px 10px;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.3s ease;
}
.header-btn.active {
	background-color: var(--secondary);
	border-color: var(--secondary);
}
/* Hero Section */
.hero {
	background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1350&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 80px 0;
	text-align: center;
}
.hero h1 {
	font-size: 2.8rem;
	margin-bottom: 20px;
}
.hero p {
	font-size: 1.2rem;
	max-width: 730px;
	margin: 0 auto 30px;
}
.hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}
.btn {
	display: inline-block;
	background-color: var(--secondary);
	color: white;
	padding: 12px 25px;
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}
.btn:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}
.btn-accent {
	background-color: var(--accent);
}
.btn-accent:hover {
	background-color: #c0392b;
}
.btn-complete {
	background-color: var(--success);
}
.btn-complete:hover {
	background-color: #c0392b;
}
.btn-cancel {
	background-color: #fff;
	border: 1px solid;
	color: #000;
}
.btn-cancel:hover {
	background-color: var(--primary);
	color: #fff;
}
.disable {
	background: #ccc;
	color: #666;
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.7;
	border: 1px solid #000;
}
.disable:hover {
	background: #ccc;
	color: #666;
}
/* Main Content */
.section {
	padding: 60px 0;
}
#vvc_admin .section {
	padding: 0 0 60px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 40px;
	color: var(--primary);
	position: relative;
}
.section-title:after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--secondary);
	margin: 15px auto;
	border-radius: 2px;
}
/* Announcements */
.announcements {
	background-color: orange;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 10px;
	margin-bottom: 30px;
}
.announcement {
	padding: 15px;
	border-left: 4px solid var(--secondary);
	background: white;
	margin-bottom: 15px;
	border-radius: 0 var(--radius) var(--radius) 0;
}
.announcement h3 {
	color: var(--primary);
	margin-bottom: 8px;
}
.announcement-date {
	color: #7f8c8d;
	font-size: 0.9rem;
	margin-bottom: 10px;
}
/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}
.service-card {
	background: white;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}
.service-card:hover {
	transform: translateY(-5px);
}
.service-icon {
	background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: white;
}
.service-content {
	padding: 20px;
}
.service-content h3 {
	color: var(--primary);
	margin-bottom: 15px;
}
.service-content ul {
	list-style: none;
	margin: 15px 0;
}
.service-content li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.service-content li:last-child {
	border-bottom: none;
}
.price {
	color: var(--secondary);
	font-weight: 700;
	font-size: 1.1rem;
}
/* Service Request Form */
.request-form {
	background-color: orange;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 30px;
	margin-top: 40px;
}
.form-group {
	margin: 10px 0 20px 0;
}
.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--dark);
	text-align: left;
}
.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: var(--radius);
	font-size: 1rem;
	transition: border 0.3s ease;
}
.form-control:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
textarea.form-control {
	min-height: 120px;
	resize: vertical;
}
/* Admin Panel */
#admin-info {
	padding: 5px;
	margin: 10px;
	font-weight: bold;
	border-left: 8px solid var(--orange);
	background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
	box-shadow: var(--shadow);
	color: #fff;
}
.admin__info {
	display: none;
}
.admin__info.active {
	display: block;
}
.admin-footer p {
	text-align: center;
}
.admin-panel {
	background-color: var(--light);
	padding: 30px;
}
.admin-panel .admin-head-title {
	text-align: center;
}
.admin-panel h3 {
	color: var(--primary);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--light);
}
.admin-panel p a {
	color: #000;
	text-decoration: none;
	font-weight: 500;
}
.admin-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}
.admin-action-card {
	background: var(--light);
	padding: 20px;
	border-radius: var(--radius);
	text-align: center;
}
.admin-action-card i {
	font-size: 2rem;
	color: var(--secondary);
	margin-bottom: 15px;
}
.admin-panel .service-card {
	margin-bottom: 15px;
}
.admin-panel h3 {
	margin-bottom: 0;
}
.urgency-list h3 {
	border: none;
}
/* Login Form */
.login-form {
	max-width: 400px;
	margin: 100px auto 0;
	background: white;
	padding: 30px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
/* Tabs */
.tabs {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.tab {
	padding: 10px 20px;
	cursor: pointer;
	border-bottom: 3px solid transparent;
}
.tab.active {
	border-bottom: 3px solid var(--secondary);
	font-weight: 600;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
.tabs-area {
	display: none;
}
.tabs-area.active {
	display: block;
}
/* Footer */
footer {
	background-color: var(--dark);
	color: orange;
	padding: 40px 0 20px;
	margin-top: 60px;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}
.footer-section h3 {
	margin-bottom: 20px;
	font-size: 1.3rem;
}
.footer-section p, .footer-section li {
	margin-bottom: 10px;
}
.footer-section a {
	color: orange;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-section a:hover {
	color: var(--secondary);
}
.website-link {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
}
.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}
.modal-content {
	background-color: white;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: 90%;
	max-width: 500px;
	padding: 30px;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}
.close-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 1.5rem;
	cursor: pointer;
	color: #7f8c8d;
}
.alert-box {
	text-align: center;
}
.alert-box .modal-content {
	padding: 0;
}
.alert-box .alert-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
	padding: 15px 0;
	color: var(--orange);
}
.alert-box form {
	padding: 30px;
}
.alert-box .form-group {
	padding: 10px 0 25px 0;
}
.alert-box .btn {
	margin: 0 10px;
	width: 40%;
}
/* Project Selector */
.project-selector {
	background-color: var(--light);
	padding: 15px;
	border-radius: var(--radius);
	margin-bottom: 20px;
}
/* Status indicators */
.status-badge {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 10px;
	background-color: var(--secondary);
	color: white;
}
.button-group {
	margin-top: 10px;
}
.button-group .btn {
	margin: 5px 0;
}
.status_Pending {
	background-color: var(--warning);
	color: white;
}
.status_Completed {
	background-color: var(--success);
	color: white;
}
.status_Cancel {
	background-color: var(--accent);
	color: white;
}
.tabs-menu {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0;
	margin: 0;
}
.pc-web {
	display: block;
}
.sp-mobile {
	display: none;
}
.mobile-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
	border-top: 1px solid #ddd;
	z-index: 1000;
	padding: 10px;
}
.footer-menu {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0;
	margin: 0;
}
.footer-item {
	text-align: center;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	flex: 1;
	padding: 25px 10px;
	margin: 0 1px;
	background-color: var(--orange);
}
.mobile-footer .footer-item.active {
	background-color: var(--secondary);
}
.footer-item span {
	display: block;
	font-size: 20px;
}
i.success {
	color: green;
}
i.error {
	color: red;
}
.service-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.service-header h3 {
	margin: 0;
}
.service-header span.service-no {
	font-weight: bold;
	background: rgb(63,94,251);
	background: linear-gradient(66deg, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
}
/* Responsive */
@media (max-width: 768px) {
	.login-form {
		margin: 40% auto 0;
	}
	.pc-web {
		display: none;
	}
	.sp-mobile {
		display: block;
		padding: 5px;
		position: fixed;
		width: 100%;
	}
	.sp-mobile .container {
		padding: 0 10px;
	}
	.sp-mobile .container .header-content {
		flex-direction: row;
	}
	.sp-mobile h1 {
		font-size: 1em;
		text-align: left;
	}
	.sp-mobile p {
		font-size: 8px;
		margin-top: 0;
	}
	.sp-mobile .header-content {
		flex-direction: column;
		gap: 15px;
	}
	.button-group .btn {
		width: 100%;
	}
	.hero .btn {
		margin: 5px 0;
	}
	.section-title {
		margin-top: 10px;
	}
	nav ul {
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.hero h1 {
		font-size: 2.2rem;
	}
	.hero p {
		font-size: 1rem;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.admin-actions {
		grid-template-columns: 1fr;
	}
	.tabs {
		flex-direction: column;
	}
	.modal-content {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.logo {
		flex-direction: column;
		text-align: center;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.footer-content {
		grid-template-columns: 1fr;
	}
}
/* page expired */
body:has(.page-expired) {
	background: #0d1117;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
	flex-direction: column;
	text-align: center;
}
.page-expired h1 {
	font-size: 6rem;
	color: #ff5555;
	margin: 0;
}
.page-expired h2 {
	font-size: 1.8rem;
	margin-bottom: 10px;
	color: #ddd;
}
.page-expired p {
	color: #aaa;
	margin-bottom: 25px;
	max-width: 400px;
}
.page-expired a {
	text-decoration: none;
	background: #ff5555;
	color: white;
	padding: 10px 25px;
	border-radius: 6px;
	font-weight: bold;
	transition: 0.3s;
}
.page-expired a:hover {
	background: #ff7777;
}
.glow {
	animation: glow 1.5s ease-in-out infinite alternate;
}
@keyframes glow {
	from { text-shadow: 0 0 10px #ff5555, 0 0 20px #ff5555; }
	to { text-shadow: 0 0 20px #ff7777, 0 0 40px #ff7777; }
}
/*password*/
#password-wrapper {
	position: relative;
	width: 100%;
}
#password, #admin-password {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: var(--radius);
	font-size: 1rem;
	transition: border 0.3s ease;
}
#toggleBtn, #admin-toggleBtn {
	position: absolute;
	right: 8px;
	top: 50%;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
	color: #555;
	padding: 4px;
}
#toggleBtn:hover, #admin-toggleBtn:hover {
	color: #000;
}

a i.fa-facebook:hover, .txt-facebook:hover {
  color: #1877f2; /* Facebook blue */
}

a i.fa-youtube:hover, .txt-youtube:hover {
  color: #ff0000; /* YouTube red */
}
.link-item {
	cursor: pointer;
}
#header-link li {
	cursor: pointer;
}
.tab-link .request-count {
	position: absolute;
	background: red;
	color: white;
	font-size: 10px;
	font-weight: bold;
	border-radius: 50%;
	min-width: 16px;
	height: 16px;
	margin-left: 3px;
}
