/* ProtyGer - Modern Professional Website Styles */
:root {
	--primary-color: #ff6600;
	--secondary-color: #000000;
	--text-light: #ffffff;
	--text-dark: #ffffff;
	--bg-light: #1a1a1a;
	--bg-dark: #111111;
	--border-color: #333333;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: var(--text-light);
	background: var(--secondary-color);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(255, 102, 0, 0.3);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: var(--transition);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
	position: relative;
}

.nav-menu {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav-logo img {
	height: 40px;
	transition: var(--transition);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

.nav-menu a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.cart-icon {
	color: var(--text-light);
	font-size: 1.5rem;
	position: relative;
	cursor: pointer;
	transition: var(--transition);
}

.cart-icon:hover {
	color: var(--primary-color);
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--primary-color);
	color: var(--text-light);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: bold;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-light);
	transition: var(--transition);
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--text-light);
	position: relative;
	overflow: hidden;
	animation: heroFadeIn 1.5s ease-out;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	animation: heroSlideshow 15s infinite,
		heroZoom 8s ease-in-out infinite alternate;
	z-index: -2;
}

@keyframes heroSlideshow {
	0%,
	33% {
		background-image: url("/assets/images/hero/1.jpg");
	}
	34%,
	66% {
		background-image: url("/assets/images/hero/2.jpg");
	}
	67%,
	100% {
		background-image: url("/assets/images/hero/3.webp");
	}
}

@keyframes heroZoom {
	0% {
		background-size: 110%;
	}
	100% {
		background-size: 100%;
	}
}

@keyframes heroFadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
	z-index: -1;
}

.hero-content {
	max-width: 800px;
	z-index: 2;
	position: relative;
	animation: heroContentFadeIn 2s ease-out 0.5s both;
}

@keyframes heroContentFadeIn {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

.hero p {
	font-size: 1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--primary-color);
	color: var(--text-light);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn:hover {
	background: #e55a00;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: var(--text-light);
}

/* Sections */
.section {
	padding: 80px 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--text-light);
	font-weight: 500;
}

.section-title p {
	font-size: 1rem;
	color: var(--text-dark);
	max-width: 600px;
	margin: 0 auto;
}

/* Cards */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

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

.card {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	background: #f8f9fa;
	border-radius: 8px;
}

.card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.card h3 {
	margin-bottom: 1rem;
	color: var(--text-light);
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
}

.card p {
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.card .btn {
	width: 100%;
	text-align: center;
	margin-top: auto;
}

/* Product Cards */
.product-card {
	position: relative;
}

.product-description {
	font-size: 0.9rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.product-details {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-size: 0.8rem;
	text-align: center;
}

.product-brand,
.product-warranty,
.product-stock {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	color: var(--text-dark);
}

.product-stock.in-stock {
	color: #28a745;
}

.product-stock.out-stock {
	color: #dc3545;
}

.product-price {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 1rem;
	text-align: center;
}

.add-to-cart {
	background: var(--primary-color);
	color: var(--text-light);
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	transition: var(--transition);
	width: 100%;
}

.add-to-cart:hover {
	background: #e55a00;
}

.add-to-cart:disabled {
	background: #666;
	cursor: not-allowed;
}

.add-to-cart:disabled:hover {
	background: #666;
	transform: none;
}

/* Footer */
.footer {
	background: var(--secondary-color);
	color: var(--text-light);
	padding: 3rem 0 1rem;
}

.footer-logo img {
	height: 60px;
	max-width: 200px;
}

.contact-info p {
	font-size: 0.9rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
	font-size: 1.1rem;
	font-weight: 500;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: var(--text-light);
	text-decoration: none;
	transition: var(--transition);
}

.footer-section ul li a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #333;
	opacity: 0.8;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: var(--bg-light);
	color: var(--text-light);
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: var(--shadow);
	z-index: 1001;
	max-width: 400px;
	margin: 0 auto;
	display: none;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.cookie-buttons button {
	flex: 1;
	padding: 8px 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
}

.accept-cookies {
	background: var(--primary-color);
	color: var(--text-light);
}

.decline-cookies {
	background: var(--bg-dark);
	color: var(--text-light);
	border: 1px solid var(--border-color);
}

/* Go to Top Button */
.go-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--primary-color);
	color: var(--text-light);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: none;
	z-index: 1000;
}

.go-to-top:hover {
	background: #e55a00;
	transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(0, 0, 0, 0.95);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: var(--transition);
		transform: none;
		z-index: 999;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		margin: 1rem 0;
	}

	.nav-menu a {
		font-size: 1.2rem;
		padding: 1rem;
	}

	.nav-container {
		padding: 0 1rem;
		justify-content: space-between;
	}

	.nav-right {
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	.hero {
		height: 100vh;
		padding: 0 1rem;
	}

	.hero::before {
		background-size: cover !important;
		background-repeat: no-repeat !important;
		background-position: center !important;
		animation: heroSlideshow 15s infinite,
			heroZoom 8s ease-in-out infinite alternate;
	}

	.hero h1 {
		font-size: 1.8rem;
		line-height: 1.2;
	}

	.hero p {
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
	}

	.hero-content {
		padding: 0 1rem;
	}

	.section-title h2 {
		font-size: 1.5rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.container {
		padding: 0 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.footer-section {
		text-align: center;
	}

	.contact-info {
		text-align: center;
	}
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select,
#product-search,
#category-filter {
	width: 100%;
	padding: 12px;
	background: var(--bg-dark) !important;
	color: var(--text-light) !important;
	border: 2px solid var(--border-color) !important;
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
#product-search:focus,
#category-filter:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

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

/* Notification */
.notification {
	position: fixed;
	top: 100px;
	right: 20px;
	background: var(--primary-color);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
	z-index: 1002;
	transform: translateX(400px);
	transition: var(--transition);
}

.notification.show {
	transform: translateX(0);
}

.notification.success {
	background: #28a745;
}

.notification.error {
	background: #dc3545;
}

/* Search and Filter */
.search-filter-container {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.search-box {
	flex: 1;
	min-width: 250px;
}

.filter-select {
	min-width: 150px;
}

/* Cart Styles */
.cart-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.cart-item img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
}

.cart-item-details {
	flex: 1;
}

.cart-item-controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.quantity-btn {
	background: var(--primary-color);
	color: var(--text-light);
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.remove-item {
	background: #dc3545;
	color: var(--text-light);
	border: none;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
}

/* Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1003;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.modal.show {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: var(--bg-light);
	color: var(--text-light);
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 15px;
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	transform: scale(0.8);
	transition: var(--transition);
}

.modal.show .modal-content {
	transform: scale(1);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.close-modal {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #666;
}

/* Accordion */
.accordion-item {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-header {
	background: var(--bg-light);
	color: var(--text-light);
	padding: 1rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

.accordion-header:hover {
	background: var(--bg-dark);
}

.accordion-content {
	padding: 0 1rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.accordion-content.active {
	padding: 1rem;
	max-height: 500px;
}

/* Slider */
.slider-container {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.slider {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	min-width: 100%;
	padding: 2rem;
	background: var(--bg-light);
	color: var(--text-light);
	text-align: center;
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: var(--text-light);
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	border-radius: 50%;
}

.slider-nav.prev {
	left: 10px;
}

.slider-nav.next {
	right: 10px;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: var(--transition);
}

.dot.active {
	background: var(--primary-color);
}

/* Cart Page Styles */
.cart-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

.cart-item {
	display: grid;
	grid-template-columns: 80px 1fr auto auto auto;
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 1rem;
	color: var(--text-light);
}

.cart-item img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
}

.item-details h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
}

.item-price {
	color: var(--primary-color);
	font-weight: bold;
	margin: 0;
}

.quantity-controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.quantity-controls button {
	width: 30px;
	height: 30px;
	border: 1px solid var(--border-color);
	background: var(--bg-dark);
	color: var(--text-light);
	cursor: pointer;
	border-radius: 4px;
}

.quantity-controls button:hover {
	background: var(--primary-color);
	color: var(--text-light);
}

.item-total {
	font-weight: bold;
	color: var(--primary-color);
}

.remove-item {
	background: #dc3545;
	color: var(--text-light);
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	transition: var(--transition);
}

.remove-item:hover {
	background: #c82333;
	transform: scale(1.1);
}

.cart-summary {
	background: var(--bg-light);
	color: var(--text-light);
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	border-radius: 8px;
	height: fit-content;
}

.summary-line {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.summary-line.total {
	border-top: 1px solid var(--border-color);
	padding-top: 1rem;
	font-weight: bold;
	font-size: 1.2rem;
}

.checkout-btn {
	width: 100%;
	margin-top: 1rem;
}

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

	.cart-item {
		grid-template-columns: 60px 1fr;
		gap: 0.5rem;
	}

	.quantity-controls,
	.item-total,
	.remove-item {
		grid-column: 2;
		justify-self: end;
	}

	.modal-content {
		margin: 1rem;
		padding: 1rem;
		width: calc(100% - 2rem);
		max-width: none;
	}

	.modal-content .order-summary {
		margin-bottom: 1.5rem;
		padding-bottom: 1rem;
		border-bottom: 1px solid var(--border-color);
	}

	.modal-content .checkout-btn {
		width: 100%;
		margin: 1.5rem 0 0 0;
		padding: 12px;
		text-align: center;
		display: block;
		clear: both;
	}
}
/* Contact Form Styles */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.contact-form-section,
.contact-info-section {
	background: var(--bg-light) !important;
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid var(--border-color);
}

.contact-form {
	background: transparent !important;
}

.contact-form .form-group {
	background: transparent !important;
}

.contact-form-section h2,
.contact-info-section h2 {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.contact-info-section p {
	color: var(--text-dark);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

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

/* Search Filter Container */
.search-filter-container {
	background: var(--bg-light);
	padding: 1.5rem;
	border-radius: 10px;
	border: 1px solid var(--border-color);
	margin-bottom: 2rem;
}

/* Products Grid */
.products-grid {
	background: transparent;
}

/* Empty Cart */
.empty-cart {
	background: var(--bg-light);
	padding: 3rem;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	text-align: center;
}

.empty-cart h2 {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.empty-cart p {
	color: var(--text-dark);
	margin-bottom: 2rem;
}
/* About Page Styles */
.about-content {
	text-align: center;
	margin-bottom: 3rem;
}

.about-grid {
	display: block;
	text-align: center;
}

.about-text {
	text-align: center;
	margin-bottom: 3rem;
}

.about-stats {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.about-text h2 {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
}

.about-text p {
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.about-stats {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.about-stats .stat {
	text-align: center;
	padding: 1.5rem;
	background: var(--bg-light);
	border-radius: 10px;
	border: 1px solid var(--border-color);
}

.about-stats .stat h3 {
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.about-stats .stat p {
	color: var(--text-light);
	margin: 0;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature {
	padding: 1.5rem;
	background: var(--bg-light);
	border-radius: 10px;
	border: 1px solid var(--border-color);
	text-align: center;
}

.feature-icon {
	margin-bottom: 1rem;
}

.feature-icon i {
	font-size: 2.5rem;
	color: var(--primary-color);
}

.feature h3 {
	color: var(--text-light);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.feature p {
	color: var(--text-dark);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-features {
		grid-template-columns: 1fr;
	}
}
/* FAQ Styles */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	background: var(--bg-light);
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--bg-dark);
}

.faq-question h3 {
	color: var(--text-light);
	margin: 0;
	font-size: 1.1rem;
}

.faq-toggle {
	color: var(--primary-color);
	font-size: 1.5rem;
	font-weight: bold;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
	padding: 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	color: var(--text-dark);
	margin: 0;
	line-height: 1.6;
}

/* Contact Method Styles */
.contact-method {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
	border-bottom: none;
}

.contact-method h3 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.contact-method p {
	margin-bottom: 0.5rem;
}

/* Emergency Contact Styles */
.emergency-contact {
	background: var(--bg-light);
	padding: 2rem;
	border-radius: 15px;
	border: 2px solid var(--primary-color);
	text-align: center;
}

.emergency-contact h2 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.emergency-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

.emergency-phone,
.emergency-services {
	text-align: left;
}

.emergency-phone h3,
.emergency-services h3 {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.emergency-services ul {
	list-style: none;
	padding: 0;
}

.emergency-services li {
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	padding-left: 1rem;
	position: relative;
}

@media (max-width: 768px) {
	.emergency-info {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}
/* Policy Pages Styles */
.policy-content {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.policy-content h1 {
	color: var(--text-light);
	margin-bottom: 1rem;
	text-align: center;
}

.policy-content h2 {
	color: var(--primary-color);
	margin: 2rem 0 1rem 0;
	font-size: 1.5rem;
}

.policy-content h3 {
	color: var(--text-light);
	margin: 1.5rem 0 0.5rem 0;
	font-size: 1.2rem;
}

.policy-content p {
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.policy-content ul {
	color: var(--text-dark);
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.policy-content li {
	margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

/* Blog Content Styles */
.blog-content {
	line-height: 1.6;
	color: #ffffff !important;
	font-size: 0.9rem;
}

.blog-content h2 {
	color: var(--primary-color);
	margin: 1.5rem 0 0.8rem 0;
	font-size: 1.3rem;
}

.blog-content h3 {
	color: var(--text-light);
	margin: 1.2rem 0 0.4rem 0;
	font-size: 1.1rem;
}

.blog-content p {
	margin-bottom: 0.8rem;
	color: #ffffff !important;
	font-size: 0.9rem;
}

.blog-content ul {
	margin-bottom: 0.8rem;
	padding-left: 1.5rem;
	color: #ffffff !important;
	font-size: 0.9rem;
}

.blog-content li {
	margin-bottom: 0.3rem;
	color: #ffffff !important;
	font-size: 0.9rem;
}

/* Complete blog post content override */
.blog-post-content {
	font-family: Arial, sans-serif !important;
	max-width: 800px !important;
	margin: 0 auto !important;
	padding: 2rem !important;
	text-align: left !important;
}

.blog-post-content * {
	color: #ffffff !important;
	text-align: left !important;
}

.blog-post-content h1 {
	font-size: 2rem !important;
	margin-bottom: 1rem !important;
	text-align: center !important;
}

.blog-post-content h2 {
	font-size: 1.3rem !important;
	margin: 1.5rem 0 0.8rem 0 !important;
	color: var(--primary-color) !important;
}

.blog-post-content h3 {
	font-size: 1.1rem !important;
	margin: 1.2rem 0 0.6rem 0 !important;
}

.blog-post-content p {
	font-size: 1rem !important;
	line-height: 1.6 !important;
	margin-bottom: 1rem !important;
}

.blog-post-content ul {
	margin: 1rem 0 !important;
	padding-left: 2rem !important;
}

.blog-post-content li {
	font-size: 1rem !important;
	margin-bottom: 0.5rem !important;
	line-height: 1.5 !important;
}

.blog-post-content img {
	max-width: 100% !important;
	height: auto !important;
	margin: 1rem 0 !important;
	border-radius: 8px !important;
}

/* Universal white text override */
body,
p,
div,
span,
li,
td,
th,
label,
input,
textarea,
select {
	color: #ffffff !important;
}

/* Specific overrides for common elements */
.blog-content,
.blog-content p,
.blog-content div,
.blog-content span {
	color: #ffffff !important;
}

/* Center all content */
body * {
	text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.policy-content,
	.blog-content,
	.contact-container,
	.about-content,
	.emergency-info {
		text-align: center;
	}

	.policy-content h1,
	.policy-content h2,
	.policy-content h3 {
		text-align: center;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}

	.map-container iframe {
		height: 300px;
	}

	.emergency-info {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.emergency-phone,
	.emergency-services {
		text-align: center;
	}
}
