/* Modern animations and transitions */
* {
	transition: all 0.3s ease;
}

.header-image {
	background-image: url('../images/header.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 400px;
	margin-top: 56px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	overflow: hidden;
	object-fit: cover;
	padding-top: 20px;
	display: flex;
}

/* Shop Header Styles */
.shop-header-container {
	margin-top: 56px;
}

.shop-header-image {
	background-image: url('../images/ShopHeader.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shop-header-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.shop-link-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.shop-link-button {
	display: inline-block;
	background: linear-gradient(45deg, #88ff00, #66cc00);
	color: #000 !important;
	padding: 20px 40px;
	font-size: 2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(136,255,0,0.4);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.shop-link-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(136,255,0,0.6);
	color: #000 !important;
	text-decoration: none;
}

/* Shop header for index page */
.index-shop-header {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.header-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	padding: 2rem;
	margin-top: 100px;
}

.header-content h1 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
	color: #88ff00;
}

.header-content p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	font-weight: 600;
}

.navbar {
	background-color: rgba(0,0,0,0.95);
	color: #88ff00;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(136,255,0,0.1);
}

.navbar-brand {
	font-weight: bold;
	font-size: 1.5rem;
	text-shadow: 0 0 10px rgba(136,255,0,0.5);
	padding: 0;
}

.navbar-brand img {
	height: 40px;
	width: auto;
	filter: drop-shadow(0 0 10px rgba(136,255,0,0.5));
	transition: all 0.3s ease;
}

.navbar-brand img:hover {
	filter: drop-shadow(0 0 15px rgba(136,255,0,0.7));
	transform: scale(1.05);
}

.navbar-nav > .nav-item {
	margin: 0 5px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.navbar-nav > .nav-item:hover {
	background-color: #88ff00;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(136,255,0,0.3);
}

.navbar-nav > .nav-item:hover .nav-link {
	color: #000 !important;
}

body {
	background: linear-gradient(135deg, #000 0%, #111 100%);
	color: white;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
}

/* Modern card effects */
.row {
	margin-bottom: 2rem;
}

.col-md-8, .col-md-4 {
	padding: 1rem;
}

.service-card {
	background: rgba(255,255,255,0.05);
	border-radius: 15px;
	padding: 2rem;
	margin: 1rem 0;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(136,255,0,0.1);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(136,255,0,0.2);
	border-color: rgba(136,255,0,0.3);
}

.service-card h2 {
	color: #88ff00;
	margin-bottom: 1rem;
	text-shadow: 0 0 10px rgba(136,255,0,0.3);
}

.service-card img {
	transition: transform 0.3s ease;
}

.service-card:hover img {
	transform: scale(1.05);
}

/* Image hover effects */
.img-fluid {
	border-radius: 10px;
	transition: all 0.3s ease;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.img-fluid:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(136,255,0,0.2);
}

/* Service image containers for better alignment */
.service-image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 300px;
}

.service-image-container img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Icon images in service cards */
.service-icon {
	max-height: 120px;
	width: auto;
	margin-bottom: 1rem;
}

/* Heading animations */
h1, h2 {
	position: relative;
	overflow: hidden;
}

h1::after, h2::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #88ff00, transparent);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

h1:hover::after, h2:hover::after {
	width: 100%;
}

/* Button animations */
.btn {
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.3s ease;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
	z-index: -1;
}

.btn:hover::before {
	left: 100%;
}

/* Custom green gradient button */
.btn-green {
	background: linear-gradient(45deg, #88ff00, #66cc00);
	color: #000 !important;
	padding: 20px 40px;
	font-size: 2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(136,255,0,0.4);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 2px;
}

footer a:hover {
	color: #88ff00;
	text-shadow: 0 0 10px rgba(136,255,0,0.5);
}

a {
	color: #88ff00;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #66cc00;
	text-shadow: 0 0 10px rgba(136,255,0,0.5);
}

/* Map container improvements */
.google-map-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
}

.google-map-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(136,255,0,0.1);
}

.google-map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}

/* Contact form improvements */
.contact-form {
	max-width: 500px;
	margin: 0 auto;
	padding: 2rem;
	background: rgba(255,255,255,0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(136,255,0,0.1);
}

label, input, textarea {
	display: block;
	margin-bottom: 15px;
	width: 100%;
	transition: all 0.3s ease;
}

label {
	font-weight: bold;
	color: #88ff00;
}

input, textarea {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(136,255,0,0.3);
	color: white;
	padding: 12px;
	border-radius: 8px;
	backdrop-filter: blur(5px);
}

input:focus, textarea:focus {
	outline: none;
	border-color: #88ff00;
	box-shadow: 0 0 20px rgba(136,255,0,0.3);
	transform: scale(1.02);
}

input::placeholder, textarea::placeholder {
	color: rgba(255,255,255,0.6);
}

button[type="submit"] {
	background: linear-gradient(45deg, #88ff00, #66cc00);
	color: #000;
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

button[type="submit"]:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(136,255,0,0.4);
}

button[type="submit"]:active {
	transform: translateY(0);
}

/* Footer improvements */
footer {
	background: rgba(0,0,0,0.9);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(136,255,0,0.1);
	margin-top: 3rem;
}

/* Scroll animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-on-scroll {
	animation: fadeInUp 0.6s ease-out;
}

/* Loading animation */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(136,255,0,0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(136,255,0,0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(136,255,0,0);
	}
}

.pulse-effect {
	animation: pulse 2s infinite;
}

/* Form validation styles */
@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

.is-invalid {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.is-valid {
	border-color: #88ff00 !important;
	box-shadow: 0 0 0 0.2rem rgba(136, 255, 0, 0.25) !important;
}

/* Container padding for fixed navbar */
.main-content {
	padding-top: 80px;
}

/* Response message styles */
.message {
    background-color: #88ff00;
    color: #000;
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}

.error {
    background-color: #ff4444;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}

.php-contact-body {
    text-align: center;
    padding: 50px;
}

/* Override outer contact section to remove black background */
.contact-section {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Responsive improvements */
@media (max-width: 1200px) {
	.header-image {
		height: calc(100vw / 4);
		max-height: 400px;
		margin-top: 56px;
	}
	
	.shop-header-image {
		height: 350px;
	}
	
	.shop-link-button {
		font-size: 1.6rem;
		padding: 16px 32px;
	}
	
	.header-content h1 {
		font-size: 3rem;
	}
	
	.header-content p {
		font-size: 1.3rem;
	}
}

@media (max-width: 992px) {
	.header-image {
		height: calc(100vw / 4);
		max-height: 350px;
		margin-top: 56px;
	}
	
	.shop-header-image {
		height: 300px;
	}
	
	.shop-link-button {
		font-size: 1.4rem;
		padding: 14px 28px;
	}
	
	.service-card {
		margin: 1rem 0;
		padding: 1.5rem;
	}
	
	.service-image-container {
		min-height: 250px;
		margin-bottom: 1rem;
	}
	
	.header-content h1 {
		font-size: 2.5rem;
	}
	
	.header-content p {
		font-size: 1.2rem;
	}
	
	.col-md-8, .col-md-4 {
		padding: 0.5rem;
	}
}

@media (max-width: 768px) {
	.header-image {
		height: calc(100vw / 4);
		max-height: 300px;
		margin-top: 56px;
	}
	
	.shop-header-image {
		height: 250px;
	}
	
	.shop-link-button {
		font-size: 1.2rem;
		padding: 12px 24px;
		letter-spacing: 1px;
	}
	
	.navbar-brand img {
		height: 35px;
	}
	
	.header-content h1 {
		font-size: 2rem;
	}
	
	.header-content p {
		font-size: 1.1rem;
	}
	
	.service-card {
		margin: 0.5rem 0;
		padding: 1.5rem;
	}
	
	.service-image-container {
		min-height: 200px;
	}
	
	.contact-form {
		margin: 1rem;
		padding: 1.5rem;
		max-width: 90%;
	}
	
	.service-icon {
		max-height: 100px;
	}
	
	.google-map-container {
		margin: 1rem;
	}
}

@media (max-width: 576px) {
	.header-image {
		height: calc(100vw / 4);
		max-height: 250px;
		min-height: 150px;
		margin-top: 56px;
	}
	
	.shop-header-image {
		height: 200px;
	}
	
	.shop-link-button {
		font-size: 1rem;
		padding: 10px 20px;
		letter-spacing: 0.5px;
	}
	
	.navbar-brand img {
		height: 30px;
	}
	
	.header-content {
		padding: 1rem;
	}
	
	.header-content h1 {
		font-size: 1.8rem;
	}
	
	.header-content p {
		font-size: 1rem;
	}
	
	.service-card {
		padding: 1rem;
	}
	
	.service-image-container {
		min-height: 180px;
	}
	
	.service-icon {
		max-height: 80px;
	}
	
	.contact-form {
		max-width: 95%;
		padding: 1rem;
	}
	
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* Equal height columns */
.row.equal-height {
	display: flex;
	flex-wrap: wrap;
}

.row.equal-height > [class*='col-'] {
	display: flex;
	flex-direction: column;
}