/*
================================
ZID Foundation - Modern Clean Design
================================
*/

/* CSS Variables */
:root {
	--primary: #1a1a2e;
	--secondary: #16213e;
	--accent: #f8be2e;
	--accent-hover: #e5a817;
	--text: #333333;
	--text-light: #666666;
	--text-lighter: #999999;
	--bg-white: #ffffff;
	--bg-light: #f8f9fa;
	--bg-gray: #f0f2f5;
	--border: #e8eaed;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 12px rgba(0,0,0,0.1);
	--shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--font-heading: 'Inter', sans-serif;
	--font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
	background: var(--bg-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--text);
	text-decoration: none;
	transition: var(--transition);
}

a:hover, a:focus {
	text-decoration: none;
	color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--text);
	line-height: 1.3;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
}

.clear { clear: both; }

.bg-area {
	background: var(--bg-light);
}

/* Utility Classes */
.ptb-60 { padding: 60px 0 !important; }
.pt-60 { padding-top: 60px !important; }
.pb-60 { padding-bottom: 60px !important; }
.ptb-30 { padding: 30px 0 !important; }
.pt-30 { padding-top: 30px !important; }
.mtb-30 { margin: 30px 0 !important; }
.mt-30 { margin-top: 30px !important; }
.mb-30 { margin-bottom: 30px !important; }

.clear-three:nth-child(3n + 1) { clear: both; }
.clear-two:nth-child(2n + 1) { clear: both; }
.clear-four:nth-child(4n + 1) { clear: both; }

/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-white);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

#status {
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* Section Headlines */
.headline,
.testimonial-headline {
	text-align: center;
	margin-bottom: 50px;
}

.headline h2,
.testimonial-headline h2 {
	font-size: 32px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
	color: var(--text);
}

.headline p,
.testimonial-headline p {
	font-size: 16px;
	color: var(--text-light);
	margin: 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.headline-shadow {
	display: inline-block;
}

/* ================================
   HEADER AREA
   ================================ */
.header-area {
	background: var(--primary);
	padding: 10px 0;
}

.header-contact {
	color: rgba(255,255,255,0.85);
}

.header-contact ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-contact li {
	display: inline-block;
	margin-right: 24px;
	font-size: 13px;
}

.header-contact li:last-child {
	margin-right: 0;
}

.header-contact li i {
	font-size: 13px;
	margin-right: 6px;
	color: var(--accent);
}

.header-social {
	text-align: right;
}

.header-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-social li {
	display: inline-block;
	margin-left: 16px;
}

.header-social li:first-child {
	margin-left: 0;
}

.header-social a {
	display: block;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: var(--transition);
}

.header-social a:hover {
	color: var(--accent);
	transform: translateY(-2px);
}

/* ================================
   NAVIGATION / MENU
   ================================ */
.menu-area {
	position: relative;
	background: var(--bg-white);
	box-shadow: var(--shadow-sm);
	z-index: 1000;
}

.logo {
	padding: 12px 0;
}

.logo img {
	height: 55px;
	width: auto;
}

#strickymenu.sticky .logo img {
	height: 45px;
}

ul.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
}

ul.nav-menu li {
	display: inline-block;
	position: relative;
}

ul.nav-menu li a {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	display: block;
	padding: 28px 20px;
	color: var(--text);
	transition: var(--transition);
	position: relative;
}

ul.nav-menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: var(--transition);
	transform: translateX(-50%);
}

ul.nav-menu li a:hover::after,
ul.nav-menu li.current_page_item a::after {
	width: 70%;
}

ul.nav-menu li a:hover,
ul.nav-menu li.current_page_item a {
	color: var(--accent);
}

/* Dropdown */
.menu-item-has-children {
	position: relative;
}

.main-menu .menu-item-has-children:before {
	position: absolute;
	content: '\f107';
	font-family: 'FontAwesome';
	right: 8px;
	top: 50%;
	margin-top: -10px;
	font-size: 12px;
	z-index: 99;
	color: var(--text-light);
}

ul.nav-menu li ul {
	position: absolute;
	width: 220px;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
	background: var(--bg-white);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	transform: translateY(10px);
	transition: var(--transition);
	border-top: 3px solid var(--accent);
}

ul.nav-menu li:hover ul {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

ul.nav-menu li ul li {
	display: block;
	opacity: 1;
}

ul.nav-menu li ul li a {
	font-size: 13px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 20px;
	border-bottom: 1px solid var(--border);
	color: var(--text);
	transition: var(--transition);
}

ul.nav-menu li ul li a:hover {
	background: var(--bg-light);
	color: var(--accent);
	padding-left: 25px;
}

ul.nav-menu li ul li ul {
	top: 0;
	left: 100%;
	border-top: 0;
	border-left: 3px solid var(--accent);
}

/* Sticky Menu */
#strickymenu.sticky {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: var(--bg-white);
	box-shadow: var(--shadow-md);
	z-index: 10000;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

.sticky .logo {
	padding: 8px 0;
}

.sticky ul.nav-menu li a {
	padding: 22px 20px;
}

.sticky ul.nav-menu li ul {
	top: 100%;
}

/* Mean Menu Override */
.mean-container a.meanmenu-reveal {
	margin-right: 15px;
}

.mean-container .mean-nav ul {
	position: static;
	display: block;
}

.mean-container .mean-nav ul li a {
	background: var(--primary);
	border-left: 0;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 20px;
}

.mean-container .mean-nav ul li:hover {
	background: none;
}

.mean-container .mean-nav ul li a:hover {
	background-color: rgba(248,190,46,0.15) !important;
	color: var(--accent);
}

.mean-container .mean-nav ul li a.mean-expand {
	height: 24px !important;
}

/* Search */
.searchbar .search-button {
	text-align: right;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	right: 15px;
	transition: var(--transition);
}

.searchbar .search-button:active,
.searchbar .search-button:focus,
.searchbar .search-button:hover {
	cursor: pointer;
	color: var(--accent);
}

.searchbar .input-search {
	position: absolute;
	width: 50%;
	right: 0;
	bottom: -64px;
	background: var(--bg-white);
	padding: 15px;
	box-shadow: var(--shadow-md);
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	z-index: 999;
}

.searchbar .input-search .btn:hover {
	background: var(--accent);
}

/* ================================
   SLIDER / HERO
   ================================ */
.slider-item {
	position: relative;
	height: 650px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.slider-item .bg {
	position: absolute;
	background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(22,33,62,0.75));
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.slider-table {
	display: table;
	width: 100%;
	height: 100%;
}

.slider-text {
	vertical-align: middle;
	text-align: center;
	position: relative;
	display: table-cell;
}

.slider-animated h2 {
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.slider-animated p {
	font-size: 18px;
	color: rgba(255,255,255,0.9);
	letter-spacing: 0.3px;
	margin: 0 auto;
	max-width: 700px;
	line-height: 1.8;
}

.slider-animated ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 35px;
}

.slider-animated li {
	display: inline-block;
	margin-right: 15px;
}

.slider-animated li a {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	background: transparent;
	color: #fff;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.8);
	border-radius: 50px;
	padding: 14px 40px;
	transition: var(--transition);
}

.slider-animated li a:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(248,190,46,0.3);
}

.slider-animated li:last-child a {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--primary);
}

.slider-animated li:last-child a:hover {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	color: #fff;
}

/* Slide Carousel Arrows */
.slide-carousel.owl-carousel .owl-nav {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
}

.slide-carousel.owl-carousel .owl-nav .owl-prev,
.slide-carousel.owl-carousel .owl-nav .owl-next {
	text-align: center;
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 44px;
	font-size: 18px;
	color: #fff;
	border: 2px solid rgba(255,255,255,0.5);
	border-radius: 50%;
	transition: var(--transition);
}

.slide-carousel.owl-carousel .owl-nav .owl-prev {
	left: 20px;
}

.slide-carousel.owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: 20px;
}

.slide-carousel.owl-carousel .owl-nav .owl-prev:hover,
.slide-carousel.owl-carousel .owl-nav .owl-next:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--primary);
}

/* ================================
   CHOOSE / WHY CHOOSE US
   ================================ */
.choose-area {
	overflow: hidden;
}

.choose-left {
	float: left;
	width: 100%;
	background-size: cover;
	background-position: center;
	margin-top: 30px;
}

.choose-right {
	position: relative;
	width: 55%;
	float: right;
	background-size: cover;
	background-position: center;
}

.bg-choose {
	position: absolute;
	background: var(--primary);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.92;
}

.choose-item {
	position: relative;
	color: #fff;
	padding: 40px 50px;
}

.choose-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.choose-item li {
	display: table;
	width: 100%;
	margin: 20px 0;
}

.choose-icon {
	display: table-cell;
	vertical-align: top;
	width: 80px !important;
}

.choose-icon img {
	width: 55px;
	height: 55px;
	border: 2px solid var(--accent);
	padding: 12px;
	border-radius: 50%;
}

.choose-text {
	display: table-cell;
	vertical-align: top;
}

.choose-text h3 {
	color: var(--accent);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.choose-text p {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	line-height: 1.7;
}

/* ================================
   SERVICES
   ================================ */
.services-item {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	margin-top: 30px;
	border: 1px solid var(--border);
}

.services-item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.services-photo {
	background-size: cover;
	background-position: center;
	height: 220px;
	transition: var(--transition);
}

.services-item:hover .services-photo {
	transform: scale(1.05);
}

.services-text {
	padding: 25px;
	border-top: 3px solid var(--accent);
}

.services-text h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 18px;
}

.services-text h3 a {
	color: var(--text);
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 700;
	transition: var(--transition);
}

.services-text h3 a:hover {
	color: var(--accent);
}

.services-text p {
	margin: 0;
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.7;
}

.services-link {
	margin-top: 18px;
}

.services-link a,
.services-link .booking-submit {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	background-color: var(--accent);
	padding: 10px 28px;
	text-transform: capitalize;
	text-decoration: none;
	color: var(--primary);
	border-radius: 50px;
	transition: var(--transition);
}

.services-link a:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(248,190,46,0.3);
	color: var(--primary);
}

.services-link i {
	margin-left: 5px;
	transition: var(--transition);
}

.services-link a:hover i {
	animation: arrowBounce 0.8s infinite;
}

@keyframes arrowBounce {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

/* ================================
   RECENT WORKS / PORTFOLIO
   ================================ */
.recent-menu {
	text-align: center;
	margin-bottom: 40px;
}

.recent-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	gap: 8px;
}

.recent-menu ul li {
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-block;
	background: var(--bg-white);
	border: 1px solid var(--border);
	padding: 10px 24px;
	border-radius: 50px;
	transition: var(--transition);
}

.recent-menu ul li:hover,
.recent-menu ul li.active {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--primary);
}

.recent-item {
	margin-top: 30px;
}

.lightbox-item {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border);
	transition: var(--transition);
}

.lightbox-item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.recent-photo {
	background-position: center;
	background-size: cover;
	height: 230px;
	position: relative;
	overflow: hidden;
}

.lightbox-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, rgba(248,190,46,0.9), rgba(229,168,23,0.85));
	visibility: hidden;
	opacity: 0;
	transition: var(--transition);
}

.lightbox-item:hover .lightbox-bg {
	visibility: visible;
	opacity: 1;
}

.lightbox-text {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-icon {
	visibility: hidden;
	transition: var(--transition);
}

.lightbox-icon i {
	font-size: 30px;
	color: var(--primary);
	background: var(--bg-white);
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	box-shadow: var(--shadow-md);
}

.lightbox-item:hover .lightbox-icon {
	visibility: visible;
	transform: scale(1.1);
}

.recent-text {
	padding: 20px 25px;
	border-top: 3px solid var(--accent);
}

.recent-text h3 {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 17px;
}

.recent-text p {
	margin: 0;
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.6;
}

/* ================================
   TEAM
   ================================ */
.team-item {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	margin-top: 30px;
	transition: var(--transition);
	border: 1px solid var(--border);
}

.team-item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.team-photo {
	background-size: cover;
	background-position: center;
	height: 280px;
	position: relative;
}

.team-text {
	text-align: center;
	padding: 20px;
}

.team-text h4 {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
}

.team-text p {
	margin: 0;
	font-size: 14px;
	color: var(--accent);
	font-weight: 500;
}

.team-social {
	text-align: center;
	position: absolute;
	background: rgba(26,26,46,0.9);
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 12px 0;
	opacity: 0;
	transform: translateY(20px);
	transition: var(--transition);
}

.team-item:hover .team-social {
	opacity: 1;
	transform: translateY(0);
}

.team-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social li {
	display: inline-block;
	margin: 0 6px;
}

.team-social li a {
	display: block;
	width: 34px;
	height: 34px;
	line-height: 34px;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.4);
	border-radius: 50%;
	text-decoration: none;
	transition: var(--transition);
}

.team-social li a:hover {
	background: var(--accent);
	color: var(--primary);
	border-color: var(--accent);
}

/* Team Carousel Nav */
.team-carousel.owl-carousel .owl-nav {
	position: absolute;
	width: 82px;
	top: 0;
	right: -15px;
	margin-top: -18px;
	visibility: hidden;
	opacity: 0;
	transition: var(--transition);
}

.team-carousel.owl-carousel .owl-nav .owl-prev,
.team-carousel.owl-carousel .owl-nav .owl-next {
	text-align: center;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 31px;
	font-size: 16px;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.team-carousel.owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: 0;
}

.team-area:hover .owl-nav {
	right: 0;
	visibility: visible;
	opacity: 1;
}

.team-carousel.owl-carousel .owl-nav .owl-prev:hover,
.team-carousel.owl-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: var(--accent);
	border-color: var(--accent);
}

/* ================================
   TESTIMONIAL
   ================================ */
.testimonial-area {
	position: relative;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.bg-testimonial {
	position: absolute;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.92;
}

.testimonial-area .container {
	position: relative;
	z-index: 1;
}

.testimonial-item {
	margin-top: 45px;
}

.testimonial-text {
	position: relative;
	background: var(--bg-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.client-name {
	text-align: center;
	background: var(--accent);
	padding: 30px 20px 20px;
}

.client-name h4 {
	margin-bottom: 4px;
	font-size: 18px;
	color: var(--primary);
}

.client-name span {
	display: block;
	font-size: 14px;
	color: var(--primary);
	opacity: 0.8;
}

.testimonial-detail {
	padding: 30px;
	font-size: 15px;
}

.testimonial-detail p {
	display: inline;
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.8;
}

.testimonial-detail i {
	margin-right: 8px;
	color: var(--accent);
	font-size: 18px;
}

.testimonial-photo {
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -40px;
	z-index: 2;
}

.testimonial-photo img {
	width: 80px !important;
	height: 80px;
	border-radius: 50%;
	border: 4px solid var(--bg-white);
	box-shadow: var(--shadow-md);
}

/* Testimonial Dots */
.testimonial-carousel .owl-dots {
	text-align: center;
	margin-top: 35px;
}

.testimonial-carousel .owl-dots .owl-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	display: inline-block;
	margin: 0 6px;
	transition: var(--transition);
}

.testimonial-carousel .owl-dots .owl-dot.active {
	background: var(--accent);
	width: 40px;
	border-radius: 10px;
}

/* ================================
   FAQ
   ================================ */
.booking-gallery {
	background: var(--primary);
	padding: 40px 30px;
	margin-top: 30px;
	border-radius: var(--radius-md);
}

.booking-gallery h3 {
	color: #fff;
	margin: 0;
	margin-bottom: 30px;
	font-size: 22px;
}

.faq-gallery {
	margin-top: 30px;
}

.faq-gallery h3 {
	margin: 0;
	margin-bottom: 10px;
	font-size: 26px;
	font-weight: 800;
}

.faq-gallery h4.sub {
	margin: 0;
	color: var(--text-light);
	font-size: 15px;
	margin-bottom: 25px;
	font-weight: 400;
}

.faq-gallery .panel {
	box-shadow: var(--shadow-sm) !important;
	border-radius: var(--radius-sm) !important;
	margin-bottom: 12px;
	border: 1px solid var(--border) !important;
	overflow: hidden;
}

.faq-gallery .panel-default > .panel-heading {
	background: var(--bg-white);
	color: var(--text);
	padding: 0;
	border-radius: var(--radius-sm);
	position: relative;
	border-bottom: 1px solid var(--border);
}

.faq-gallery h4.panel-title a {
	display: block;
	text-decoration: none;
	padding: 16px 50px 16px 20px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	transition: var(--transition);
}

.faq-gallery h4.panel-title a:hover {
	color: var(--accent);
}

.faq-gallery .panel-group .panel-heading a:after {
	content: '\f068';
	font-family: 'FontAwesome';
	position: absolute;
	font-size: 12px;
	right: 0;
	top: 0;
	padding: 17px 20px;
	color: var(--accent);
	background: transparent;
}

.faq-gallery .panel-group .panel-heading a.collapsed:after {
	content: '\f067';
	font-family: 'FontAwesome';
}

.faq-gallery .panel-default > .panel-heading + .panel-collapse > .panel-body {
	border-top: 0;
	padding: 20px;
	color: var(--text-light);
	line-height: 1.8;
}

.panel-group {
	margin: 0;
}

/* Form Styles */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
	margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
	height: 48px;
	box-shadow: none;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
	font-size: 14px;
	transition: var(--transition);
	width: 100%;
}

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

.form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(248,190,46,0.15);
	outline: none;
}

.form-group select.select {
	height: 48px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
}

.booking-gallery .services-link {
	clear: both;
}

.services-link .booking-submit {
	padding: 12px 30px;
}

/* ================================
   COUNTER
   ================================ */
.counterup-area {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.bg-counterup {
	position: absolute;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.92;
}

.counter-border {
	padding: 0;
}

.counter-item {
	text-align: center;
	color: #fff;
	border-right: 1px solid rgba(255,255,255,0.2);
	padding: 30px 0;
}

.counter-border:last-child .counter-item {
	border-right: 0;
}

.counter-item h2.counter {
	font-size: 42px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 5px;
}

.counter-item h4 {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	opacity: 0.9;
}

/* ================================
   GALLERY / CAPTION PHOTO
   ================================ */
.caption-item {
	margin-top: 24px;
}

.caption-photo {
	background-size: cover;
	background-position: center;
	height: 200px;
	position: relative;
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	overflow: hidden;
}

.caption-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, rgba(248,190,46,0.9), rgba(229,168,23,0.85));
	visibility: hidden;
	opacity: 0;
	transform: scale(0);
	transition: var(--transition);
}

.caption-item:hover .caption-bg {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.caption-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.caption-icon {
	visibility: hidden;
	opacity: 0;
	transition: var(--transition);
}

.caption-icon i {
	font-size: 28px;
	color: var(--primary);
	background: var(--bg-white);
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	border-radius: 50%;
	box-shadow: var(--shadow-md);
}

.caption-item:hover .caption-icon {
	visibility: visible;
	opacity: 1;
	transform: scale(1.1);
}

.caption-text {
	background: var(--bg-white);
	border-top: 3px solid var(--accent);
	padding: 15px 20px;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.caption-text p {
	margin: 0;
	font-size: 14px;
	color: var(--text-light);
}

/* ================================
   BLOG / NEWS
   ================================ */
.blog-item {
	margin-top: 30px;
}

.blog-photo {
	background-size: cover;
	background-position: center;
	height: 220px;
	border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.blog-author ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-author li {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
	margin-right: 8px;
	padding: 8px 14px;
	border-radius: 50px;
	background: var(--bg-gray);
	color: var(--text-light);
}

.blog-author li.gro {
	background: var(--accent);
	color: var(--primary);
}

.blog-author li:last-child {
	margin-right: 0;
}

.blog-author li i {
	margin-right: 4px;
}

.blog-text {
	background: var(--bg-white);
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	padding: 20px 25px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border);
	border-top: none;
}

.blog-text h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 18px;
}

.blog-text h3 a {
	text-decoration: none;
	color: var(--text);
	transition: var(--transition);
}

.blog-text h3 a:hover {
	color: var(--accent);
}

.blog-text p {
	margin: 0;
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.7;
}

.blog-text .services-link a {
	color: var(--primary);
}

/* Blog Carousel Nav */
.blog-carousel.owl-carousel .owl-nav {
	position: absolute;
	width: 82px;
	top: 0;
	right: -15px;
	margin-top: -18px;
	visibility: hidden;
	opacity: 0;
	transition: var(--transition);
}

.blog-carousel.owl-carousel .owl-nav .owl-prev,
.blog-carousel.owl-carousel .owl-nav .owl-next {
	text-align: center;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 31px;
	font-size: 16px;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.blog-carousel.owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: 0;
}

.blog-area:hover .owl-nav {
	right: 0;
	visibility: visible;
	opacity: 1;
}

.blog-carousel.owl-carousel .owl-nav .owl-prev:hover,
.blog-carousel.owl-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: var(--accent);
	border-color: var(--accent);
}

/* Pagination */
ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-top: 30px;
}

ul.page-numbers li {
	display: inline-block;
	font-weight: 600;
	margin: 0 3px;
}

ul.page-numbers li:before {
	display: none;
}

ul.page-numbers li a {
	text-decoration: none;
}

ul.page-numbers li a.page-numbers {
	display: inline-block;
	background: var(--bg-white);
	color: var(--text);
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	transition: var(--transition);
	font-size: 14px;
}

ul.page-numbers li a.page-numbers:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--primary);
}

span.page-numbers.current {
	display: inline-block;
	background: var(--accent);
	color: var(--primary);
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	font-size: 14px;
}

/* ================================
   BRAND / PARTNER
   ================================ */
.brand-item {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 80px;
	margin-top: 30px;
	transition: var(--transition);
	opacity: 0.6;
}

.brand-item:hover {
	opacity: 1;
}

/* Brand Carousel Nav */
.brand-carousel.owl-carousel .owl-nav {
	position: absolute;
	width: 85px;
	top: 0;
	right: -15px;
	margin-top: -18px;
	visibility: hidden;
	opacity: 0;
	transition: var(--transition);
}

.brand-carousel.owl-carousel .owl-nav .owl-prev,
.brand-carousel.owl-carousel .owl-nav .owl-next {
	text-align: center;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 31px;
	font-size: 16px;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.brand-carousel.owl-carousel .owl-nav .owl-prev {
	left: 0;
}

.brand-carousel.owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: 0;
}

.brand-area:hover .owl-nav {
	right: 0;
	visibility: visible;
	opacity: 1;
}

.brand-carousel.owl-carousel .owl-nav .owl-prev:hover,
.brand-carousel.owl-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: var(--accent);
	border-color: var(--accent);
}

/* ================================
   BANNER (Inner Pages)
   ================================ */
.banner-slider {
	position: relative;
	height: 300px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner-slider .bg {
	position: absolute;
	background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(22,33,62,0.75));
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.bannder-table {
	display: table;
	width: 100%;
	height: 100%;
}

.banner-text {
	vertical-align: middle;
	text-align: center;
	display: table-cell;
}

.banner-text h1 {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ================================
   FOOTER
   ================================ */
.footer-contact-area {
	background: var(--primary);
	padding: 40px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact-item {
	text-align: center;
	padding: 10px;
}

.footer-contact-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.footer-contact-item li img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.2);
	padding: 8px;
	background: rgba(255,255,255,0.1);
}

.footer-contact-item h4 {
	color: var(--accent);
	font-size: 16px;
	margin: 0 0 5px;
	font-weight: 700;
}

.footer-contact-item p {
	color: rgba(255,255,255,0.8);
	margin: 0;
	font-size: 14px;
}

/* Footer Main */
.footer-main {
	width: 100%;
	padding: 60px 0 30px;
	background: var(--secondary);
}

.footer-col h3 {
	color: #fff;
	font-size: 20px;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
	font-weight: 700;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
}

.footer-col p {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	line-height: 1.8;
}

.footer-col ul li,
.footer-col ul li a {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	line-height: 1.8;
	text-decoration: none;
	transition: var(--transition);
}

.footer-col ul li {
	list-style-type: none;
	margin-bottom: 10px;
	position: relative;
	padding-left: 16px;
}

.footer-col ul li::before {
	color: var(--accent);
	content: "\f105";
	font-family: "FontAwesome";
	left: 0;
	position: absolute;
	top: 0;
	font-size: 12px;
}

.footer-col ul li a:hover {
	color: var(--accent);
	padding-left: 5px;
}

.footer-col .news-item {
	color: rgba(255,255,255,0.65);
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col .news-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.footer-col .news-item .news-title {
	font-size: 13px;
	line-height: 1.6;
}

.footer-col .news-item .news-title a {
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	transition: var(--transition);
	font-size: 14px;
}

.footer-col .news-item .news-title a:hover {
	color: var(--accent);
}

.footer-col .news-item .news-date {
	color: rgba(255,255,255,0.4);
	font-size: 12px;
	margin-top: 8px;
}

.footer-col .contact-item {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	overflow: hidden;
	margin-bottom: 12px;
}

.footer-col .contact-item .icon {
	float: left;
	font-size: 16px;
	margin-right: 12px;
	color: var(--accent);
}

.footer-col .contact-item .text {
	float: left;
	line-height: 22px;
}

/* Footer Copyright */
.footer-copyrignt {
	background: var(--secondary);
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
}

.copyright-text {
	text-align: center;
}

.copyright-text p {
	color: rgba(255,255,255,0.5);
	font-size: 14px;
	margin: 0;
}

/* Scroll to Top */
.scroll-top {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: var(--accent);
	color: var(--primary);
	text-align: center;
	line-height: 45px;
	font-size: 20px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 9999;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
}

.scroll-top:hover {
	background: var(--accent-hover);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(248,190,46,0.3);
}

/* ================================
   ABOUT PAGE
   ================================ */
.about-mission {
	background: var(--bg-white);
	padding: 35px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border);
}

.about-mission:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.mission-icon {
	width: 60px;
	height: 60px;
	background: var(--accent);
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	margin-bottom: 20px;
}

.mission-icon i {
	font-size: 24px;
	color: var(--primary);
}

.about-mission h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.about-mission p {
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.8;
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-area {
	padding: 40px 0 60px;
}

.contact-area h4 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 25px;
}

.contact-form .form-group input {
	height: 50px;
	border-radius: var(--radius-sm);
}

.contact-form .form-group textarea {
	min-height: 150px;
	border-radius: var(--radius-sm);
}

.contact-form .btn {
	background: var(--accent);
	color: var(--primary);
	border: none;
	padding: 12px 35px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--transition);
}

.contact-form .btn:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(248,190,46,0.3);
}

.contact-form .error {
	background: #fff3cd;
	color: #856404;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	margin-bottom: 15px;
	border: 1px solid #ffc107;
}

.contact-form .success {
	background: #d4edda;
	color: #155724;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	margin-bottom: 15px;
	border: 1px solid #28a745;
}

.map-area {
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.map-area iframe {
	width: 100%;
	height: 400px;
	border: none;
}

/* ================================
   HVR BOUNCE TO RIGHT FIX
   ================================ */
.hvr-bounce-to-right::before {
	background: var(--accent) !important;
}

.hvr-bounce-to-right:active,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:hover {
	color: var(--primary) !important;
}

/* ================================
   OWL CAROUSEL FIX
   ================================ */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}
