/* Custom Modern UI/UX Overrides */
:root {
	--primary-color: #3E969E;
	--primary-dark: #2d7a82;
	--accent-color: #e05c2a;
	--text-dark: #1a1a2e;
	--text-muted: #6b7280;
	--border-radius-sm: 6px;
	--border-radius-md: 12px;
	--box-shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	--box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--transition: all 0.3s ease;
}

/* ============================================
   TOP INFO BAR
   ============================================ */
.top-info-bar {
	background: #1a2332;
	color: #c8d6e5;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	padding: 7px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-info-bar .top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.top-info-bar .top-bar-left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.top-info-bar .top-bar-left a {
	color: #c8d6e5;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s ease;
}

.top-info-bar .top-bar-left a:hover {
	color: #fff;
}

.top-info-bar .top-bar-left i {
	color: var(--primary-color);
	font-size: 14px;
}

.top-info-bar .top-bar-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-info-bar .top-bar-right a {
	color: #8fa8c0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.1);
	transition: all 0.2s ease;
	text-decoration: none;
	font-size: 12px;
}

.top-info-bar .top-bar-right a:hover {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

/* ============================================
   REDESIGNED SECONDARY HEADER (Logo + Phone)
   ============================================ */
/* Secondary Header wrapper (full-width) */
.secondary-header-wrap {
	background: #fff;
	padding: 14px 0;
	border-bottom: 1px solid #e8ecf0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sec-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sec-header-inner .logo a img {
	max-height: 64px;
	width: auto;
}

.header-phone-block {
	display: flex;
	align-items: center;
	gap: 14px;
}

.phone-icon-wrap {
	width: 46px;
	height: 46px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.phone-icon-wrap i {
	color: #fff;
	font-size: 20px;
}

.phone-text {
	display: flex;
	flex-direction: column;
}

.phone-label {
	font-family: 'Lato', sans-serif !important;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--text-muted);
	line-height: 1.2;
}

.phone-number {
	font-family: 'Lato', sans-serif !important;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	text-decoration: none;
	letter-spacing: -0.3px;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.phone-number:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.header-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--primary-color);
	color: #fff !important;
	font-family: 'Lato', sans-serif !important;
	font-size: 14px;
	font-weight: 700;
	padding: 11px 22px;
	border-radius: var(--border-radius-sm);
	text-decoration: none !important;
	transition: all 0.25s ease;
	white-space: nowrap;
	letter-spacing: 0.2px;
}

.header-cta-btn:hover {
	background: var(--primary-dark);
	color: #fff !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(62,150,158,0.35);
}

/* Mobile hamburger button */
#menu.menu {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 767px) {
	.top-info-bar { display: none; }

	.sec-header-inner {
		position: relative;
		padding-right: 55px;
	}

	.phone-label {
		display: none;
	}

	.phone-number {
		font-size: 16px !important;
		font-family: 'Lato', sans-serif !important;
	}

	.header-cta-btn {
		display: none;
	}

	.sec-header-inner .logo a img {
		max-height: 50px;
	}
}

@media (max-width: 480px) {
	.header-phone-block {
		gap: 8px;
	}

	.phone-icon-wrap {
		width: 36px;
		height: 36px;
	}

	.phone-icon-wrap i {
		font-size: 16px;
	}
}

body {
	font-family: 'Lato', sans-serif;
	color: #333;
}

/* Premium Buttons */
.btn-send-enquiry,
.btn-text,
.button a {
	border-radius: var(--border-radius-sm) !important;
	transition: var(--transition) !important;
}

.btn-send-enquiry {
	background: var(--primary-color) !important;
	color: #fff !important;
	padding: 14px 30px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	box-shadow: var(--box-shadow-subtle);
	width: 100%;
	margin-top: 10px;
}

.btn-send-enquiry:hover {
	transform: translateY(-2px);
	box-shadow: var(--box-shadow-hover);
	background: #d32f2f !important;
}

/* Trustworthy Form */
.contact-form {
	background: #ffffff;
	padding: 30px 25px;
	border-radius: var(--border-radius-md);
	box-shadow: var(--box-shadow-hover);
	border-top: 5px solid var(--primary-color);
	margin-top: 20px;
	margin-bottom: 30px;
	position: relative;
	z-index: 10;
}

.contact-form h4 {
	font-weight: 800;
	margin-bottom: 8px;
	color: #111;
}

.inpbox2,
.textbox2 {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: var(--border-radius-sm);
	padding: 12px 15px;
	margin-bottom: 15px;
	transition: var(--transition);
	background: #f8fafc;
	font-family: 'Lato', sans-serif;
}

.inpbox2:focus,
.textbox2:focus,
.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(62, 150, 158, 0.2);
	background: #fff;
}

.form-control {
	transition: var(--transition);
}

.textbox2 {
	min-height: 100px;
}

.reservationfield-main {
	margin-bottom: 0px !important;
}

/* Trust Strip */
.trust-strip .trust-item {
	transition: var(--transition);
	border-radius: var(--border-radius-sm);
	box-shadow: var(--box-shadow-subtle);
	border: 1px solid #f1f5f9;
	background: #fff;
}

.trust-strip .trust-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--box-shadow-hover);
	border-color: var(--primary-color);
}

.trust-strip .trust-item h5 {
	color: var(--primary-color);
	font-size: 16px;
}

/* Equal Height Flexbox for Cards */
#services-section .row,
#blog-section .row {
	display: flex;
	flex-wrap: wrap;
}

#services-section .row>[class*='col-'],
#blog-section .row>[class*='col-'] {
	display: flex;
	margin-bottom: 30px;
}

/* Cards (Services & Blog) */
.about-block,
.blog-post {
	border-radius: var(--border-radius-md);
	overflow: hidden;
	box-shadow: var(--box-shadow-subtle);
	background: #fff;
	transition: var(--transition);
	border: 1px solid #f1f5f9;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.about-block:hover,
.blog-post:hover {
	box-shadow: var(--box-shadow-hover);
	transform: translateY(-5px);
	border-color: #e2e8f0;
}

.about-block figure,
.blog-post .post-media {
	overflow: hidden;
}

.about-block figure img,
.blog-post .post-media img {
	width: 100%;
	transition: transform 0.5s ease;
}

.about-block:hover figure img,
.blog-post:hover .post-media img {
	transform: scale(1.08);
}

.text-box {
	padding: 25px 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.text-box .btn-text {
	margin-top: auto;
	align-self: flex-start;
}

.post-header,
.post-entry,
.post-more-link {
	padding: 0 25px;
}

.post-header {
	padding-top: 20px;
}

.post-entry {
	flex-grow: 1;
}

.post-more-link {
	padding-bottom: 25px;
	margin-top: auto;
}

/* Image links (Available wrap) */
.img-wrapper img {
	border-radius: var(--border-radius-md);
	transition: var(--transition);
	border: none !important;
	box-shadow: var(--box-shadow-subtle);
}

.img-wrapper:hover img {
	box-shadow: var(--box-shadow-hover);
	transform: scale(1.03);
}

.available_wrap__block {
	padding: 60px 0 30px;
	background: #f8fafc;
}

.img-wrapper .content {
	margin-top: 10px;
}

.img-wrapper .learn {
	font-weight: 700;
	color: #333;
}

/* ============================================
   MODERN GALLERY GRID (Replaces Isotope/Legacy Grid)
   ============================================ */
.modern-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	width: 100%;
	padding: 20px 0;
}

.modern-gallery-item {
	position: relative;
	width: 100%;
}

.modern-gallery-box {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius-md);
	box-shadow: var(--box-shadow-subtle);
	transition: var(--transition);
	height: 100%;
	background: #fff;
	border: 1px solid #f1f5f9;
}

.modern-gallery-box:hover {
	box-shadow: var(--box-shadow-hover);
	transform: translateY(-6px);
	border-color: #e2e8f0;
}

.modern-gallery-box img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: block;
}

.modern-gallery-box:hover img {
	transform: scale(1.08);
}

.modern-gallery-zoom {
	position: absolute;
	bottom: 20px;
	right: 20px;
	opacity: 0;
	transition: all 0.4s ease;
	transform: translateY(15px);
}

.modern-gallery-box:hover .modern-gallery-zoom {
	opacity: 1;
	transform: translateY(0);
}

.modern-gallery-zoom a {
	background: var(--primary-color);
	color: #fff;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(62, 150, 158, 0.4);
	text-decoration: none;
	transition: var(--transition);
}

.modern-gallery-zoom a:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
}

/* ============================================
   FAQ ACCORDION (faqs.html)
   ============================================ */
.faq-category-title {
	font-weight: 800;
	font-size: 28px;
	color: var(--text-dark);
	margin-top: 40px;
	margin-bottom: 25px;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 10px;
}

.accordion-item {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--border-radius-md);
	margin-bottom: 16px;
	box-shadow: var(--box-shadow-subtle);
	overflow: hidden;
	transition: var(--transition);
}

.accordion-item:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
	border-color: #cbd5e1;
}

.accordion-button {
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	padding: 20px 25px;
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: var(--transition);
}

.accordion-button:focus {
	outline: none;
	background: #f8fafc;
}

.accordion-icon {
	color: var(--primary-color);
	font-size: 16px;
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-button {
	color: var(--primary-color);
	background: #f8fafc;
}

.accordion-item.active .accordion-icon {
	transform: rotate(45deg); /* Rotates the + to look like an x */
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
	background: #fff;
	padding: 0 25px;
}

.accordion-item.active .accordion-content {
	padding: 10px 25px 25px;
}

.accordion-content p, .accordion-content ul {
	margin: 0;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.7;
}

.accordion-content ul {
	padding-left: 20px;
	margin-top: 10px;
}

/* FAQ Layout & Sidebar */
.faq-hero {
	background: url('../images/services/service-1.webp') no-repeat center center;
	background-size: cover;
	position: relative;
	padding: 100px 0;
	text-align: center;
}

.faq-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.78);
}

.faq-hero-content {
	position: relative;
	z-index: 2;
}

.faq-hero-content h1 {
	color: #fff;
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.faq-hero-content p {
	color: #eee;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 300;
	max-width: 700px;
	margin: 0 auto;
}

.faq-section {
	padding: 80px 0;
	background: #fdfdfd;
}

.faq-sidebar {
	background: #fff;
	padding: 30px;
	border-radius: var(--border-radius-md);
	box-shadow: var(--box-shadow-subtle);
	border: 1px solid #e2e8f0;
	position: sticky;
	top: 100px;
}

.sidebar-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 15px;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 10px;
}

.contact-card {
	background: #f8fafc;
	padding: 25px 20px;
	border-radius: var(--border-radius-sm);
	text-align: center;
	margin-top: 30px;
	border: 1px solid #e2e8f0;
}

.contact-card i {
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: block;
}

.contact-card h4 {
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.contact-card p {
	color: var(--text-muted);
	font-size: 14px;
	margin-bottom: 20px;
}

.contact-btn {
	display: inline-block;
	background: var(--primary-color);
	color: #fff !important;
	padding: 10px 20px;
	border-radius: var(--border-radius-sm);
	font-weight: 700;
	text-decoration: none !important;
	transition: var(--transition);
}

.contact-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(62, 150, 158, 0.3);
}



