/* Base Typography */
:root {
	--sand: #f5f1e8;
	--mist: #eef2f4;
	--pine: #1f3b2c;
	--forest: #274c3a;
	--leaf: #8fb766;
	--sunset: #d25b3f;
	--ink: #1b1a17;
	--slate: #4b5563;
	--card: #ffffff;
	--shadow-soft: 0 20px 50px rgba(20, 20, 20, 0.12);
	--shadow-strong: 0 25px 60px rgba(15, 23, 42, 0.2);
}

body, html {
	font-family: 'Source Sans 3', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	color: #2f3640;
	font-weight: 400;
	width: 100% !important;
	height: 100% !important;
	margin: 0;
	padding: 0;
	background: linear-gradient(135deg, rgba(245, 241, 232, 0.9), rgba(238, 242, 244, 0.75)),
		radial-gradient(circle at top left, rgba(143, 183, 102, 0.16), transparent 55%);
}

h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
	letter-spacing: 0.02em;
	color: var(--ink);
}

h2 {
	font-weight: 600;
	font-size: clamp(2.6rem, 3.8vw, 3.6rem);
	line-height: 1.15;
	text-transform: none;
	position: relative;
	margin: 10px auto 15px;
	padding-bottom: 20px;
}

h2::after {
	position: absolute;
	content: "";
	background: linear-gradient(90deg, rgba(143, 183, 102, 0.1), var(--leaf), rgba(210, 91, 63, 0.6));
	height: 3px;
	width: 90px;
	bottom: 0;
	margin-left: -45px;
	left: 50%;
	border-radius: 999px;
}

h3 {
	font-size: 1.85rem;
	font-weight: 500;
	color: var(--ink);
}

h4 {
	font-size: 1.35rem;
	text-transform: none;
	font-weight: 600;
	color: var(--ink);
}

h5 {
	text-transform: none;
	font-weight: 700;
	line-height: 1.4;
	color: var(--ink);
}

.faq {
	font-weight: 600;
	line-height: 1.4;
	color: var(--forest);
}

p {
	font-size: 1.2rem;
	margin: 0 0 14px;
	line-height: 1.8;
	color: #3b4250;
}

p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}

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

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

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

.btn:active,
.btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
	outline-offset: 0;
}

.container,
.container-fluid {
	max-width: 100vw !important;
	overflow-x: hidden !important;
	box-sizing: border-box;
}

html,
body {
	width: 100vw !important;
	max-width: 100vw !important;
	overflow-x: hidden !important;
}

#features,
#gallery,
#destinations-menu,
#about,
#faq,
#contact {
	scroll-margin-top: 140px;
}

/* Reveal Animations */
.reveal,
.reveal-stagger > * {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-stagger > *.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal,
	.reveal-stagger > * {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Navigation */
.navbar .navbar-nav {
	display: inline-block;
	float: none;
	vertical-align: top;
}

.navbar .navbar-collapse {
	text-align: center;
}

.navbar {
	padding: 12px 20px;
	backdrop-filter: blur(18px);
}

@media (max-width: 580px) {
	.navbar {
		padding: 5px 10px;
	}
}

.navbar-brand {
	margin-left: -160px !important;
}

.navbar-brand img {
	max-height: 100px;
	margin-top: -23px;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 580px) {
	.navbar-brand img {
		max-height: 60px;
		margin-top: 5px;
	}
}

#menu {
	padding: 18px 20px;
	transition: all 0.5s ease;
}

#menu.navbar-default {
	background-color: rgba(9, 16, 20, 0.25);
	border-color: rgba(231, 231, 231, 0);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

#menu.navbar-default .navbar-nav > li > a {
	text-transform: uppercase;
	color: #f8fafc;
	font-weight: 500;
	font-size: 1.3rem;
	padding: 6px 0;
	border: 2px solid transparent;
	letter-spacing: 0.12em;
	margin: 0 24px;
}

#menu.navbar-default .navbar-nav > li > a:hover {
	color: var(--leaf);
}

.on {
	background-color: rgba(10, 18, 24, 0.92) !important;
	padding: 8px 0 !important;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
	color: var(--leaf) !important;
	background-color: transparent;
}

.navbar-toggle {
	border-radius: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: var(--sunset);
	border-color: var(--sunset);
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #FFF;
}

.navbar-default .navbar-toggle:hover > .icon-bar {
	background-color: #FFF;
}

@media (max-width: 991px) {
	/* Ensure collapsed menu remains legible over hero background */
	#menu.navbar-default {
		background-color: rgba(7, 16, 24, 0.95);
	}

	#menu.navbar-default .navbar-collapse {
		background-color: rgba(7, 16, 24, 0.95);
		padding: 12px 15px;
	}

	#menu.navbar-default .navbar-nav > li > a {
		margin: 6px 0;
		color: #f3f6fb;
	}
}

/* Section Titles */
.section-title {
	margin-bottom: 18px;
}

.section-title .overlay {
	padding: 80px 0;
	background: rgba(0, 0, 0, 0.7);
}

.section-title p {
	font-size: 1.2rem;
	max-width: 720px;
	margin: 0 auto;
	color: #3b4250;
}

.section-title h2 {
	letter-spacing: 0.01em;
}

.section-title h2 {
	text-align: center;
}

.section-title hr {
	margin: 0 auto 40px;
}

.btn-custom {
	text-transform: uppercase;
	color: #f8fafc;
	background: linear-gradient(135deg, var(--forest), var(--pine));
	border: 1px solid rgba(31, 59, 44, 0.4);
	padding: 14px 28px;
	margin: 20px 0 0;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	border-radius: 999px;
	transition: all 0.3s;
	box-shadow: 0 14px 24px rgba(31, 59, 44, 0.25);
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
	color: #fff;
	border: 1px solid rgba(210, 91, 63, 0.6);
	background: linear-gradient(135deg, #e46d52, var(--sunset));
	transform: translateY(-2px);
}

/* Gallery Enhancements */
.gallery-attractive {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	align-items: flex-start;
	margin: 0 auto 32px;
}

.gallery-attractive img {
	width: 330px;
	height: 240px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.25s cubic-bezier(.4, 2, .6, 1), box-shadow 0.25s;
	border: 3px solid rgba(255, 255, 255, 0.35);
	background: #f8f8f8;
	margin-bottom: 8px;
}

.gallery-attractive img:hover {
	transform: scale(1.07) rotate(-1deg);
	box-shadow: 0 16px 40px rgba(44, 62, 80, 0.24), 0 2px 12px rgba(0, 0, 0, 0.18);
	border-color: var(--leaf);
	z-index: 2;
}

.gallery-attractive img:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(44, 62, 80, 0.12);
}

/* Header Section */
.intro {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 0;
	background: url(../img/intro-bg.jpg) center center / cover no-repeat;
	background-color: #0a0e14;
	overflow: hidden;
}

.intro .overlay {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(120deg, rgba(7, 16, 24, 0.72) 0%, rgba(10, 63, 72, 0.48) 55%, rgba(28, 73, 63, 0.38) 100%),
	linear-gradient(0deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06));
	display: flex;
	align-items: center;
	padding: 140px 0 90px;
}

.intro h1 {
	font-family: 'Rochester', cursive;
	color: #fffef6;
	font-size: clamp(3rem, 6vw, 5.8rem);
	font-weight: 400;
	margin: 10px 0 16px;
	text-align: center;
	text-shadow: 0 10px 35px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.intro span {
	color: #a7c44c;
	font-weight: 600;
}

/* Hero Card Layout */
.hero-container {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.hero-row {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.hero-row > [class*="col-"] {
	display: flex;
	justify-content: flex-end;
}

.hero-card {
	position: relative;
	background: linear-gradient(136deg, rgba(22, 30, 46, 0.96) 20%, rgba(38, 54, 78, 0.82) 60%, rgba(88, 76, 58, 0.68) 100%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 24px;
	padding: 32px;
	color: #fff;
	box-shadow: var(--shadow-strong);
	max-width: 520px;
	width: 100%;
	min-width: 320px;
	margin: 0 auto;
	overflow: hidden;
	transition: background 0.3s ease;
	text-align: left;
}

@media (min-width: 992px) {
	.hero-card {
		max-width: 640px;
	}
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(136deg, rgba(16, 24, 40, 0.92) 20%, rgba(52, 68, 92, 0.78) 60%);
	opacity: 0.9;
	filter: blur(4px);
	z-index: 0;
}

.hero-card > * {
	position: relative;
	z-index: 1;
}

.hero-tag {
	display: inline-block;
	margin-bottom: 12px;
	padding: 8px 16px;
	border-radius: 14px;
	background: rgba(7, 16, 24, 0.45);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
}

.hero-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05rem;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: left;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
}

.hero-highlight {
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 1.65;
	margin-bottom: 18px;
	padding: 12px 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(18, 24, 36, 0.94), rgba(42, 54, 72, 0.92));
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
	display: inline-block;
	max-width: 100%;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
	text-align: left;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
}

.offer-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	padding: 12px 20px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffffff, #ffe8cf);
	color: #1a1208;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
	border: 2px solid rgba(0, 0, 0, 0.08);
	text-shadow: none;
}

.hero-description {
	color: #f5f5f5;
	font-size: 1.35rem;
	line-height: 1.65;
	margin-bottom: 24px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
}

.hero-perks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px 20px;
	padding: 0;
	margin: 24px 0;
	list-style: none;
}

.hero-perks li {
	position: relative;
	padding-left: 20px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.02rem;
	margin-bottom: 4px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
}

.hero-perks li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #ffe27a;
	font-size: 1.1rem;
	line-height: 1;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	margin-top: 12px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e46d52, var(--sunset));
	border: 1px solid rgba(210, 91, 63, 0.8);
	padding: 12px 32px;
	border-radius: 999px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 12px 30px rgba(212, 48, 49, 0.35);
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
	color: #fff;
	text-decoration: none;
}

.hero-btn:hover,
.hero-btn:focus {
	background: linear-gradient(135deg, #ef7b5f, #f08f6c);
	border-color: rgba(240, 143, 108, 0.9);
	transform: translateY(-2px);
	color: #fff;
}

.hero-link {
	color: #d9f2c1;
	font-weight: 600;
	text-decoration: none;
}

.hero-link:hover,
.hero-link:focus {
	color: #f5c67a;
}

.hero-contact {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-top: 20px;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
}

.hero-contact span {
	font-weight: 600;
}

.hero-contact a {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
	.intro .overlay {
		padding: 120px 0 70px;
	}

	.hero-container {
		flex-direction: column;
		align-items: center;
	}

	.hero-row {
		flex-direction: column;
		align-items: center;
	}

	.hero-row > [class*="col-"] {
		width: 100%;
		justify-content: center;
	}

	.hero-card {
		min-width: 0;
	}

	.hero-perks {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.hero-perks {
		grid-template-columns: 1fr;
	}

	.hero-card {
		padding: 24px;
		margin-top: 16px;
	}

	.hero-cta {
		width: 100%;
	}

	.hero-btn,
	.hero-link {
		width: 100%;
		text-align: center;
	}

	.hero-contact {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		letter-spacing: 0.08em;
	}
}

@media (min-width: 992px) {
	.hero-card {
		margin-right: 0;
	}
}

/* Features Section */
#features {
	padding: 32px 0;
}

#features .features-item {
	margin: 0 12px 24px;
	background: var(--card);
	border-radius: 22px;
	padding: 20px 24px 28px;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(31, 59, 44, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	position: relative;
	overflow: hidden;
}

#features .features-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 55px rgba(31, 59, 44, 0.18);
}

#features .features-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #8fb766, #d25b3f);
	opacity: 0.9;
}

#features .features-item h3 {
	color: #1f3b2c;
	font-weight: 600;
	letter-spacing: 0.01em;
}

#features .features-item h3::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	margin: 12px auto 0;
	border-radius: 999px;
	background: rgba(143, 183, 102, 0.65);
}

#features .features-item p {
	color: #2f3640;
}

#features .section-title h2 {
	color: #1f3b2c;
}

#features .section-title h3 {
	color: #3b4250;
	font-weight: 500;
}

#features img {
	margin: 20px auto 20px;
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

#features .about-img:before {
	display: block;
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

#features p {
	line-height: 1.8;
	margin: 15px 0 30px;
}

#features h3,
#destinations-menu .menu-section-title {
	text-align: center;
}

/* About Section */
#about {
	padding: 10px 0;
	background: linear-gradient(135deg, rgba(245, 241, 232, 0.7), rgba(238, 242, 244, 0.9));
}

#about h2::after {
	bottom: 0;
	margin-left: 0;
	left: 0;
}

#about .about-text {
	padding: 60px 0;
	max-width: 720px;
}

#about .about-img {
	background: #444 url(../img/gallery-bg.jpg) center center no-repeat;
	background-size: cover;
	height: 570px;
	filter: saturate(0.92);
}

#about p {
	line-height: 1.8;
	margin: 15px 0 30px;
}

/* FAQ Section */
#faq {
	padding: 10px 0;
	background: linear-gradient(135deg, rgba(238, 242, 244, 0.9), rgba(245, 241, 232, 0.7));
}

#faq h2::after {
	bottom: 0;
	margin-left: 0;
	left: 0;
}

#faq .about-text {
	padding: 60px 0;
	max-width: 820px;
}

#faq .about-img {
	background: #444 url(../img/gallery-bg.jpg) center center no-repeat;
	background-size: cover;
	height: 570px;
}

#faq p {
	line-height: 1.7;
	margin: 10px 0 24px;
}

/* Menu Section */
#destinations-menu {
	padding: 32px 0;
}

#destinations-menu img {
	width: 100%;
	max-width: 320px;
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
	display: block;
	margin: 0 auto 12px;
}

#destinations-menu h3 {
	padding: 10px 0;
	text-transform: uppercase;
}

#destinations-menu .menu-section hr {
	margin: 0 auto;
}

#destinations-menu .menu-section {
	margin: 0 12px 28px;
	background: var(--card);
	border-radius: 22px;
	padding: 20px 24px 28px;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(39, 76, 58, 0.08);
	height: 100%;
	width: 100%;
}

#features .row,
#destinations-menu .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#features .row > [class*="col-"],
#destinations-menu .row > [class*="col-"] {
	display: flex;
}

@media (max-width: 767px) {
	#destinations-menu .row > [class*="col-"] {
		flex: 0 0 100%;
		max-width: 100%;
	}

	#destinations-menu .menu-section {
		margin: 0 0 22px;
	}
}

#destinations-menu .menu-section-title {
	font-size: 1.6rem;
	display: block;
	font-weight: 600;
	color: var(--ink);
	margin: 16px 0 12px;
	text-align: center;
}

#destinations-menu .menu-item {
	margin: 20px 0 0;
	font-size: 1rem;
	text-align: left;
}

#destinations-menu .menu-item-name {
	font-weight: 400;
	font-size: 20px;
	color: #444;
	margin-bottom: 10px;
}

#destinations-menu .menu-item-description {
	font-size: 15px;
	width: 85%;
}

#destinations-menu .menu-item-price {
	float: right;
	font-weight: 400;
	color: #555;
	margin-top: -36px;
}

/* Gallery Section */
#gallery {
	padding: 28px 0 36px;
}

#gallery .gallery-item {
	margin: 0 -15px;
}

#gallery h2::after {
	bottom: 0;
	margin-left: 30px;
}

#gallery img {
	max-width: 550px;
	aspect-ratio: 11 / 8;
	object-fit: cover;
}

/* FAQ Accordion */
.faq-accordion {
	max-width: 980px;
	margin: 0 auto;
}

.faq-group-title {
	margin: 30px 0 18px;
	font-size: 1.2rem;
	color: var(--forest);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.faq-accordion .panel {
	border: 1px solid rgba(39, 76, 58, 0.12);
	border-radius: 16px;
	box-shadow: var(--shadow-soft);
	margin-bottom: 14px;
	overflow: hidden;
}

.faq-accordion .panel-heading {
	background: rgba(255, 255, 255, 0.92);
	padding: 14px 18px;
}

.faq-accordion .panel-title a {
	display: block;
	color: var(--ink);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.faq-accordion .panel-title a:after {
	content: "+";
	float: right;
	font-weight: 700;
	color: var(--forest);
	transition: transform 0.3s ease;
}

.faq-accordion .panel-title a[aria-expanded="true"]:after {
	content: "-";
	transform: translateY(-1px);
}

.faq-accordion .panel-body {
	background: #fff;
	color: var(--slate);
	border-top: 1px solid rgba(39, 76, 58, 0.08);
	padding: 16px 18px;
}

#gallery .gallery-img {
	display: inline-block;
	position: relative;
}

/* Contact Section */
#contact {
	padding: 36px 0;
	background: linear-gradient(135deg, #11171d, #1c2a24);
}

#contact .contact-item p {
	font-size: 0.95rem;
	color: rgba(248, 250, 252, 0.65);
}

#contact .section-title {
	margin-top: 30px;
	margin-bottom: 24px;
}

#contact form {
	padding: 0;
}

#contact h3 {
	position: relative;
	text-transform: uppercase;
	font-size: 0.95rem;
	font-weight: 400;
	color: rgba(248, 250, 252, 0.75);
	padding: 20px 0;
}

#contact h3::after {
	position: absolute;
	content: "";
	background: var(--leaf);
	height: 3px;
	width: 48px;
	bottom: 0;
	margin-left: -24px;
	left: 50%;
}

#contact .text-danger {
	color: #cc0033;
	text-align: left;
}

label {
	font-size: 12px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	float: left;
}

#contact .form-control {
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 16px;
	line-height: 1.42857143;
	color: #f8fafc;
	background-color: rgba(255, 255, 255, 0.12);
	background-image: none;
	border: 1px solid rgba(248, 250, 252, 0.2);
	border-radius: 12px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

#contact .form-control:focus {
	border-color: rgba(143, 183, 102, 0.8);
	outline: 0;
	-webkit-box-shadow: transparent;
	box-shadow: transparent;
}

.form-control::-webkit-input-placeholder {
	color: #999;
}

.form-control:-moz-placeholder {
	color: #999;
}

.form-control::-moz-placeholder {
	color: #999;
}

.form-control:-ms-input-placeholder {
	color: #999;
}

#contact .contact-item {
	margin: 18px 0 36px;
}

#contact .contact-item span {
	font-weight: 400;
	color: #aaa;
	text-transform: uppercase;
	margin-bottom: 6px;
	display: inline-block;
}

/* Footer Section */
#footer {
	background: #0f1418;
	padding: 40px 0 20px;
}

#footer .social {
	margin-top: -5px;
	text-align: right;
}

#footer .social ul li {
	display: inline-block;
	margin: 0 15px;
}

#footer .social i.fa {
	font-size: 24px;
	padding: 4px;
	color: rgba(248, 250, 252, 0.6);
	transition: all 0.3s;
}

#footer .social i.fa:hover {
	color: var(--leaf);
}

#footer p {
	font-size: 14px;
	color: rgba(248, 250, 252, 0.5);
}

#footer a {
	color: #999;
}

#footer a:hover {
	color: #eee;
}
