/* ===================== ENVITELLE | GLOBAL STYLES ===================== */
:root {
  --inv-bg: #0d0e10;  
  --inv-bg-grey: #131416;    /* near-black for luxury contrast */
  --inv-card: #111214;
  --inv-text: #f6f6f6;
  --inv-muted: #c9c9cf;
  --inv-gold: #c9a64d;          /* refined gold accent */
  --inv-gold-soft: #e7d7a6;
  --inv-border: rgba(255,255,255,0.08);
  --inv-shadow: 0 10px 30px rgba(0,0,0,0.35);

  --inv-font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji";
  --inv-font-serif: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--inv-font-sans);
  color: var(--inv-text);
  line-height: 1.6;
  font-size: 16px;
  background: radial-gradient(1200px 800px at 10% -10%, rgba(201,166,77,0.10), transparent 60%),
              radial-gradient(1000px 700px at 100% 10%, rgba(255,255,255,0.05), transparent 50%),
              var(--inv-bg);
}

a {
  color: var(--inv-gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover {
	text-decoration: none;
}

i,
span,
a {
	display: inline-block;
	transition: all linear 0.3s;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6  {
	font-family: var(--inv-font-serif);
}

.brand {
	font-family: var(--inv-font-serif);
    letter-spacing: 0.2px;
	font-size: 2.5rem;
}
.accent {
	color: #b79b65;
}

.bg-grey {
    background: var(--inv-bg-grey);
}

/* Container */
.container, .inv-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Base */
section {
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
}

.inv-head {
  text-align: center;
  margin-bottom: 42px;
}

.inv-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: var(--inv-font-serif);
}

.inv-head p {
  color: var(--inv-muted);
  font-size: clamp(14px, 2.2vw, 16px);
}

/* Buttons */
.inv-btn {
    text-align: center;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 14px;
    border: 2px solid var(--inv-gold);
    color: var(--inv-gold);
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    will-change: transform;
}

.inv-btn:hover { 
    background-color: color-mix(in srgb, var(--inv-gold) 15%, transparent);
    transform: translateY(-1px);
    color: var(--inv-gold);
}

.inv-btn--primary {
  background: var(--inv-gold);
  color: #151517;
  border: 0;
}

.inv-btn--primary:hover {
    transform: translateY(-1px);
  background: var(--inv-gold);
	color: #151517;
}

.main-btn {
	display: inline-block;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 2px solid #030706;
	padding: 10px 30px;
	font-size: 15px;
	border-radius: 14px;
	color: #fff;
	cursor: pointer;
	z-index: 5;
	transition: all 0.4s ease-out 0s;
	background-color: #030706;
}

.main-btn:hover {
	background-color: #fff;
	color: #030706;
	border-color: #030706;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--inv-muted); }
.text-gold {
  background: var(--inv-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Card Base */
.inv-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%) , var(--inv-card);
  border: 1px solid var(--inv-border);
  border-radius: 22px;
  box-shadow: var(--inv-shadow);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.inv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,166,77,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* Grid Utilities */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0 14%;
}

/* responsif untuk mobile */
@media (max-width: 768px) {
  .inv-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
/* Shadows */
.shadow-soft { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.shadow-hard { box-shadow: 0 20px 50px rgba(0,0,0,0.45); }

/* Footer */
footer {
  background: #111214;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--inv-border);
  color: var(--inv-muted);
  font-size: 14px;
}
/* =================== /ENVITELLE | GLOBAL STYLES ===================== */

/*** NAVBAR ***/
.off_canvars_overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	cursor: crosshair;
	background: #232323;
	top: 0;
	transition: all linear 0.3s;
}

.off_canvars_overlay.active {
	opacity: 0.5;
	visibility: visible;
}

.offcanvas_menu {
	display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.offcanvas_menu {
		display: block;
	}
}

@media (max-width: 767px) {
	.offcanvas_menu {
		display: block;
	}
}

.offcanvas_menu_wrapper {
	width: 290px;
	position: fixed;
	background: #fff;
	z-index: 9999;
	top: 0;
	height: 100%;
	transition: 0.5s;
	left: 0;
	margin-left: -300px;
	padding: 50px 15px 30px;
	overflow-y: visible;
}

.offcanvas_menu_wrapper.active {
	margin-left: 0;
}

.offcanvas-brand {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: .5px;
}

.offcanvas_menu_wrapper .slinky-theme-default {
	background: inherit;
	min-height: 300px;
	overflow-y: auto;
}

.offcanvas_menu_wrapper .header-btn {
	margin-bottom: 30px;
}

.offcanvas_menu_wrapper .header-btn a {
	color: #222;
}

.offcanvas_menu_wrapper .header-btn a:hover {
	color: #222;
}

.offcanvas_main_menu {
	margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.offcanvas_main_menu li {
	position: relative;
}

.offcanvas_main_menu li:last-child {
	margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
	position: absolute;
	right: 0;
}

.offcanvas_main_menu li a {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ededed;
	color: #222;
	transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover {
	color: #2b70fa;
}

.offcanvas_main_menu li ul.sub-menu {
	padding-left: 20px;
}

.offcanvas_footer {
	padding-bottom: 50px;
	text-align: center;
}

.offcanvas_footer span a {
	font-size: 14px;
	color: #222;
	transition: all 0.3s ease-out 0s;
}

.offcanvas_footer span a:hover {
	color: #2b70fa;
}

.offcanvas_menu_wrapper.active .canvas_close {
	opacity: 1;
	visibility: visible;
}

.canvas_close {
	position: absolute;
	top: 10px;
	right: -40px;
	opacity: 0;
	visibility: hidden;
	transition: all linear 0.3s;
}

.canvas_close a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    background: #030706;
    color: #fff;
    transition: all 0.3s ease-out 0s;
}

.canvas_close a:hover {
	background: #b79b65;
	border-color: #b79b65;
	color: #fff;
}

.canvas_open a {
	font-size: 26px;
	width: 50px;
	height: 42px;
	display: block;
	line-height: 39px;
	text-align: center;
	border: 1px solid #232323;
	color: #222;
	transition: all 0.3s ease-out 0s;
}

.canvas_open a:hover {
	color: #2b70fa;
	border-color: #2b70fa;
}

.offcanvas-social {
	margin-bottom: 40px;
	margin-top: 40px;
}

.offcanvas-social ul li {
	display: inline-block;
}

.offcanvas-social ul li a {
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 38px;
	color: #2b70fa;
	border: 1px solid #eaeaea;
	border-radius: 50%;
	margin: 0 5px;
	transition: all 0.3s ease-out 0s;
}

.offcanvas-social ul li a:hover {
	background: #2b70fa;
	border-color: #2b70fa;
	color: #fff;
}

.toggle-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #fffefd;
}

/*** Header ***/
.header-area.sticky {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1010;
	background: #fff;
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.0588235294);
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-animation: sticky 1.2s;
	animation: sticky 1.2s;
}

.header-area {
	padding-top: 30px;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 999;
}

.logo-box {
    margin-top: -10px;
    padding: 0 10px;
}

.logo-box a {
    color: #fff;
    font-size: clamp(30px, 4vw, 36px);
    letter-spacing: 0.2px;
    padding-top: 2px;
    font-weight: 700;
    font-family: var(--inv-font-serif);
}

@media (max-width: 767px) {
    .logo-box {
        margin-top: -5px;
    }
}

.header-area .header-main-menu ul li .mega-menu-main-wrap {
	width: 1170px;
	position: absolute;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease-in-out;
	transform: scaleY(0);
	transform-origin: top center;
	text-align: center;
	left: -200px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
	padding-top: 30px;
}

.header-area .header-main-menu ul li:hover .mega-menu-main-wrap {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
}

.header-area ul.mega-menu-home {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	-moz-column-gap: 20px;
	column-gap: 20px;
	padding: 0px 20px;
}

.header-area .header-main-menu ul li .mega-menu-main-wrap .mega-menu-home li {
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
}

.header-area .header-main-menu ul li .mega-menu-main-wrap .mega-menu-home li img {
	width: 100%;
	height: 240px;
}

.header-area .header-main-menu ul li .mega-menu-home li a:hover {
	color: #2B70FA;
}

.header-area .header-main-menu ul li .mega-menu-home li img {
	box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
	height: 280px;
	transition: 0.5s ease-in-out;
}

.header-area .header-main-menu ul li .mega-menu-home li:hover img {
	transform: translateY(-15px);
}

.header-area .header-main-menu ul li .pages-mega-menu {
	width: 1170px !important;
	position: absolute;
	background: #fff;
	padding: 15px 30px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
	padding-top: 40px !important;
	opacity: 0;
	visibility: hidden;
	transform: scaleY(0);
	transition: 0.4s ease-in-out;
	transform-origin: top center;
	left: -291px;
	margin: auto;
	padding-left: 40px;
	padding-bottom: 30px;
}

.header-area .header-main-menu ul li:hover .pages-mega-menu {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
}

.header-area .header-main-menu ul li .pages-mega-menu ul {
	float: left;
	width: auto;
}

.header-area .header-main-menu ul li .pages-mega-menu ul li {
	display: block;
}

.header-area .header-main-menu ul li .pages-mega-menu ul li a {
	font-size: 16px;
	font-weight: 400;
	line-height: 40px;
}

.header-area .header-main-menu ul li .pages-mega-menu ul li a:hover {
	color: #2B70FA;
}

.header-area .header-main-menu ul li .pages-mega-menu ul li:first-child a {
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.header-area .hot::after {
	content: "HOT";
	font-size: 12px;
	position: absolute;
	top: -13px;
	right: -1px;
	background: #D41212;
	height: 20px;
	line-height: 21px;
	width: 40px !important;
	display: block;
	text-align: center;
	color: #fff;
}

.header-area .hot::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 0 18px;
	border-color: transparent transparent transparent #D41212;
	position: absolute;
	right: 15px;
	bottom: 32px;
	transform: rotate(-120deg);
}

.header-area .feature::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 0 18px;
	border-color: transparent transparent transparent #D41212;
	position: absolute;
	right: 15px;
	bottom: 30px;
	transform: rotate(-120deg);
}

.header-area .feature::after {
	content: "feature";
	font-size: 13px;
	position: absolute;
	top: -10px;
	right: -1px;
	background: #D41212;
	height: 19px;
	line-height: 19px;
	width: 62px !important;
	display: block;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}

.header-area .projects::after {
	content: "PROJECTS";
	font-size: 12px;
	position: absolute;
	top: -14px;
	right: -46px;
	background: #2b70fa;
	height: 20px;
	line-height: 21px;
	width: 70px !important;
	display: block;
	text-align: center;
	color: #fff;
}

.header-area .projects::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 0 13px;
	border-color: transparent transparent transparent #2b70fa;
	position: absolute;
	right: 4px;
	bottom: 30px;
	transform: rotate(-120deg);
}

.header-area .mega-menu-recent-ports ul {
	overflow: hidden;
}

.header-area .mega-r-post {
	font-size: 18px;
	font-weight: 500;
	color: #0e1133;
	margin-top: 8px;
	margin-bottom: 25px;
}

.header-area .mega-recent-post-text img {
	float: left;
	width: 23%;
}

.header-area .mega-menu-ul-block {
	float: none !important;
	width: 325px !important;
}

.header-area .mega-recent-post-text a {
	display: block;
}

.header-area .mega-recent-post-text h5 {
	font-size: 16px;
	font-family: roboto;
	font-weight: 400;
	line-height: 20px;
	font-weight: 500;
	transition: 0.3s;
}

.header-area .mega-recent-post-text h5:hover {
	color: #2B70FA;
}

.header-area .mega-recent-post-text ul li {
	font-size: 14px;
	color: #5E5E5E;
}

.header-area .mega-recent-post-text ul li a {
	font-size: 14px !important;
	color: #5E5E5E;
}

.header-area .mega-recent-right-txt {
	float: right;
	width: 73%;
}

.header-area .mega-menu-ul-block-lst li {
	display: inline-block !important;
}

.header-area .blog-comment {
	margin-left: -25px;
	font-weight: 400 !important;
	font-size: 14px !important;
}

.header-area .recent-right-text {
	margin-bottom: 15px !important;
	display: block !important;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
}

.header-area .mega-menu-ul-block li:last-child {
	border: none;
}

.header-area .mega-recent-ftxt {
	text-transform: inherit !important;
}

.header-area .header-main-menu ul li .blog-mega-menu {
	width: 750px !important;
}

.header-area .blog-wrap-ul {
	width: 26% !important;
}

.header-area .blog-wrap-ul:nth-child(2) {
	width: 30% !important;
}

.header-area .pages-mega-menu.mega-menu-mainn-wrap {
	padding-left: 100px !important;
}

.header-area .pages-mega-menu.mega-menu-mainn-wrap ul {
	margin: 0 25px;
}

.header-area .mega-menu-ul-block {
	margin-left: 0 !important;
}

.header-area.header-page-area.sticky.sticky {
	background: #0a44b9;
}

.header-area.header-error-page {
	box-shadow: 0px 10px 20px 0px rgba(14, 17, 51, 0.1);
	padding-top: 20px;
	padding-bottom: 20px;
}

.header-nav-box .btn-box {
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-nav-box .btn-box {
		padding-right: 50px;
	}
}

@media (max-width: 767px) {
	.header-nav-box .btn-box {
		padding-right: 30px;
	}
}

.header-nav-box .btn-box .main-btn {
    background-color: var(--inv-gold);
    color: #0e1133;
    border-color: var(--inv-gold);
    font-size: 15px;
    font-weight: 500;
    padding: 7px 30px;
}

.header-nav-box .btn-box .main-btn:hover {
    transform: translateY(-1px);
	  background: var(--inv-gold);
	color: #151517;
}

.header-nav-box .btn-box .main-btn i {
	padding-right: 6px;
}

@media (max-width: 767px) {
	.header-nav-box .btn-box .main-btn {
		display: none;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.header-nav-box .btn-box .main-btn {
		padding: 0 10px;
		display: inline-block;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-main-menu {
		display: none;
	}
}

@media (max-width: 767px) {
	.header-main-menu {
		display: none;
	}
}

.header-main-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.header-main-menu ul>li {
	display: inline-block;
	margin-right: 30px;
	position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.header-main-menu ul>li {
		margin-right: 14px;
	}
}

.header-main-menu ul>li>a {
	font-size: 16px;
	font-weight: 500;
	color: #fffefd;
	line-height: 45px;
}

.header-main-menu ul>li>a i {
	padding-left: 6px;
}

.header-main-menu ul>li .sub-menu {
	position: absolute;
	left: 0;
	top: 110%;
	width: auto;
	min-width: 220px;
	max-width: 220px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: all linear 0.3s;
	z-index: 99;
	box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
	list-style-type: none;
	margin: 0;
	padding: 15px 0;
	border-radius: 5px;
	text-align: left;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.header-main-menu ul>li .sub-menu {
		min-width: 200px;
		max-width: 200px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.header-main-menu ul>li .sub-menu {
		min-width: 200px;
		max-width: 200px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-main-menu ul>li .sub-menu {
		position: relative;
		width: 100%;
		left: 0;
		top: auto;
		opacity: 1;
		visibility: visible;
		display: none;
		right: auto;
		transform: translateX(0%);
		transition: all none ease-out 0s;
		box-shadow: none;
		text-align: left;
		border-top: 0;
		transition: 0s;
		padding: 0;
	}
}

@media (max-width: 767px) {
	.header-main-menu ul>li .sub-menu {
		position: relative;
		width: 100%;
		left: 0;
		top: auto;
		opacity: 1;
		visibility: visible;
		display: none;
		right: auto;
		transform: translateX(0%);
		transition: all none ease-out 0s;
		box-shadow: none;
		text-align: left;
		border-top: 0;
		transition: 0s;
		padding: 0;
	}
}

.header-main-menu ul>li .sub-menu>li {
	position: relative;
	margin-left: 0;
	display: block;
}

.header-main-menu ul>li .sub-menu>li .sub-menu {
	margin-left: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-main-menu ul>li .sub-menu>li .sub-menu {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.header-main-menu ul>li .sub-menu>li .sub-menu {
		margin-left: 0;
	}
}

.header-main-menu ul>li .sub-menu>li .sub-nav-toggler {
	color: #0e1133;
	transition: all 0.3s ease-out 0s;
}

.header-main-menu ul>li .sub-menu>li a {
	display: block;
	padding: 0px 30px;
	position: relative;
	color: #505056;
	transition: all 0.3s ease-out 0s;
	border-radius: 4px;
	margin: 0 0;
	line-height: 2.5;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.header-main-menu ul>li .sub-menu>li a {
		padding: 0 20px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.header-main-menu ul>li .sub-menu>li a {
		padding: 0 20px;
	}
}

.header-main-menu ul>li .sub-menu>li a i {
	float: right;
	font-size: 16px;
	margin-top: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-main-menu ul>li .sub-menu>li a i {
		display: none;
	}
}

@media (max-width: 767px) {
	.header-main-menu ul>li .sub-menu>li a i {
		display: none;
	}
}

.header-main-menu ul>li .sub-menu>li a .sub-nav-toggler i {
	display: inline-block;
}

.header-main-menu ul>li .sub-menu>li a:hover {
	padding-left: 35px;
}

.header-main-menu ul>li .sub-menu>li .sub-menu {
	right: auto;
	left: 100%;
	top: 50%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-main-menu ul>li .sub-menu>li .sub-menu {
		padding-left: 30px;
		transition: all 0s ease-out 0s;
	}
}

@media (max-width: 767px) {
	.header-main-menu ul>li .sub-menu>li .sub-menu {
		padding-left: 30px;
		transition: all 0s ease-out 0s;
	}
}

.header-main-menu ul>li .sub-menu>li .sub-menu li {
	position: relative;
}

.header-main-menu ul>li .sub-menu>li .sub-menu li .sub-menu {
	right: auto;
	left: 100%;
	top: 50%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out 0s;
}

.header-main-menu ul>li .sub-menu>li .sub-menu li:hover .sub-menu {
	top: 0%;
	opacity: 1;
	visibility: visible;
}

.header-main-menu ul>li .sub-menu>li:hover .sub-menu {
	top: 0%;
	opacity: 1;
	visibility: visible;
}

.header-main-menu ul>li .sub-menu>li:hover .sub-nav-toggler {
	color: #2b70fa;
}

.header-main-menu ul>li .sub-menu>li:hover>a {
	color: #2b70fa;
}

.header-main-menu ul>li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 100%;
}

@-webkit-keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}

@keyframes sticky {
	0% {
		top: -200px;
	}

	100% {
		top: 0;
	}
}

/*** Hero ***/
.hero-area {
  height: 100vh; /* fullscreen */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  background-image: url('../img/bg-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* efek luxury parallax */
}

.hero-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 55%); /* overlay gelap */
  z-index: -1;
}

.hero-content .hero-tagline {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--inv-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.hero-area .hero-thumb-6 .thumb {
	position: relative;
	z-index: 10;
}

.hero-area .hero-thumb-6 .thumb .back-image {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero-content {
		margin-bottom: 50px;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.hero-content {
		margin-top: 50px;
		text-align: center;
	}
}

.hero-content>span {
	color: #2b70fa;
	font-size: 14px;
	font-weight: 500;
}

.hero-content .title {
	color: #fff;
	text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: 0.2px;
	margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.hero-content .title {
		font-size: 48px;
		line-height: 58px;
	    margin-bottom: 24px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero-content .title {
		font-size: 48px;
		line-height: 58px;
	    margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.hero-content .title {
		font-size: 32px;
		line-height: 38px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.hero-content .title {
		font-size: 38px;
		line-height: 46px;
	}
}

.hero-content p {
	font-size: 18px;
	line-height: 28px;
	text-align: center;
    margin-bottom: 20px;
	color: #fff
}

@media (max-width: 767px) {
	.hero-content p {
		font-size: 15px;
		line-height: 26px;
	    margin-bottom: 10px;
	}
}

.hero-content ul {
	margin: 20px 0 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}

.hero-content ul li {
	display: inline-block;
	margin-right: 8px;
}

@media (max-width: 767px) {
	.hero-content ul li {
		margin-bottom: 8px;
		display: block;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.hero-content ul li {
		margin-bottom: 0px;
	}
}

.hero-content ul li a {
    display: block;
    padding: 10px 30px;
    border-radius: 14px;
    border: 1px solid var(--inv-gold);
    font-weight: 600;
    margin-top: 15px;
}

.hero-content ul li a i {
	padding-right: 6px;
}

.hero-content ul li a.item-2 {
	background: transparent;
	color: #0e1133;
}

.hero-content ul li a.item-2:hover {
	background: #0e1133;
	color: #fff;
}

.hero-thumb {
	position: relative;
	z-index: 10;
	text-align: center;
}

.hero-thumb .thumb-2 {
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0px 30px 70px 0px rgba(68, 1, 15, 0.2);
}

.hero-thumb::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	height: 500px;
	width: 500px;
	transform: translate(-50%, -50%);
	background: #ff3e66;
	border-radius: 50%;
	z-index: -1;
}

.hero-area-2 {
	padding-top: 290px;
	padding-bottom: 170px;
	background: #eef1f6;
	position: relative;
	overflow: hidden;
	z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.hero-area-2 {
		padding-top: 190px;
		padding-bottom: 120px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero-area-2 {
		padding-top: 190px;
		padding-bottom: 120px;
	}
}

@media (max-width: 767px) {
	.hero-area-2 {
		padding-top: 190px;
		padding-bottom: 150px;
	}
}

.hero-area-2 .hero-thumb-3 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 48%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.hero-area-2 .hero-thumb-3 {
		width: 60%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero-area-2 .hero-thumb-3 {
		width: 40%;
	}
}

@media (max-width: 767px) {
	.hero-area-2 .hero-thumb-3 {
		width: 36%;
	}
}

.hero-area-2 .hero-shape-1 {
	position: absolute;
	top: 250px;
	left: 130px;
	-webkit-animation: linear 20s animationFramesOne infinite;
	animation: linear 20s animationFramesOne infinite;
	z-index: -1;
}

.hero-area-2 .hero-shape-2 {
	position: absolute;
	bottom: 290px;
	left: 40px;
	-webkit-animation: linear 20s animationFramesFour infinite;
	animation: linear 20s animationFramesFour infinite;
	z-index: -1;
}

.hero-area-2 .hero-shape-3 {
	position: absolute;
	top: 480px;
	right: 240px;
	-webkit-animation: linear 20s animationFramesFive infinite;
	animation: linear 20s animationFramesFive infinite;
	z-index: -1;
}

.hero-area-2 .hero-shape-4 {
	position: absolute;
	top: 210px;
	right: 0px;
	-webkit-animation: linear 20s animationFramesThree infinite;
	animation: linear 20s animationFramesThree infinite;
	z-index: -1;
}

.hero-content-2>span {
	font-size: 16px;
	font-weight: 500;
	color: #ff3e66;
	position: relative;
}

.hero-content-2>span::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 40%;
	transform: translate(-50%, -50%);
	width: 130px;
	height: 70px;
	background-image: url(../images/hero-line.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-content-2 .title {
	font-size: 64px;
	line-height: 70px;
	font-weight: 400;
	margin-top: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.hero-content-2 .title {
		font-size: 50px;
		line-height: 50px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero-content-2 .title {
		font-size: 50px;
		line-height: 60px;
	}
}

@media (max-width: 767px) {
	.hero-content-2 .title {
		font-size: 30px;
		line-height: 40px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.hero-content-2 .title {
		font-size: 40px;
		line-height: 50px;
	}
}

.hero-content-2 .title span {
	font-weight: 900;
}

.hero-content-2 p {
	font-size: 18px;
	color: #0e1133;
	margin-top: 22px;
}

.hero-content-2 .input-box {
	position: relative;
	margin-top: 40px;
	width: 400px;
}

@media (max-width: 767px) {
	.hero-content-2 .input-box {
		width: 100%;
	}
}

.hero-content-2 .input-box>i {
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	color: #c3c3cc;
}

.hero-content-2 .input-box input {
	width: 100%;
	height: 60px;
	border-radius: 40px;
	border: 0;
	border-left: 3px solid #ff3e66;
	padding-left: 55px;
	box-shadow: -3px 0px 0px 0px rgba(255, 62, 102, 0.004), 0px 30px 30px 0px rgba(14, 17, 51, 0.1);
}

.hero-content-2 .input-box button {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 50px;
	background: #fff;
	border-radius: 50%;
	border: 0;
	color: #ff3e66;
}

.hero-content-2 .hero-users {
	display: flex;
	align-items: center;
	margin-top: 40px;
}

.hero-content-2 .hero-users>span {
	margin-left: 20px;
	font-size: 26px;
	font-weight: 900;
	color: #0e1133;
	width: 60px;
	display: inline-block;
	line-height: 16px;
}

.hero-content-2 .hero-users>span span {
	font-size: 13px;
	font-weight: 500;
	color: #505056;
	display: inline-block;
	line-height: 13px;
}

.page-title-area {
	height: 450px;
	background-image: url(../images/page-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.page-title-area.page-service-title-area {
	height: 650px;
	background-image: url(../images/page-title-bg.jpg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.page-title-area.page-service-title-area {
		height: 500px;
	}
}

@media (max-width: 767px) {
	.page-title-area.page-service-title-area {
		height: 400px;
	}
}

.page-title-area.page-service-title-area .page-title-item .thumb {
	right: 110px;
	width: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.page-title-area.page-service-title-area .page-title-item .thumb {
		right: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.page-title-area.page-service-title-area .page-title-item .thumb {
		display: none;
	}
}

@media (max-width: 767px) {
	.page-title-area.page-service-title-area .page-title-item .thumb {
		display: none;
	}
}

.page-title-item {
	margin-top: 80px;
	position: relative;
}

.page-title-item .thumb {
	position: absolute;
	right: 0;
	bottom: -100px;
	width: 160px;
}

@media (max-width: 767px) {
	.page-title-item .thumb {
		display: none;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.page-title-item .thumb {
		display: block;
	}
}

.page-title-item span {
	color: #fff;
	font-weight: 500;
	opacity: 0.7;
	padding-bottom: 14px;
}

.page-title-item .title {
	color: #fff;
	font-size: 44px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.page-title-item .title {
		font-size: 26px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.page-title-item .title {
		font-size: 32px;
	}
}

.page-title-item nav {
	display: inline-block;
	margin-top: 20px;
}

.page-title-item nav ol {
	background: transparent;
	padding: 0;
}

.page-title-item nav ol li a {
	color: #fff;
	opacity: 0.8;
}

.page-title-item nav ol li.active {
	color: #fff;
	opacity: 0.8;
}

/* Why Envitelle */
.why-envitelle {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-card {
  border-radius: 16px;
  padding: 40px 20px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%), var(--inv-card);
  border: 1px solid var(--inv-border);
  box-shadow: var(--inv-shadow);
  overflow: clip;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: rgba(201,166,77,0.35);
}

.why-card ion-icon {
  font-size: 2.2rem;
  color: #b49b57;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--inv-gold);
}

.why-card p {
    font-size: clamp(14px, 2.2vw, 16px);
    color: var(--inv-muted);
    line-height: 1.6;
}

/* =========================
   Catalog Section
========================= */
.catalog {
    text-align: center;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.catalog-item {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%), var(--inv-card);
  border: 1px solid var(--inv-border);
  border-radius: 16px;
  box-shadow: var(--inv-shadow);
  display: flex;
  flex-direction: column;
  overflow: clip;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.catalog-item:hover {
transform: translateY(-4px);
  border-color: rgba(201,166,77,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.catalog-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.catalog-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--inv-text);
  margin-bottom: 15px;
}

.btn-view {
    padding: 10px 32px;
    background: transparent;
    color: var(--inv-text);
    border: none;
    transition: background 0.3s ease;
}

.btn-view:hover {
    background: transparent;
    color: var(--inv-text);
}

.btn-view i {
    padding-left: 6px;
    transition: padding-left 0.3s ease;
}

.btn-view:hover i {
    padding-left: 12px;
}

.inv-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%) , var(--inv-card);
  border: 1px solid var(--inv-border);
  border-radius: 22px;
  box-shadow: var(--inv-shadow);
  display: flex;
  flex-direction: column;
  overflow: clip;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.inv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,166,77,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.inv-card__head {
  padding: 28px 26px 10px;
}

.inv-card__title {
  font-size: 22px;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

.inv-card__tagline {
  color: var(--inv-muted);
  margin: 0 0 16px;
  font-size: 14px;
}

.inv-card__price {
  display: flex;
  align-items: anchor-center;
  gap: 10px;
  padding: 8px 14px;
  width: max-content;
}

.inv-price__currency {
  font-size: 14px;
  color: var(--inv-gold-soft);
  letter-spacing: 0.8px;
}

.inv-price__value {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--inv-gold);
  -webkit-background-clip: text;
  background-clip: text;
}

.inv-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 26px 0 26px;
  display: grid;
  gap: 10px;
}

.inv-list li {
  position: relative;
  color: #eaeaec;
  line-height: 1.5;
  font-size: 14px;
}

.inv-list li i {
    height: 18px;
    width: 18px;
    font-size: 10px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    background: #222326;
    color: #c9a64d;
    margin-right: 3px;
}

.inv-card__foot {
  margin-top: auto;
  padding: 22px 26px 26px;
  display: grid;
  gap: 10px;
}

.inv-note {
  color: var(--inv-muted);
  font-size: 12.5px;
}

.inv-card--popular {
  border-color: rgba(201,166,77,0.45);
  position: relative;
  outline: 1px solid rgba(201,166,77,0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}

.inv-ribbon {
  position: absolute;
  top: 14px; right: -44px;
  background: linear-gradient(90deg, var(--inv-gold), #f1e4b0);
  color: #1a1a1d;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 64px;
  transform: rotate(35deg);
  letter-spacing: .6px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.inv-fineprint {
  max-width: 900px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--inv-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ADD-ONS */
.inv-addons {
  color: var(--inv-text);
  padding: 10px 0 clamp(56px, 8vw, 96px);
}

.inv-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.inv-addon {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%) , var(--inv-card);
  border: 1px solid var(--inv-border);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, border-color .3s ease;
}

.inv-addon:hover {
  transform: translateY(-4px);
  border-color: rgba(201,166,77,0.35);
}

.inv-addon__title {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--inv-gold-soft);
}

.inv-addon__desc {
  font-size: 14px;
  color: var(--inv-muted);
  flex-grow: 1;
  margin-bottom: 0;
}

.inv-addon__price {
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(90deg, var(--inv-gold), #f1e4b0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Order Section */
.order-steps {
  text-align: center;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.step-order {
	background: var(--inv-card);
	padding: 24px;
	border-radius: 18px;
	border: 1px solid var(--inv-border);
	box-shadow: var(--inv-shadow);
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform .3s ease, border-color .3s ease;
}

.step-order:hover {
  transform: translateY(-4px);
  border-color: rgba(201,166,77,0.35);
}

.icon {
	height: 56px;
	width: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	background: linear-gradient(180deg, rgba(201, 166, 77, 0.09), rgba(201, 166, 77, 0.04));
	color: var(--inv-gold);
}

.step-order h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--inv-text);
	text-align: left;
}

.step-order p {
	margin: 0;
	color: var(--inv-muted);
	font-size: 14px;
	text-align: left;
}

.num {
	font-size: 12px;
	color: var(--inv-muted);
	font-weight: 600;
	letter-spacing: 0.5px;
	text-align: left;
}

.step-row {
	display: flex;
	gap: 12px;
	align-items: center;
	width: 100%
}

@media(max-width:900px) {
	.steps {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:520px) {
	.steps {
		grid-template-columns: 1fr
	}
}

.cta {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}

/* Testimonials */
#testimonials {
  background: #0d0e10;
  color: var(--inv-text);
  padding: 80px 20px;
  text-align: center;
}

.testimonial-slider {
  margin-top: 40px;
}

.testimonial-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 30px;
  margin: 0 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.testimonial-author {
  font-weight: bold;
  font-size: 1rem;
  color: #222;
}

/* FAQ Styles */
.faq {
  text-align: center;
}

.faq-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  text-align: left;
}

.faq-question:hover {
	background-color: transparent;
}

.faq-toggle {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 10px 30px 0 20px;
    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  content: "-";
}

.faq-answer p {
    font-size: 14px;
    text-align: left;
}

/* ===== FOOTER CSS ===== -*/
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer .logo {
  font-size: 24px;
  font-weight: 700;
  color: #f5c16c;
  margin-bottom: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f5c16c;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
  color: #f5c16c;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa; 
}

label {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

input, select, textarea {
	padding: 0.7rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
}

.addons {
	display: flex;
	flex-direction: column;
}

.addons label {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	font-weight: 400;
}

.addons .addon {
	width: 1.1em;
    height: 1.1em;
}

.addons input[type="checkbox"] {
	margin-right: 0.5rem;
}

.total-details{
	background-color: #f4f4f4;
	padding: 1rem 1.5rem;
	border-radius: 8px;
}

.total-title {
	font-weight: bold;
}

.total {
	font-weight: 600;
	font-size: 1rem;
}

button {
	margin-top: 1rem;
	background-color: #d4af37;
	color: white;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #c19e30;
}

.form-control[type="text"],
.form-control[type="email"] {
	border:1px solid #ddd;
	background-color:#fff;
	font-weight:normal;
	font-size:14px;
	box-shadow:none;
	border-radius:6px;
	height:52px;
	padding:0 20px;
	vertical-align:middle;
	transition:all 0.3s;
}

.form-select {
	font-size: 14px;
	border: 1px solid #ddd;
	box-shadow: none;
	width: 100%;
	height: 57px;
	padding: 0 20px;
	transition: all 0.3s;
}

.form-select:focus{
    border-color: #ddd;
    box-shadow: none;
}

textarea.form-control {
    border:1px solid #ddd;
	background-color:#fff;
	font-weight:normal;
	font-size:14px;
	box-shadow:none;
	border-radius:6px;
	padding:12px 20px;
	vertical-align:middle;
	transition:all 0.3s;
}

textarea.form-control:focus {
    border-color: #ddd;
    box-shadow: none;
}

/* Order Form */
.order-form-container {
    padding: 40px 0;
    margin: 40px auto;
    max-width: 900px;
}

@media (min-width: 767px) {
	.order-form-container {
        padding: 40px 40px;
    }
}

.form-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--inv-border);
}

@media (max-width: 767px) {
    .form-section {
        padding: 30px 10px;
    }
}

.progress-bar {
    height: 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--inv-gold), var(--inv-gold-soft));
    transition: width 0.5s ease;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step .inv-grid {
    padding: 0;
    gap: 20px;
}

@media (max-width: 767px) {
	#step-4 .inv-grid {
        gap: 0;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.package-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%), var(--inv-card);
    border: 1px solid var(--inv-border);
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.package-card:hover, .package-card.selected {
    transform: translateY(-5px);
    border-color: var(--inv-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.selected-package-info {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%), var(--inv-card);
    border: 1px solid var(--inv-gold);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.selected-package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--inv-gold);
    color: #151517;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.package-card .inv-card__head {
    padding: 0 0 20px;
}

.package-card .inv-card__tagline {
  margin: 0 0 4px;
}

.package-card .inv-card__price {
    padding: 8px 14px 8px 0;
}

.package-card .inv-price__value {
    font-size: 30px;
    font-weight: 700;
}

.package-card sup {
    top: -3px;
}

.package-card .inv-list {
    padding: 0;
}

.package-card .inv-card__foot {
   padding: 30px 0 10px;
}

.addon-option {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%), var(--inv-card);
    border: 1px solid var(--inv-border);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-option:hover, .addon-option.selected {
    border-color: var(--inv-gold);
    box-shadow: 0 5px 15px rgba(201, 166, 77, 0.2);
}

.addon-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--inv-border);
}

.addon-option.disabled:hover {
    transform: none;
    border-color: var(--inv-border);
    box-shadow: none;
}

.addon-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.addon-info p {
    font-size: 15px;
}

.addon-price {
    font-weight: bold;
    color: var(--inv-gold);
    margin-left: 15px;
    font-size: 14px;
}

.premium-included {
    display: inline-block;
    background: rgba(201, 166, 77, 0.2);
    color: var(--inv-gold);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

.design-option {
    border: 1px solid var(--inv-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.design-option:hover, .design-option.selected {
    transform: scale(1.03);
    border-color: var(--inv-gold);
    box-shadow: 0 5px 15px rgba(201, 166, 77, 0.2);
}

.design-option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.design-option-content {
    padding: 15px;
    background: var(--inv-card);
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--inv-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--inv-text);
    font-family: var(--inv-font-sans);
    transition: all 0.3s ease;
    margin-top: 8px;
    margin-bottom: 20px;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--inv-gold);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 166, 77, 0.2); 
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	background: rgba(255, 255, 255, 0.05);
}

label {
    display: block;
    margin-bottom: 0px;
    color: var(--inv-muted);
    font-weight: 500;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .form-navigation {
        display: block;
    }
    
    .form-navigation .inv-btn {
       display: block;
       width: 100%;
    }
}

.order-summary {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--inv-border);
    margin-top: 10px;
    margin-bottom: 30px;
}

.order-summary h3 {
    margin-bottom: 15px;
    color: var(--inv-gold-soft);
}

.order-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--inv-border);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-top: 15px;
    padding-top: 15px;
    color: var(--inv-gold);
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-start {
    align-items: flex-start;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Header Styles */
.header-area-order {
    padding-top: 30px;
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
}

.header-nav-box-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box-order {
    margin-top: -10px;
    padding: 0 10px;
}

.logo-box-order a {
    color: #fff;
    font-size: clamp(26px, 4vw, 36px);
    letter-spacing: 0.2px;
    padding-top: 2px;
    font-weight: 700;
    font-family: var(--inv-font-serif);
}

@media (max-width: 767px) {
    .logo-box-order {
        margin-top: -5px;
    }
}

.btn-box-order a {
    background-color: var(--inv-gold);
    color: #0e1133;
    border-color: var(--inv-gold);
    font-size: 15px;
    font-weight: 500;
    padding: 7px 30px;
}

.btn-box-order a:hover {
    transform: translateY(-1px);
	  background: var(--inv-gold);
	color: #151517;
}

/* Footer Styles */
.offcanvas-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.offcanvas-social ul li {
    display: inline-block;
}

.offcanvas-social ul li a {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    color: var(--inv-gold);
    border: 1px solid var(--inv-border);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease-out 0s;
}

.offcanvas-social ul li a:hover {
    background: var(--inv-gold);
    border-color: var(--inv-gold);
    color: #151517;
}

.footer-bottom {
    border-top: 1px solid var(--inv-border);
    padding-top: 20px;
    margin-top: 20px;
}

/* Validation Styles */
.error-message {
    color: #ff6b6b;
    font-size: 14px;
    display: none;
}

.error {
    border-color: #ff6b6b !important;
}

.error-message.show {
    display: block;
}

.validation-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 8px;
    padding: 12px 15px 8px;
    margin: 15px 0;
    display: none;
    font-size: 14px;
}

.validation-error.show {
    display: block;
}

.validation-error ul {
    margin: 0;
    padding-left: 20px;
}

.validation-error li {
    margin-bottom: 5px;
}

/* Loading Spinner */
.spinner {
    display: none;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--inv-gold);
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-with-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success Message */
.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

.success-message i {
    color: #2ecc71;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Process Info Styles */
.process-info {
    background: rgba(201, 166, 77, 0.05);
    border: 1px solid rgba(201, 166, 77, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.process-info h4 {
    color: var(--inv-gold-soft);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-info h4 i {
    color: var(--inv-gold);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    gap: 12px;
}

.step-number {
    background: var(--inv-gold);
    color: #151517;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h5 {
    color: var(--inv-text);
    margin-bottom: 5px;
    font-size: 15px;
}

.step-content p {
    color: var(--inv-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .process-info {
        padding: 15px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 8px;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

/*Bootstrap Calendar*/
.datepicker {
	border-radius: 0;
	padding: 0;
}
.datepicker-days table thead, .datepicker-days table tbody, .datepicker-days table tfoot {
	padding: 8px;
	display: list-item;
}
.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
	background: #3546b3;
	color: #ffffff;
	border-radius: 0;
}
.datepicker-days table thead tr:nth-child(2n+0) td, .datepicker-days table thead tr:nth-child(2n+0) th {
	border-radius: 3px;
}
.datepicker-days table thead tr:nth-child(3n+0) {
	text-transform: uppercase;
	font-weight: 300 !important;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
}
.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
	padding: 8px 10px;
	text-align: center;
	font-size: 14px;
}
.datepicker-months table thead td, .datepicker-months table thead th, .datepicker-years table thead td, .datepicker-years table thead th, .datepicker-decades table thead td, .datepicker-decades table thead th, .datepicker-centuries table thead td, .datepicker-centuries table thead th {
	border-radius: 0;
}
.datepicker td, .datepicker th {
	border-radius: 50%;
	padding: 0 12px;
	font-weight: 300;
}
.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
	background: #3546b3;
	color: #ffffff;
	border-radius: 0;
}
.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
	background-image: none;
}
.datepicker .prev, .datepicker .next {
	color: rgba(255, 255, 255, 0.5);
	transition: 0.3s;
	width: 37px;
	height: 37px;
}
.datepicker .prev:hover, .datepicker .next:hover {
	background: transparent;
	color: rgba(255, 255, 255, 0.99);
}
.datepicker .datepicker-switch {
	font-size: 20px;
	font-weight: 400;
	transition: 0.3s;
}
.datepicker .datepicker-switch:hover {
	color: rgba(255, 255, 255, 0.7);
	background: transparent;
}
.datepicker table tr td span {
	border-radius: 2px;
	margin: 3%;
	width: 27%;
}
.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
  background-color: #3546b3;
  background-image: none;
}
.dropdown-menu {
	border: 1px solid rgba(0,0,0,.1);
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.datepicker-dropdown.datepicker-orient-top:before {
	border-top: 7px solid rgba(0,0,0,.1);
}

footer {
	background-color: #f0ece6;
	padding: 2rem 0;
}