@charset "utf-8";
/* CSS Document */

/******* Fonts Face CSS Start **********/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
  font-family: "erode";
  src: url("../fonts/Erode-Variable.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
/********* Fonts Face CSS End **********/
:root {
  --primary: #cbab78;
  --primary-rgb: 203, 171, 120;
  --primary-light: #ecdcbf;
  --primary-light-soft: #ddd5c9;
  --primary-medium: #DDD5C9;
  --secondary: #08080a;
  --secondary-rgb: 8, 8, 10;
  --light: #f9f4ed;
  --white: #ffffff;
  --color-input-bg: #1a1a1d;
  --color-input-border: #333333;
  --color-input-border-focus: #cbab78;
}
/******* Common Element CSS Start ******/
* 						{ margin: 0px; padding: 0px;}
body 					{ font-family: "Inter", sans-serif; font-size: 16px; line-height: 1.6; font-weight: 300; background: var(--secondary); color: var(--primary-light-soft); }
.clear 					{ clear:both;}
::selection { background: var(--primary); color: var(--secondary); }
img 					{ border: 0px;}
ul,ol 					{ list-style: none; margin: 0; padding: 0;}
a 						{ text-decoration: none; outline: none; color: inherit; transition: all 0.3s ease-in-out;}
a:focus, a:active, a:visited, a:hover	{ text-decoration: none; outline: none; }
.h1,
h1 						    { margin-bottom: 24px; font-size: 60px; color: var(--primary-light-soft); line-height: 1; font-family: "erode"; font-weight: 300; }
.h1 span, .h2 span,
h1 span             { color: var(--primary); }
.h2 span.secondary-text { color: var(--secondary); }     
.h2,
h2            {  margin-bottom: 24px; font-size: 48px; line-height: 1; font-family: "erode"; font-weight: 300; }
.h3,
h3 						{ font-size: 30px; line-height: 1.2; font-family: "erode"; font-weight: 300; }
.h4,
h4 						{ font-size: 24px; line-height: 1.2; font-family: "erode"; }
.h5,
h5 						{ margin-bottom: 16px; font-size: 17px; line-height: 1.6; font-weight: 300; }
.h6,
h6 						{ margin-bottom: 24px; font-size: 12px; line-height: 16px; font-family: "Inter", sans-serif; letter-spacing: 0.4em; color: var(--primary); text-transform: uppercase; }
.h6.secondary-text { color: var(--secondary); font-family: "Inter", sans-serif; }
p 						{ }
.small-text     { font-size: 14px; }
.xs-text        { font-size: 12px; }
.font-head      { font-family: "erode";  }
button 					{ transition: all 0.3s ease-in-out; }
img                     { max-width: 100%; }

/******* Common Element CSS End *********/
/* -------- title style ------- */
.theme-bg     { background: var(--primary); }
.theme-text     { color: var(--primary); }
.secondary-text { color: var(--secondary); }

/* -------- Button style ------- */
.theme-btn              { display: inline-flex; gap: 8px; align-items: center; padding: 12px 32px; font-size: 14px; background: var(--primary); color: var(--secondary); font-weight: 500; border: 2px solid var(--primary); border-radius: 2em; }
.theme-btn:hover        { background-color: var(--primary-light); border-color: var(--primary-light); box-shadow: 0 0 48px rgba(203, 171, 120, 0.8); }
.theme-btn.outline-btn  { background: transparent; color: var(--primary); border-color: var(--primary); }
.theme-btn.outline-btn:hover { background: var(--primary); color: var(--secondary); }
.theme-btn.white-btn    { background: var(--white); color: var(--primary); }
.theme-btn img          { width: 14px; }

/******* Header Section CSS Start *******/
header { padding: 16px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.navbar { padding: 12px 24px; border: 1px solid rgb(var(--primary-rgb), 0.2); background-color: #00000088; backdrop-filter: blur(20px); transition: all 0.5s; border-radius: 10em; }
.navbar-brand { width: 150px; }
.navbar .navbar-nav { gap: 2.25rem; text-transform: uppercase; }
.navbar .navbar-nav .nav-link { padding: 0; font-size: 12px; color: var(--primary-light-soft); letter-spacing: 0.2em; }
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active { color: var(--primary); }
header .nav-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 2em; background-color: var(--primary); padding: 0.75rem 1.75rem; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.025em; color: var(--secondary); }

/******* Header Section CSS End *********/


/******* Middle section CSS Start ******/
.common-section { padding: 120px 0; }

/* -------- Home Page ------- */
.home-banner { min-height: 100svh; background: no-repeat center center / cover; position: relative;}
.home-banner::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)); }
.home-banner .container-fluid { position: relative; z-index: 3; }
.home-banner .content { padding: 100px 12px; max-width: 520px; }
.home-banner .btn-list { margin-top: 40px; }
.home-banner .theme-btn:hover { transform: scale(1.05); }
.scroll-down { position: absolute; bottom: 16px; color: var(--primary-light-soft); z-index: 3; left: 50%; transform: translateX(-50%); }
.scroll-down img { width: 20px; height: 20px; animation: bounce 1s infinite; }

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}

.service-item img { width: 32px; }

.how-it-work .img-block { aspect-ratio: 3/2; width: 100%; }
.work-tabs .nav-link { padding: 16px 0; color: var(--primary-light-soft); border-bottom: 1px solid #ffffff14; text-align: left; }
.work-tabs .nav-link:first-child { border-top: 1px solid #ffffff14; }
.work-tabs .nav-link:hover { color: var(--white); }
.work-tabs .nav-link.active:hover,
.work-tabs .nav-link.active { color: var(--primary); }

.about-stat { border-bottom: 1px solid rgba(8, 8, 10, 0.2); }

.values-wrapper{ background: rgba(var(--secondary-rgb), 0.4); border-radius:40px; overflow:hidden; }
.value-card { padding:32px; min-height:100%; color: var(--light); border-right:1px solid rgba(193,160,101,1); }
.slick-active:nth-last-of-type .value-card { border: none; }
.value-icon { width: 28px; height: 28px; }
.slick-track { display: flex !important; }
.slick-slide { height: inherit !important; }

.small-banner { padding-top: 120px; }
.book-section .heading-block { width: 40%; flex-shrink: 0; background: rgb(var(--primary-rgb), 0.1); }
.book-section .heading-block { padding: 3rem; }
.book-section .heading-block .step-number { font-size: clamp(4.5rem, 10vw, 9rem); line-height: 0.95; font-weight: 400;; }
.book-section .heading-block .title span { color: var(--primary-light-soft); }
.book-timeline .timeline-item { display: flex; gap: 1rem; position: relative; padding-bottom: 1.75rem; }
.book-timeline .timeline-item::before { content: ""; position: absolute; left: 5px; top: 1.4rem; bottom: 0; width: 1px; background: rgba(203, 171, 120, 0.25); }
.book-timeline .timeline-item:last-child { padding-bottom: 0; }
.book-timeline .timeline-item:last-child::before { display: none; }
.rail-dot { flex-shrink: 0; width: 11px; height: 11px; margin-top: 0.3rem; border-radius: 50%; background: var(--primary); }

.book-section .form-block { width: 60%; flex-shrink: 0; }
.book-section .form-block { display: flex; flex-direction: column; padding: 1.5rem 1.75rem; height: 100dvh; min-height: 520px; overflow: auto; }
.form-header .step-indicator { padding-bottom: 16px; flex-grow: 1; border-bottom: 2px solid rgb(var(--primary-rgb), 0.2); }
.form-header .step-indicator.active { border-color: var(--primary); }
.form-header .step-number { width: 1.75rem; height: 1.75rem; border-radius: 50%; border: 2px solid rgba(203, 171, 120, 0.3); display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 0.75rem; font-weight: 600; transition: all 0.3s ease; }
.form-header .active .step-number { border-color: var(--primary); background-color: rgba(203, 171, 120, 0.15); color: var(--primary);}
.form-header .step-indicator { display: flex; align-items: center; gap: 0.5rem; }
.form-header .step-label { font-size: 0.75rem; font-weight: 400; }
.form-buttons { border-top: 1px solid rgba(203, 171, 120, 0.15);}
.form-btn { padding: 0.65rem 1.25rem; border-radius: 2em; border: 2px solid rgba(203, 171, 120, 0.3); background-color: transparent; color: var(--primary-light-soft); cursor: pointer; font-size: 0.8rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.form-btn img { width: 12px; height: 12px; object-fit: contain; filter: brightness(0) invert(1); }
.form-btn.primary { border-color: var(--primary); background-color: var(--primary); color: var(--secondary); }
.form-btn.primary img { filter: brightness(0); }
.form-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.form-content .form-section { display: none; }
.form-content .form-section.active { display: block; }
.form-section-help { font-size: 0.8rem; margin-top: 0.5rem; margin-bottom: 1rem; }
.radio-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.65rem 1rem; border: 2px solid var(--color-input-border); border-radius: 2em; transition: all 0.3s ease; user-select: none;  font-size: 0.9rem; }
.radio-label input[type="radio"] { appearance: none; width: 0.875rem; height: 0.875rem; border: 2px solid var(--primary); border-radius: 50%; cursor: pointer; background-color: transparent; transition: all 0.3s ease; }
.radio-label input[type="radio"]:checked { background-color: var(--primary); box-shadow: inset 0 0 0 2px var(--color-ink); }
.radio-label:has(input[type="radio"]:checked) { border-color: var(--primary); background-color: rgba(203, 171, 120, 0.08); }
.privacy-notice { background-color: rgba(203, 171, 120, 0.05); border: 1px solid rgba(203, 171, 120, 0.1); border-radius: 0.75rem; padding: 0.875rem 1rem; margin: 1rem 0; font-size: 0.75rem; color: var(--primary-light-soft); line-height: 1.4;  }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-input, 
.form-select { background-color: var(--color-input-bg); border: 1px solid var(--color-input-border); border-radius: 0.75rem; padding: 0.625rem 0.875rem; color: var(--color-cream); font-size: 0.9rem; transition: all 0.3s ease; height: 2.4rem; line-height: 1; }
.form-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.form-textarea { background-color: var(--color-input-bg); border: 1px solid var(--color-input-border); border-radius: 0.75rem; padding: 0.625rem 0.875rem; color: var(--color-cream); font-size: 0.9rem; transition: all 0.3s ease; min-height: 3.5rem; resize: none; }
.counter-group.disabled,
.form-select:disabled,
.form-textarea:disabled,
.form-input:disabled { background-color: rgba(var(--primary-rgb), 0.3); cursor: not-allowed;}
input { color-scheme: dark; }
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-size: 20px auto;
}
.input-error { width: 100%; margin-top: 0px; font-size: .875em; color: var(--bs-form-invalid-color); }
.passenger-counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.passenger-type { display: flex; flex-direction: column; gap: 0.5rem; }
.passenger-type-name { font-size: 0.8rem; color: var(--primary-light-soft); font-weight: 400; }
.passenger-type-subtitle { font-size: 0.75rem; color: var(--primary-light-soft); }
.counter-group { display: flex; align-items: center; gap: 0.75rem; background-color: var(--color-input-bg); border: 1px solid var(--color-input-border); border-radius: 0.75rem; padding: 0.5rem 0.75rem; width: fit-content; }
.counter-btn { width: 1.75rem; height: 1.75rem; border: none; background-color: rgba(203, 171, 120, 0.1); color: var(--color-champagne); border-radius: 0.5rem; cursor: pointer; font-size: 0.875rem; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.counter-btn:hover { background-color: rgba(203, 171, 120, 0.2); }
.counter-value { min-width: 2rem; text-align: center; color: var(--primary-light-soft); font-weight: 500; }

.accordion-item { border: 1px solid rgba(var(--primary-rgb), 0.2) !important; background: rgba(var(--primary-rgb), 0.05) !important; margin-bottom: 16px; border-radius: 16px !important; overflow: hidden; }
.accordion-button { padding: 24px 24px; font-size: 17px; line-height: 1.25; font-family: "Inter", sans-serif; background: transparent !important; color: var(--primary-light-soft) !important; box-shadow: none !important; }
.accordion-button:hover { background: rgba(var(--primary-rgb), 0.05) !important; }
.accordion-button::after { background-image: url(../images/down-chevron.svg) !important;}
.accordion-body { padding: 12px 24px 24px; color: var(--primary-light-soft); font-size: 15px; }
/******** Middle section CSS End *******/

/***** Footer section CSS Start *******/
.site-footer  { padding: 80px 0; border-top: 1px solid rgb(var(--primary-rgb), 0.2);}
.footer-logo  { width: 170px; }
.site-footer a:hover { color: var(--primary); }
.footer-bottom  { border-top: 1px solid rgb(var(--primary-rgb), 0.2);}
/* -------- conatct section ------- */
/****** Footer section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 1400px) {
    .container{
        max-width: 1170px;
    }
  .book-section .form-block { padding: 2rem 2.5rem; }

}
@media (max-width: 1200px) {
  .book-section .heading-block { width: 35%; }
  .book-section .form-block { width: 65%; } 
  .book-section .heading-block { padding: 2rem 1.5rem; }
}

@media (min-width: 992px) {
    .mt-lg-4-5 {
        margin-top: 2.5rem !important;
    }
    .mb-lg-4-5 {
        margin-bottom: 2.5rem !important;
    }
    .row-gap-lg-4-5 {
        row-gap: 2.5rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
  body 					{ font-size: 15px; }
  .h1,
  h1 						{ margin-bottom: 20px; font-size: 48px; }
  .h2,
  h2            { margin-bottom: 20px; font-size: 40px; }
  .h3,
  h3 						{ font-size: 28px; }
  .h4,
  h4 						{ font-size: 24px; }
  .h5,
  h5 						{ margin-bottom: 14px; font-size: 16px; }
  .h6,
  h6            { margin-bottom: 20px; }

  .theme-btn { padding: 10px 28px;}

/******* Middle section CSS Start ******/
  .common-section { padding: 80px 0; }

/* -------- Home Page ------- */
  .value-card { padding: 24px;}

/* -------- Book Page ------- */
  .small-banner { padding-top: 100px; }
  .book-timeline .timeline-item { gap: 1rem; padding-bottom: 1rem; }
  .accordion-button { padding: 20px 20px; font-size: 16px;}
  .accordion-body { padding: 10px 20px 20px;}

/***** Footer section CSS Start *******/
  .site-footer  { padding: 60px 0;}
}

@media (max-width: 991px) {
  header .nav-btn { margin-left: auto;}
  .navbar-toggler         { order: 3; border: none; width: 48px; height: 32px; background: url(../images/menu-icon.svg) no-repeat center center / cover; box-shadow: none !important; }
  .navbar-toggler-icon    { display: none; }
  .navbar-collapse        { padding: 20px 16px; border: 1px solid rgb(var(--primary-rgb), 0.2); position: absolute; top: 100%; width: 100%; left: 0; background-color: var(--secondary);  z-index: 10; border-radius: 16px; }
  .navbar .navbar-nav     { gap: 1rem; }

/* -------- Book Page ------- */
  .book-section .heading-block { width: 100%; }
  .book-section .form-block { width: 100%; height: auto; min-height: initial; } 
  .book-section .heading-block { padding: 1.5em 1.5rem; }
  .book-timeline .timeline-item { gap: 1rem; padding-bottom: 1rem; }
}

@media (min-width: 768px) and (max-width: 991px) {
  body 					{ font-size: 14px; }
  .h1,
  h1 						{ margin-bottom: 16px; font-size: 40px; }
  .h2,
  h2            { margin-bottom: 16px; font-size: 32px; }
  .h3,
  h3 						{ font-size: 24px; }
  .h4,
  h4 						{ font-size: 22px; }
  .h5,
  h5 						{ margin-bottom: 12px; font-size: 15px; }
  .h6,
  h6            { margin-bottom: 16px; }

  .theme-btn { padding: 10px 28px;}

/******* Middle section CSS Start ******/
  .common-section { padding: 60px 0; }

/* -------- Home Page ------- */
  .values-wrapper { border-radius: 24px;}
  .value-card { padding: 20px;}

/* -------- Book Page ------- */
  .small-banner { padding-top: 100px; }
  .accordion-item { margin-bottom: 12px; border-radius: 12px !important;}
  .accordion-button { padding: 16px 16px; font-size: 15px; }
  .accordion-body { padding: 6px 16px 16px; font-size: 14px; }

/***** Footer section CSS Start *******/
  .site-footer  { padding: 50px 0;}
	
}

@media (max-width: 767px) {
  body 					{ font-size: 14px; }
  .h1,
  h1 						{ margin-bottom: 14px; font-size: 32px; }
  .h2,
  h2            { margin-bottom: 14px; font-size: 28px; }
  .h3,
  h3 						{ font-size: 22px; }
  .h4,
  h4 						{ font-size: 20px; }
  .h5,
  h5 						{ margin-bottom: 12px; font-size: 15px; }
  .h6,
  h6            { margin-bottom: 14px; }
  .small-text { font-size: 13px; }

  .theme-btn { padding: 8px 20px;}

  .navbar { padding: 8px 16px; }
  .navbar-brand { width: 110px; }
  header .nav-btn { padding: 0.5rem 1rem;}

/******* Middle section CSS Start ******/
  .common-section { padding: 40px 0; }

/* -------- Home Page ------- */
  .home-banner .content { padding: 100px 0px;}
  .home-banner .btn-list { margin-top: 24px; }
  .values-wrapper { border-radius: 20px;}
  .value-card { padding: 16px; width: 240px; }
  .work-tabs { justify-content: space-around; border-bottom: 1px solid rgb(var(--primary-rgb), 0.2); }
  .work-tabs .nav-link { padding: 8px 4px; border-bottom-color: transparent; }
  .work-tabs .nav-link:first-child { border-top: none; }
  .work-tabs .nav-link.active { border-color: var(--primary);}

/* -------- Book Page ------- */
  .small-banner { padding-top: 80px; }
  .book-section .form-block { padding: 1.25rem 1rem;}
  .form-btn { padding: 0.5rem 1rem; gap: 0.25rem;}
  .form-btn img { width: 10px; height: 10px;}
  .accordion-item { margin-bottom: 12px; border-radius: 12px !important;}
  .accordion-button { padding: 12px 16px; font-size: 14px; line-height: 1.4; }
  .accordion-body { padding: 4px 16px 12px; font-size: 13px; }
  .accordion-button::after { width: 16px; height: 16px; background-size: 16px auto; }
  
/***** Footer section CSS Start *******/
  .site-footer  { padding: 32px 0;}
	
}