﻿
.site-header {
	background-color: #244034;
	border-top: 3px solid #b5d41c;
	padding: 0.75rem 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 1050;
}

.navbar-brand img {
	height: 50px;
	width: auto;
	transition: transform 0.3s ease;
}

	.navbar-brand img:hover {
		transform: scale(1.05);
	}

/* --- Search Bar --- */
.search-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
	border-radius: 50px;
	padding: 0.3rem 0.5rem;
	flex: 1;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}

	.search-bar input {
		border: none;
		background: transparent;
		flex: 1;
		padding: 0.6rem 1rem;
		font-size: 0.95rem;
		color: #333;
		outline: none;
		border-radius: 50px;
	}

	.search-bar button {
		background: #244034;
		border: none;
		border-radius: 50%;
		width: 38px;
		height: 38px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		cursor: pointer;
		transition: all 0.3s ease;
	}

		.search-bar button:hover {
			background: #1d3029;
		}

/* --- Suggestion Dropdown --- */
#suggestions {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	width: 100%;
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	z-index: 2000;
	max-height: 280px;
	overflow-y: auto;
	display: none;
}

	#suggestions .list-group-item {
		padding: 0.65rem 1rem;
		font-size: 0.95rem;
		color: #212529;
		border: none;
		border-bottom: 1px solid #f1f1f1;
		transition: background-color 0.15s ease, color 0.15s ease;
		display: flex;
		align-items: center;
	}

		#suggestions .list-group-item:last-child {
			border-bottom: none;
		}

		#suggestions .list-group-item:hover {
			background-color: #f8f9fa;
			color: #000;
			cursor: pointer;
		}

	#suggestions img {
		border: 1px solid #ddd;
		background-color: #f8f9fa;
		border-radius: 8px;
	}

/* --- Header Right Links --- */
.header-list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

	.header-list a {
		color: #fff;
		font-weight: 500;
		text-decoration: none;
		transition: all 0.3s ease;
		padding: 6px 12px;
		border-radius: 6px;
	}

		.header-list a:hover {
			background: #b5d41c;
			color: #244034;
		}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
	.site-header .container {
		flex-direction: column;
		text-align: center;
	}

	.search-bar {
		max-width: 100%;
		margin: 0.75rem 0;
	}
}

@media (max-width: 576px) {
	.navbar-brand img {
		height: 40px;
	}

	.header-list {
		gap: 1rem;
	}

		.header-list a {
			font-size: 0.9rem;
			padding: 5px 8px;
		}
}




/* ============================
   BUSINESS CARD STYLING
   Used in: _BusinessCard.cshtml
   Purpose: Controls card hover animation, image effects,
            gradients, and responsive height adjustments.
   ============================ */

/* Card hover effect – gives a subtle lift and shadow */
.business-card:hover {
	transform: translateY(-3px);
	transition: transform .3s ease, box-shadow .3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Business image – fixed height and smooth zoom on hover */
.business-img {
	transition: transform 0.5s ease;
	object-fit: cover; /* Keeps image proportions intact */
	height: 250px;
}

/* Zoom effect when hovering over the entire card */
.business-card:hover .business-img {
	transform: scale(1.05);
}

/* Gradient overlay on top of images – soft dark fade */
.bg-gradient {
	background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.55));
	pointer-events: none; /* Don’t block clicks */
}

/* ============================
   RESPONSIVE DESIGN
   Adjusts image height for smaller devices
   ============================ */

/* Tablets and below */
@media (max-width: 768px) {
	.business-img {
		height: 200px;
	}
}

/* Mobile phones */
@media (max-width: 576px) {
	.business-img {
		height: 170px;
	}
}


/* ==========================================
   Footer 
========================================== */

.footer-one {
	width: 100%;
	background: #244036;
	color: rgba(255, 255, 255, 0.85);
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

	/* Optional subtle gradient line at top */
	.footer-one::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.25), transparent );
	}

	/* Inner Wrapper */
	.footer-one .inner-wrapper {
		position: relative;
		z-index: 2;
	}

/* --- Brand Section --- */
.footer-logo img {
	width: 220px;
	height: auto;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

	.footer-logo img:hover {
		transform: scale(1.03);
		opacity: 0.9;
	}

.footer-description {
	font-size: 16px;
	line-height: 1.7;
	max-width: 280px;
	color: rgba(255, 255, 255, 0.8);
}

/* --- Social Links --- */
.socials-wrapper {
	margin-top: 20px;
}

.socials-title {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

	.social-link:hover {
		background: rgba(255, 255, 255, 0.15);
		transform: translateY(-4px);
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
		border-color: rgba(255, 255, 255, 0.3);
	}

/* --- Footer Titles --- */
.footer-title {
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #fff;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 16px;
}

	.footer-title::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 45px;
		height: 2px;
		background: linear-gradient(90deg, #f8d6c3, transparent);
		border-radius: 2px;
	}

/* --- Footer Links --- */
.footer-link {
	display: inline-block;
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

	.footer-link:hover {
		color: #fff;
		padding-left: 6px;
	}

/* --- Service Locations --- */
.locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
}

.state-title {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
}

.state-icon {
	font-size: 1.2rem;
}

.cities-list {
	font-size: 16px;
	line-height: 1.8;
}

.city-link {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.3s ease;
}

	.city-link:hover {
		color: #fff;
		text-decoration: underline;
	}

/* --- Footer Bottom --- */
.footer-bottom {
	background: rgba(0, 0, 0, 0.2);
	margin-top: 60px;
	padding: 20px 0;
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

	.footer-bottom p {
		color: rgba(255, 255, 255, 0.8);
		margin: 0;
	}

.powered-link {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

	.powered-link:hover {
		opacity: 0.8;
		text-decoration: underline;
	}

/* --- Text Utilities --- */
.text-white-80 {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
	.footer-one {
		padding-top: 60px;
	}

	

	.footer-logo img {
		width: 180px;
	}

	.locations-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 576px) {
	.footer-one {
		text-align: center;
	}

	.footer-logo img {
		margin: 0 auto 10px;
	}

	.footer-description {
		margin: 0 auto 20px;
	}

	.socials {
		justify-content: center;
	}

	.locations-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		text-align: center;
	}
}

/***********************************************
Service Page Banner
************/
.banner-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100px;
	position: relative;
}

.banner-content h1 {
	color: #000;
	font-size: 2.5rem;
	line-height: 1.3;
}

.banner-content .paragraph-section {
	color: #000;
	line-height: 1.6;
}

/*
	Card Styling
	**/
.bt-card {
	background: #fff;
	border: 1px solid #f1f1f1;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
	padding: 1.5rem;
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
}

	/* Hover Animation */
	.bt-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	}

	/* Header Image */
	.bt-card img.card-img {
		width: 100%;
		height: 220px;
		object-fit: cover;
		border-radius: 12px;
		margin-bottom: 1rem;
		transition: transform 0.4s ease;
	}

	.bt-card:hover img.card-img {
		transform: scale(1.03);
	}

	/* Title and Subtitle */
	.bt-card h3 {

		color: #244034; /* Bridal green */
		margin-bottom: 0.5rem;
	}

	.bt-card h4 {
		color: #777;
		margin-bottom: 0.75rem;
	}

	/* Description Text */
	.bt-card p {
		line-height: 1.6;
		color: #555;
		margin-bottom: 1rem;
	}

	/* Divider line */
	.bt-card .divider {
		width: 100%;
		height: 1px;
		background-color: #f1f1f1;
		margin: 1rem 0;
	}

/* Footer Area */
.bt-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #666;
}

	.bt-card-footer a {
		color: #b8475e;
		font-weight: 600;
		text-decoration: none;
		transition: all 0.3s ease;
	}

		.bt-card-footer a:hover {
			color: #244034;
			text-decoration: underline;
		}

/* Tag / Badge */
.bt-card .bt-tag {
	position: absolute;
	top: 18px;
	right: 18px;
	background: #244034;
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Responsive Grid */
.bt-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

/* Media Queries */
@media (max-width: 768px) {
	.bt-card {
		padding: 1rem;
	}

		.bt-card img.card-img {
			height: 180px;
		}
}

/* ====== Testimonial Section ====== */
.section-box {
	text-align: center;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
	max-width: 1100px;
	margin: 60px auto;
	transition: all 0.3s ease;
}

	/* Section heading */
	.section-box small {
		display: block;
		color: #b8475e;
		letter-spacing: 1px;
		text-transform: uppercase;
		margin-bottom: 8px;
	}

	.section-box h2 {
		color: #222;
		margin-bottom: 20px;
		line-height: 1.4;
	}

/* Rating summary */
.rating {
	margin-bottom: 40px;
	color: #555;
}

	.rating .stars {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 6px;
		margin: 8px 0;
	}

	.rating .score {
		background: #244034;
		color: #fff;
		padding: 2px 8px;
		border-radius: 8px;
	}

/* ====== Review Cards ====== */
.reviews {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.review-card {
	background: #fff;
	border: 1px solid #f1f1f1;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
	padding: 1.8rem;
	text-align: left;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}

	.review-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	}

/* Reviewer details */
.reviewer {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

	.reviewer h4 {
		color: #244034;
		margin-bottom: 4px;
	}

	.reviewer p {

		margin: 0;
	}

/* Review text */
.review-card p {

	line-height: 1.7;
	position: relative;
}

	.review-card p::before {
		color: #b8475e;
		position: absolute;
		top: -10px;
		left: -6px;
	}

	.review-card p::after {
		color: #b8475e;
		position: absolute;
		bottom: -14px;
		right: -6px;
	}

/* Hover accent line */
.review-card::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, #b8475e, #244034);
	transition: width 0.3s ease;
}

.review-card:hover::after {
	width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.section-box h2 {
		font-size: 1.5rem;
	}

	.reviews {
		grid-template-columns: 1fr;
	}
}
/* ============================
   Related Links Card Styling
============================ */
.bt-faq-accordion .accordion-button {
	font-size: 1.25rem !important; 
	font-weight: 700 !important;
	color: #244034 !important;
	background: #fff;
	box-shadow: none !important;
	border: none;
	padding: 1.2rem 1.25rem;
	letter-spacing: 0.2px;
	line-height: 1.5;
}

	.bt-faq-accordion .accordion-button:not(.collapsed) {
		color: #b8475e !important;
		background-color: #f8f8f8 !important;
	}

.bt-faq-accordion .faq-question {
	display: inline-block;
	font-weight: inherit;
}

/* Related Links Section  */
.related-links {
	margin-top: 3rem;
}

/* List layout */
.related-links-list {
	padding: 0;
	margin: 0;
	list-style: none;
}


/* Link Style */
.related-link-item {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #244034;
	transition: all 0.3s ease;
}

	.related-link-item:hover {
		color: #b8475e;
		padding-left: 6px;
	}

	.related-link-item .link-icon {
		color: #b8475e;
		transition: transform 0.3s ease;
	}

	.related-link-item:hover .link-icon {
		transform: rotate(15deg);
	}

/* Responsive Design */
@media (max-width: 768px) {
	.related-links {
		padding: 1.5rem;
	}

	.related-link-item {
		font-size: 0.95rem;
	}
}

/* ===============================
   App Download Section
================================= */
.app-download-section {
	width: 100%;
	background: linear-gradient(135deg, #fffaf9 0%, #f7ecea 100%);
	padding: 60px 15px;
	position: relative;
	overflow: hidden;
}

	/* Decorative circles */
	.app-download-section::before,
	.app-download-section::after {
		content: "";
		position: absolute;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(206,102,113,0.08), transparent 70%);
		z-index: 0;
	}

	.app-download-section::before {
		width: 250px;
		height: 250px;
		top: -60px;
		left: -80px;
	}

	.app-download-section::after {
		width: 200px;
		height: 200px;
		bottom: -40px;
		right: -60px;
	}

.app-download-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 1320px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	gap: 40px;
}

.app-download-content {
	flex: 1 1 400px;
	min-width: 280px;
}

	.app-download-content h2 {
		font-size: 2.5rem;
		color: #b8475e;
		margin-bottom: 15px;
	}

	.app-download-content p {
		color: #555;
		line-height: 1.6;
		margin-bottom: 30px;
	}

/* Download options */
.download-options {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.qr-code-box {
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	border: 2px solid #f0f0f0;
	transition: transform 0.3s ease;
}

	.qr-code-box:hover {
		transform: translateY(-4px);
	}

.qr-placeholder {
	font-size: 60px;
}

.qr-text {
	font-size: 12px;
	color: #666;
	margin-top: 8px;
	text-align: center;
}

.store-badges {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.store-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #244034;
	color: #fff;
	padding: 10px 20px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.store-badge:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 15px rgba(36,64,52,0.3);
	}

.badge-icon {
	font-size: 28px;
}

.badge-subtitle {
	font-size: 10px;
	color: #ccc;
}

.badge-title {
	font-size: 15px;
	font-weight: 600;
}

/* App mockups */
.app-mockups {
	flex: 1 1 400px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 15px;
	flex-wrap: wrap;
}

.phone-frame {
	width: 160px;
	height: 340px;
	border-radius: 28px;
	padding: 10px;
	background: #1a1a1a;
	box-shadow: 0 15px 40px rgba(0,0,0,0.25);
	overflow: hidden;
	transition: transform 0.3s ease;
}

	.phone-frame:hover {
		transform: translateY(-8px) scale(1.05);
	}

.phone-screen {
	width: 100%;
	height: 100%;
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
}

.phone-notch {
	width: 50%;
	height: 20px;
	background: #1a1a1a;
	border-radius: 0 0 15px 15px;
	margin: 0 auto;
}

.app-screenshot {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 15px;
	text-align: center;
	border-radius: 20px;
}

.screenshot-left {
	background: linear-gradient(135deg, #ff6b9d 0%, #ffd166 100%);
}

.screenshot-center {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.screenshot-right {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.screenshot-content h3 {
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.screenshot-content p {
	font-size: 0.85rem;
	margin-bottom: 12px;
}

.rating-box {
	background: rgba(255,255,255,0.2);
	padding: 8px;
	border-radius: 12px;
	font-size: 0.75rem;
}

.center-content .icons-row {
	display: flex;
	justify-content: space-around;
	width: 100%;
	gap: 5px;
}

.booking-item {
	background: rgba(255,255,255,0.9);
	padding: 8px;
	border-radius: 12px;
	font-size: 0.75rem;
	color: #333;
	margin-bottom: 8px;
	text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
	.app-download-container {
		flex-direction: column;
		gap: 40px;
	}

	.app-mockups {
		display: none;
	}
}

@media (max-width: 576px) {
	.app-download-content h2 {
		font-size: 1.8rem;
	}

	.app-download-content p {
		font-size: 0.95rem;
	}

	.store-badge {
		padding: 8px 16px;
		font-size: 14px;
	}
}

/*opensidebar stol scrollpage*/
.body-no-scroll {
	overflow: hidden !important;
	height: 100vh !important;
}
/*end*/


